/* 
    Created on : 26 Dec, 2020, 11:48:47 AM
    Author     : Lithos
*/


@import url(https://fonts.googleapis.com/css?family=poppins:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://use.fontawesome.com/releases/v5.8.1/css/all.css);

body {
    font-size: 15px !important;
    text-decoration: none;
    color:#585a5e !important;
    line-height: 1.8 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    overflow-x:hidden;
    background: #fff;
    font-weight: lighter;
}
h1,h2,h3,h4,h5{
    font-family: 'poppins', sans-serif;
    color: #666 !important;
    margin: 0;
}
ol, ul, li {
	list-style:none;
}
.img img{
    width: 100%;
}
.clear{
    clear: both;
}
:focus {
	outline: none;
}
a:focus {
	text-decoration:none !Important;
}
a{
    text-decoration: none !Important;
}
a:hover{
    text-decoration: none !Important;
}
.no-padding{
    padding: 0 !important;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

::selection {
	background: #00383e;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	 background:#00383e;
	 color:#fff;
	 text-shadow:none;
}

::-webkit-scrollbar {
    width: 9px;
    background: #d2d2d2;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow:inset 39px 46px 41px #00383e;
}
::-moz-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow:inset 39px 46px 41px #00383e;
}

/* Styles for the social icons */

i {
  color: white;
  transition: color .15s ease-in-out;
  -moz-transition: color .15s ease-in-out;
  -webkit-transition: color .15s ease-in-out;
}

i:hover {
  color: #09f;
}

/* Nav styles and animations */

nav a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s ease-in-out;
  -moz-transition: color .15s ease-in-out;
  -webkit-transition: color .15s ease-in-out;
}

nav a:hover {
  color: #bbb;
}


/* 
These are for div positioning
*/

header {
  width: 100%;
  height: 100px;
  position: fixed;
  padding-top: 25px;
  z-index: 1000000;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header img{
    width: 100%;
    -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

header.smaller {
    height: 70px;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    padding-top: 5px;
}

header.smaller h1#logo {
  font-size: 20px;
  margin-top: 5px;
  color: #fff;
}
header.smaller img{
    width: 70%;
}
header.smaller .navbar-nav {
    float: right;
    margin: 5px 0 0 0;
}
header.smaller .navbar-brand{
    padding: 0 15px;   
}
header.smaller nav {
  margin-top: 5px;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.smaller .logo{
    margin-top: -12px;
    text-align: center;
}
.no-padding{
    padding: 0 !important;
}
.animenu__btn {
  display: none;
  cursor: pointer;
  background-color: #111;
  border: 0;
  padding: 10px;
  height: 40px;
  width: 40px;
}
.animenu__btn:hover {
  background-color: #0186ba;
}
.top-nav .container{
    position:relative;
}
.logo{
    width: calc(100% - 30px);
    margin: auto;
    margin-top: -50px;
    text-align: center;
    position:absolute !important;
    text-align:center;
    z-index:100;
}
.logo img{
    width:160px;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #333;
  height: 100px;
  padding: 1em;
  position:relative;
  z-index:1000;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
      position: relative;
   z-index: 10000;
    margin-top: 0px;
    font-weight: 600;
}

.menu > li {
  margin: 0 1rem;
      text-transform: uppercase;
      cursor:pointer;
}
.menu > li a{
    color:#333;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #666;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(0, 0, 0, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 991px) {
  .menu-button-container {
    display: flex;
  }
  .logo{
      z-index: 100000;
  }
  .menu-button-container{
          z-index: 1000000;
  }
.logo img {
    width: 140px;
}
  .menu {
    position: absolute;
    top: 0;
    margin-top: 100px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked ~ .menu li {
    border: 1px solid #fff;
    height: auto;
    padding: 30px 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle ~ .menu li:first-child{
      padding-top: 0px !important;
  }
.menu > li a{
    color:#fff !important;
}
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #573357;
  }

  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}
.banner{
    padding: 0px 30px 30px 30px;
}
.banner-bg{
    background: transparent none scroll no-repeat center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    display: table;
    z-index: 100;
}
.banner-bg img{
    height: 100%;
    width: 100%;
}
.banner-cap{
    width: 100%;
    height: auto;
    overflow: hidden;
    display: table;
    z-index: 10001;
    background: transparent;
    position: absolute;
    top: 40%;
    margin-left: 7%;
}
.banner-cap h2{
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
}
.banner-cap p{
    color: #fff !important;
    font-size: 20px;
}
.btn{
    padding: 12px 20px !important;
    border-radius: 50px;
}
.btn-outline-primary{
    color: #fff;
    border: solid 2px #fff;
}
.btn-outline-primary:hover{
    color: #fff;
    border: solid 2px #00afaf;
    background: #00afaf;
}
.btn-outline-primary:focus{
    box-shadow: none;
    outline: none;
}
.phoenix-slider {
  overflow: hidden;
  width: 100%;
  height: 630px;
  position: relative;
  background: #f5f5f5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

.phoenix-slider .phoenix-feather {
  background: transparent none scroll no-repeat center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  display: table;
  z-index: 2;
  opacity: 0;
}

.phoenix-slider .reborn { z-index: 4; }

.phoenix-slider .phoenix-feather > img {
  position: absolute;
  width: calc(100% - 50px) !important;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  display: none;
}
/* Slider Dots */

.container-dots-wrapper {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  z-index: 100000;
}

.container-dots-inner {
  display: table;
  height: 100%;
}

.dots {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dots li {
  width: 10px;
  height: 10px;
  margin: 0 4px 7px 4px;
  text-indent: -999em;
  border: 2px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  opacity: .5;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
  -moz-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
  -ms-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
  -o-filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
}
.fab {
    color: #000;
}
.dots li.active {
  width: 11px;
  height: 11px;
  background: #fff;
  border: 2px solid #008888;
  left: 8px;
  opacity: 1;
}
.wd-100{width:100% !important;}
.category-col{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 30px 30px;
    position: relative;
    margin-top: -100px;
    -webkit-box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.22); 
    box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.22);
    z-index: 100;
}
.padding-1{
    padding-bottom: 150px;
}
.gradient-col{
    width: 100%;
    float: left;
    text-align: center; 
    background: #573357; /* Old browsers */    
    color: #fff !important;
    padding-bottom: 80px;
}
.gradient-col h1{
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    color: #fff !important;
    margin-top: 80px;
    line-height: 1.1em;
    margin-bottom: 10px;
}
.gradient-col p{
    font-size: 20px;
    margin-bottom: 50px;
    padding: 0 30%;
    line-height: 1.2em;
}
.country-tab{
    background: #005959;
    color: #fff;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 18px;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.country-tab:hover{
    background: #00afaf;
}
.halal-col{
    position: relative;
    margin-top: -100px;
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.22); 
    box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.22);
    z-index: 100000;
    padding: 30px;
    text-align: left;
}
.halal-col a{
    color: #666;
}
.halal-col h4{
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 300;
}
.looking{
    display: flex;
    align-items: center;
}
.looking h2{
    font-weight: 300;
    margin-top: 15px;
    font-size: 30px;
}
.halal-col .whatsapp{
    width: fit-content;
    background: #4ccb5a;
    color: #fff;
    border-radius: 50px;
    padding: 20px 30px;
    float: left;
    margin-right: 15px;
    font-size: 18px;
    font-weight: 600;
}
.halal-col .whatsapp img{
    position: relative;
    margin-top: -5px;
    margin-right: 10px;
}
.social{
    margin: auto;
    width: auto;
    text-align: center;
    margin-top: 30px;
}
.social a{
    margin: 0 15px;
}
.social .fab{
    font-size: 30px;
}
.halal-col .call{
    width: 67px;
    height: 67px;
    background: #4ccb5a;
    color: #fff;
    border-radius: 50px;
    padding: 10px 0px;
    text-align: center;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
    margin-right: 15px;
}
.halal-col .whatsapp .fab{
    font-size: 25px;
    margin-right: 5px;
    margin-top: 5px;
}
.phone-num{
    font-size: 25px;
    font-weight: 800;
}
.halal h2{
    font-weight: 300;
    margin-top: 40px;
    font-size: 30px;
}
.image img{
    width: 100%;
}
.pro-col{
    background: #f6f9f8;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
}
/* Tabs */
.product-col{
    position: relative;
}
.product-col h2{
    margin: 0 !important;
}
.product{
    padding: 0 !important;
}
product-col nav {
  z-index: 9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

.bg-color {
  background-color: #46a1de;
  transition-duration: .5s;
}

.text-color {
  color: #46a1de;
  transition-duration: .5s;
}



.tabs {
  display: table;
  table-layout: fixed;
    margin: auto;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  padding: 0;
}
.tabs > li {
  transition-duration: .10s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 20px 20px 10px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #666;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
}
.tabs > li:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-duration: .10s;
  border-radius: 5px 5px 0 0;
}
.tabs > li:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}
.tabs > li.active {
  color: #de2f00;
border-bottom: solid 10px #de2f00;
padding-bottom: 0;
}
.tabs > li.active:before {
  transition-duration: .10s;
  background-color: transparent;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab_content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.tab_content > li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}
.tab_content > li .content_wrapper {
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 45px 40px 0px 40px;
  background-color: white;
}

.content_wrapper h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 300;
}
.product img {
  width: 100%;
  height: auto;
}
.pad-30{
   padding: 30px 0 !important;
}
.product-col h1{
    margin: 15px 0;
    font-weight: 600;
    font-size: 30px;
}
.tab-pane .pro-col{
    border-radius: 15px;
    box-shadow: 0 0 5px #ddd;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.product h2{
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 30px 0;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
    text-align: center;
}
.flex-col{
    display: flex;
    align-items: center;
}
.contact-banner{
   padding-top: 150px;
}


.cart-col{
    width: 100%;
    float: left;
    background: url(../images/cart-bg.jpg) no-repeat fixed center top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 90px 0 !important;
    text-align: center;
}
.cart-col h2{
    margin: 0px 0 60px 0;
    color: #fff !important;
}
.cart-col h3{
    font-size: 18px ;
    color: #fff !important;
    margin: 15px 0;
    font-weight: 600;
}
.cart-col p{
    color: #fff;
}
footer{
    padding: 70px 0 50px 0 !important;
    background: #fff;
    color: #666;
    width: 100%;
    float: left;
}
footer .far{
    color: #666;
    margin-right: 10px;
}
footer .fas{
    color: #666;
    margin-right: 10px;
}
footer h5{
    margin-bottom: 15px;
}
footer span{
    float: right;
}
footer p{
    margin-bottom: 15px;
}
footer img{
    
}
.copy-right{
    padding: 20px 0;
    text-align: center;
    width: 100%;
    float: left;
}
.animenu__nav span{
    display: none;
}
.inner-banner{
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
}
.inner-banner img{
    width: 100%;
}
.inner-banner .cap-col{
    margin: 0;
    position: absolute;
    top: 68%;
    left: 60px;
    margin-right: 0%;
    width: 100%;
    transform: translate(0%, -64%);    
}
.inner-banner .cap-col h2{
    color: #fff !important;
}
.abt{
    margin-top: 50px;
}
.abt-col{
    padding: 0 10%;
}
.abt-col h1{
    font-size: 35px;
    color: #008888 !important;
    margin-bottom: 40px;
    font-weight: 300;
}
.abt-col h4{
    margin-bottom: 20px;
}
.abt-col p{
    margin-bottom: 20px;
}

.content-col2{
    padding: 80px 0;
}
.product{
    padding: 80px 0;
}


.testim {
    width: 100%;
    margin: 50px 0;
}

.testim .wrap {
    position: relative;
    width: 100%;
    padding: 0px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: #ea830e;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
		position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}
.testim .cont p{
    padding: 0 15%;;
}
.testim h1{
    margin-bottom: 30px;
    font-size: 30px;
}
.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #fff !important;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 100%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

}





.product .tabss {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  float: left;
  width: 15%;
  color:#fff;
}

.product .tabss li {
  display: block;
  float: none;
}

.product .tabss li a {
  text-decoration: none;
  padding: 6px 15px;
  display: inline-block;
  color:#666;
  background: #fff;
    margin: 2px 0 0 0;
      width: 90%;
      border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
-webkit-border-radius: 10px 0px 0px 10px;
}


.product .tabss li a:hover {
  color: #333;

}

.product .tabss li.active a { 
    width: 90%;
    font-weight: 600;
    color: #333;
    border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
-webkit-border-radius: 10px 0px 0px 10px;
border: 0px solid #000000;
}

.product .tab-content {
  float: left;
      width: 85%;
  background-color: #fff;
}

.product .tab-pane {
  padding: 0px 0px 80px 50px;
  display: none;
}

.product .tab-pane.active { display: block; }

.product .fade.in { opacity: 1; }

.product .fade {
  opacity: 0;
  transition: opacity 0.15s linear 0s;
}

.product .toggle-tab-menu {
  background: url("../images/open-menu.svg") no-repeat scroll 10px center #de2f00;
  background-size: 35px 19px, cover;
  color: #FFFFFF;
  margin: 0;
  padding: 10px 0 10px 45px;
  text-align: left;
  display: none;
  border-radius: 10px;
  cursor: pointer;
}
h4.toggle-tab-menu{
    color: #fff !important;
}
#responsiveTab ul li::before{
    content: "⚏";
    color: #048891;
}
.form-control {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0px 0 20px 0;
    border: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.contact{
    margin: 100px 0;
    font-size: 20px;
}
.contact img{
    margin-bottom: 30px;
}











@media screen and (max-width: 1280px) {
    
}
@media screen and (max-width: 1024px) {
    
}
@media screen and (max-width: 991px) {
    .product .tabss {
        width: 100%;
    }
    .product .tab-content {
        width: 100%;
    }
    .l-header .container{
        padding-right: 0px;
        padding-left: 0px;
    }
}
@media screen and (max-width: 768px) {
    .animenu__nav span{
        display: block;
    }
    .animenu__nav > li{
        float: right;
    }
    .phoenix-slider .phoenix-feather{
        width: calc(100% - 0px);
    }
    .animenu__btn{
        float: right;
    }
    .banner-cap{
        display: none;
    }
    .banner-bg{
        display: none;
    }
    .category-col{
        margin-top: 0;
    }
    .phoenix-slider .phoenix-feather{
        min-height: 270px;
        height: auto;
    }
    .phoenix-slider{
        height: 270px !important;
        margin-top: 0px;
    }
    .banner{
        padding: 0;
    }
    .category .container{
        padding-left: 0;
        padding-right: 0;
    }
    .category-col{
        padding: 30px 10px;
        border-radius: 0px;
    }
    .animenu{
        width: 100%;
        float: none;
        position: absolute;
        right: 0px;
    }
    .animenu__btn{
        margin-right: 30px;
    }
    .animenu__nav > li{
        background: #fff;
    }
}
@media screen and (max-width: 600px) {
    .horse img{
        width: 50%;
    }
    .halal-img img{
        width: 50%;
    }
    .halal-img{
        text-align: center;
        margin-top: 20px;
    }
    .halal h2{
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin-top: 15px;
    }
    .halal-col h4{
        font-size: 14px;
    }
    .phone-num{
        line-height: 2.4em;
    }
    .padding-1 {
        padding-bottom: 115px;
    }
    .horse{
        text-align: center;
    }
    .looking h2{
        text-align: center;
        font-size: 20px;
        font-weight: 500;
    }
    .looking a{
        width: 100%;
    }
    .halal-col h4{
        text-align: center;
    }
    .halal-col .whatsapp{
        margin-bottom: 15px;
    }
    .gradient-col h1{
        font-size: 24px;
    }
    .gradient-col p{
        padding: 0 5%;
        font-size: 16px;
    }
    .country-tab{
        line-height: 3.3em;
        -webkit-border-bottom-left-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        -moz-border-radius-bottomleft: 10px;
        -moz-border-radius-bottomright: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 10px 25px;
    }
    .tabs > li{
        padding: 20px 10px 10px 10px;
        font-size: 16px;
    }
    .product .col-md-6{
        width: 50%;
    }
    .tab_content > li .content_wrapper{
        padding: 45px 15px 0px 15px;
    }
    .product-col{
        overflow-y: scroll;
    }
    .product-col::-webkit-scrollbar {
    width: 0px;
    background: #d2d2d2;
    }
    .product-col::-webkit-scrollbar-thumb {
        border-radius: 0px;
        -webkit-box-shadow:inset 39px 46px 41px #00383e;
    }
    .product-col::-moz-scrollbar-thumb {
        border-radius: 0px;
        -webkit-box-shadow:inset 39px 46px 41px #00383e;
    }
    .gradient-col{
        padding-bottom: 20px;
    }
    .cart-col h2{
        font-size: 22px;
        padding: 0 10%;
        font-weight:600;
    }
    .contact-banner {
        padding-top: 30px;
    }
    .mn-b-30{
        margin-bottom:30px !important;
    }
    .cart-col{
        padding: 30px 0 !important;
    }
    .right-choice img{
        height: 60px;
    }
    .cart-col h3{
        font-size: 16px;
    }
    .content-col2{
        padding: 30px 0;
    }
    h1{
        margin: 15px 0;
    }
    footer{
        padding: 40px 15px 30px 15px !important;
    }
    footer img{
        display: none;
    }
    .logo {
        width: calc(100% - 20px);
    }
    .dots{
        display:none;
    }
    .banner .row{
        width: calc(100% + 12px);
    }
}
@media screen and (max-width: 480px) {
    
    
}
@media screen and (max-width: 414px) {
    
}
@media screen and (max-width: 320px) {
    
}























