/* 
theme name  :Food Fly
theme coder :Ahmed Mostafa
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
ul{
  margin: 0;
}
.bx{
  vertical-align: text-top;
}

  /* fonts: */
  /*
  font-family: 'Rubik', sans-serif;
  font-family: 'Karla', sans-serif;
  font-family: 'Amita', cursive;
 */


       /* ***************************************start home page**************************************** */



                                                   /* start header */
header{
  background-color: rgba(255, 247, 235, 1);
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  padding: 17px;
}
header .topbar{
  display: flex;
  justify-content: center;
}
header .topbar .topbar-left{
  display:flex ;
  justify-content: flex-start;
  width: 50%;
  color: rgba(69, 69, 69, 1);
}
header .topbar .topbar-right{
  display:flex ;
  justify-content: flex-end;
  width: 50%;
  color: rgba(58, 58, 58, 1);
}

header .topbar ul {
  margin: 0;  
}
header .topbar ul li{
  display: inline-block;
}
header .topbar ul li i{
  margin-right: 7px;
  font-size: 16px;
}
header .topbar .topbar-left ul li:first-child{
  margin-right: 42px;
}
header .topbar .topbar-right ul li:first-child::after{
  content: "|";
  margin: 0 21px;
}
@media (max-width: 576px) { 
  header{
    padding: 10px 0px;
  }
  header .topbar .topbar-right{
    margin-left: 7px;
  }
  header .topbar .topbar-left ul li:first-child{
    margin-right: 0;
  }
  header .topbar .topbar-right ul li:first-child::after{
    display: none;
  }
}


                                                  /* start header */

                                                  /* start navbar */

.navbar{
  background-color: rgba(255, 253, 242, 1);
  padding: 0;
  height: 99px;
}
.navbar-white{
  background-color: #fff;
}

.navbar .header-inner{
  width: 100%;
}
.navbar nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav .site-logo img{
  max-width: 80%;
}
.navbar nav .main-nav{
  display: flex;
  justify-content: end;
  align-items: center;
}

.navbar nav .main-nav-menu{
  display: flex;
  align-items: center;
}
.navbar nav .main-nav-menu ul{
  margin: 0;
}
.navbar nav .main-nav-menu ul li{
  position: relative;
}
.navbar nav .main-nav-menu ul a{
  text-decoration: none;
  color: rgba(112, 112, 112, 1);
  transition: all 0.2s ease-in-out;
  font-size: 18px;
  font-weight: 400;
}
.navbar nav .main-nav-menu ul li a:hover{
  color: rgba(232, 0, 0, 1);
}
.navbar nav .main-nav-menu>ul>li{
  display: inline-block;
  margin-right: 35px;
  padding: 36px 0;
  font-family: 'Karla', sans-serif;
}
.navbar nav .main-nav-menu ul li i{
  font-size: 25px;
}

.navbar nav .main-nav-menu ul li ul.drop-list{
  padding: 15px 0;
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: all 0.3s ease-in;
  border-radius: 0.25rem;
  min-width: 220px;
  box-shadow: 0 5px 10px #14303a15;
  z-index: 2222;
  /* display: block !important; */
}
.navbar nav .main-nav-menu ul li  ul.drop-list li{
  /* display: block;
  position: relative;
  margin-right: 0;*/
  line-height: 36px; 
}
.navbar nav .main-nav-menu ul li  ul.drop-list li a{
  text-decoration: none;
  font-size: 16px;
  padding: 5px 20px;
  /* display: block; */
  line-height: 1.4;
  color: #464A56;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar nav .main-nav-menu ul li  ul.drop-list li a:hover{
  color: rgba(232, 0, 0, 1);
}

.navbar nav .main-nav-menu ul li:hover ul.drop-list{
  opacity: 1;
  top: 90%;
  visibility: visible;
}

.navbar nav .main-nav .burger-icon{
  width: 20px;
  height: 14px;
  cursor: pointer;
  position: relative;
  display: none;
}
.navbar nav .main-nav .burger-icon span {
  background-color: black;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  transition: all 0.5s ease;
}
/* .navbar nav .main-nav .burger-icon span:nth-child(2) {
  width: 75%;
} */
.navbar nav .main-nav .burger-iconspan:first-child {
  top: 0;
}

 .navbar nav .main-nav .burger-icon span:nth-child(2) {
  top: 6px;
}
.navbar nav .main-nav .burger-icon span:last-child {
  top: 12px;
}
/* .navbar nav .main-nav .burger-icon:hover span:nth-child(2) {
  width: 100%;
} */

/*.navbar nav .main-nav .burger-icon:hover span:nth-child(2) {
  opacity: 0;
}
.navbar nav .main-nav .burger-icon:hover span:first-child,
.navbar nav .main-nav .burger-icon:hover span:last-child {
  top: 6px;
  background-color: red;
}
.navbar nav .main-nav .burger-icon:hover span:first-child {
  transform: rotate(45deg);
}
.navbar nav .main-nav .burger-icon:hover span:last-child {
  transform: rotate(-45deg);
} */

.navbar nav .main-nav .cart-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.navbar nav .main-nav .cart-icons ul li{
  display: inline-block;
}
.navbar nav .main-nav .cart-icons ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(5, 120, 5, 1);
  color: rgba(255, 255, 255, 1);
  position: relative;
}
.navbar nav .main-nav .cart-icons ul li:first-child{
  margin: 0 10px 0 6px;
}
.navbar nav .main-nav .cart-icons ul li i{
  line-height: 38px;
}
.navbar nav .main-nav .cart-icons ul li a span{
  position: absolute;
  right: -9px;
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 11px;
  background-color: rgba(232, 0, 0, 1);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.navbar .side-nav{
  position: fixed;
  top: 0;
  left: -400px;
  height: 100vh;
  background: #fff;
  max-width: 330px;
  width: 100%;
  text-align: left;
  overflow-y: auto;
  padding-bottom: 50px;
  transition: all linear;
  z-index: 999;             
}

.navbar .side-nav .side-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}                                       
.navbar .side-nav .side-nav-header .close-menu{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  color: #051441;
  font-size: 30px;
  cursor: pointer;
  background: rgba(136, 136, 136, 0.04);
  transition: all 0.3s ease-in-out;
}
.navbar .side-nav .side-nav-header .close-menu i{
  vertical-align: baseline;
}
.navbar .side-nav .side-nav-header .close-menu:hover{
  background: rgba(136, 136, 136, 0.1);
}
.navbar .side-nav .side-nav-menu ul{
  margin: 20px 0 0 0;
}
.navbar .side-nav .side-nav-menu ul a{
  text-decoration: none;
  color: rgb(48, 48, 48);
  transition: all 0.2s ease-in-out;
}
.navbar .side-nav .side-nav-menu ul a:hover{
  color: rgba(232, 0, 0, 1);
}
.navbar .side-nav .side-nav-menu ul a:hover li{
  background-color: rgba(136, 136, 136, 0.1);
}
.navbar .side-nav .side-nav-menu ul li{
  padding: 9px 13px;
  font-weight: 500;
  font-family: 'Karla', sans-serif;
  line-height: 1.2;
  transition: all 0.2s ease-in-out;

}

@media (max-width: 992px) { 
  .navbar nav .main-nav-menu{
    display: none;
  }
  .navbar nav .main-nav .burger-icon{
    display: block;
  }
}
@media (max-width: 576px) { 
  .navbar nav .site-logo img{
    max-width: 100%;
  }
}

                                                  /* end navbar */

                                                  /* start elmentor */
main{
  background-image: url(imgs/Group-1227-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
}         

main .mentor-main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: 240px 0 280px 0;
}

main .mentor-main h2{
  color: #FFF;
  font-family: "Rubik", Sans-serif;
  font-size: 80px;
  font-weight: bolder;
  line-height: 86px;
}

main .mentor-main p{
  color: #FFF;
  font-family: "Karla", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  padding: 40px 0 40px 0;
}

main .mentor-main .btn{
  border-radius: 30px;
  height: 55px;
  width: 185px;
  border: 2px solid rgba(232, 0, 0, 1);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
main .mentor-main .btn:first-of-type{
  background-color: rgba(232, 0, 0, 1);
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.3);
}
main .mentor-main .btn:last-of-type{
  background-color: transparent;
  margin-left: 15px;
}

main .mentor-main .btn:first-of-type:hover{
  background-color: transparent;
  box-shadow: none;
}
main .mentor-main .btn:first-of-type:hover a{
  color: rgba(232, 0, 0, 1);
}
main .mentor-main .btn:last-of-type:hover{
  background-color: rgba(232, 0, 0, 1); 
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.25);
}
main .mentor-main .btn:last-of-type:hover a{
  color: #fff;
}

main .mentor-main .btn a{
  font-size: 18px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
}
main .mentor-main .btn:first-of-type a{
  color: #fff;
}
main .mentor-main .btn:last-of-type a{
  color: rgba(232, 0, 0, 1);
}
@media (max-width: 992px) { 

  main .container{
    padding: 0;
  }
  main .mentor-main{
    width: 100%;
    padding: 90px 0 90px 0;
  }
  main .mentor-main h2{
    font-size: 45px;
    font-weight: bolder;
    line-height: 50px;
  }
  main .mentor-main p{
    padding: 25px 0 25px 0;
    width: 95%;
  }
  main .mentor-main .btn{
    margin-top: 15px;
  }
}

                                                  /* end elmentor */

                                                  /* start feature */
.feature {
  padding-bottom: 115px;
}                                                 
.feature .icons{
  padding: 65px 0;
}
.feature .icons .box{
  padding: 35px 0 15px 0;
  text-align: center;
}

.feature .icons .box h3{
  font-size: 28px;
  color: rgba(41, 5, 5, 1);
  font-weight: bold;
  font-family: "Rubik", sans-serif;
  line-height: 38px;
  margin: 25px 0 15px 0;
}                                                  
.feature .icons .box p{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  line-height: 26px;
  margin: 0 auto;
  width: 80%;
} 

.feature .menu .img-col{
  background-image: url(imgs/graphic-element-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 730px;
  position: relative;
  padding-bottom: 60px;
}
.feature .menu .img-col .large{
  width: 470px;
  height: 730px;
  position: absolute;
  top: 0px;
  right: 120px;
  margin-left: auto;
  z-index: 1;
}
.feature .menu .img-col .small{
  width: 343px;
  height: 387px;
  position: absolute;
  right: 0px;
  bottom: 60px;
  z-index: 2;
} 

.feature .menu .text-col{
  padding: 0 15px 0 60px;
  text-align: left;
  margin: auto 0 ;
}
.feature .menu .text-col h3{
  color: #290505;
  font-size: 18px;
  display: block;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  color: rgba(232, 0, 0, 1) ;
}
.feature .menu .text-col h2{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin: 15px 0 15px 0;
  display: block;
  color: rgba(58, 58, 58, 1);
}
.feature .menu .text-col p{
  color:  rgba(58, 58, 58, 1);
  font-size: 16px;
  font-weight: 400;
}
.feature .menu .text-col p.disc1{
  margin-bottom: 20px;
}
.feature .menu .text-col p.disc2{
  margin-bottom: 50px;
}

.feature .menu .text-col .btn{
  border-radius: 30px;
  height: 55px;
  width: 185px;
  border: 2px solid rgba(232, 0, 0, 1);
  background-color: rgba(232, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.15);
  transition: all 0.3s ease-in-out;
}
.feature .menu .text-col .btn a{
  font-size: 18px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
  color: #fff;
}
.feature .menu .text-col .btn:hover{
  background-color: transparent;
  box-shadow: none;
}
.feature .menu .text-col .btn:hover a{
  color: rgba(232, 0, 0, 1);
}
@media (max-width: 1200px) { 
  .feature .menu .img-col .large{
    right: 15px;
  }
 }

@media (max-width: 576px) { 
  .feature{
    padding-bottom: 0px;
  }
  .feature .icons{
    padding-top: 30px;
  }
  .feature .menu .text-col{
    padding-left: 30px;
  }
  .feature .menu .img-col .large{
    right: 12px;
    padding-bottom: 30px;
    max-width: 94%;
    max-height: 94%;
  }
  .feature .menu .img-col .small{
    display:  none;
    }
}

                                                  /* end feature */

                                                  /* start tabes */
.tabes{
  background-image: url(imgs/bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 190px 0;
}    
.no-backg{
  background-image: none;
  padding: 90px 0 0 0;
}
                                           
.tabes .heading{
  text-align: center;
  padding-bottom: 40px;
}
.tabes .heading h3{
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.no-backg .heading h3{
  color: rgb(232,0,0);
}
.tabes .heading h2{
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
}
.no-backg .heading h2{
  color: rgba(41, 5, 5, 1);
}

.tabes ul.btn-list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.tabes ul.btn-list li{
  display: inline-block;
  width: 160px;
  height: 50px;
  text-align: center;
  background-color: transparent;
  border: 1px dotted #fff;
  line-height: 45px;
  transform: skew(-20deg);
  margin: 0 10px 20px;
  cursor: pointer;
  user-select: none;
  transition: all 400ms ease-in-out;
}
.no-backg ul.btn-list li{
  border-color: rgb(232,0,0);
}

.tabes ul.btn-list li a{
  text-decoration: none;
  color: #fff;
  font-family: "Karla", Sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.no-backg ul.btn-list li a{
  color: rgb(232,0,0);
}
.tabes ul.btn-list li.active,.tabes ul.btn-list li:hover {
  background-color: rgba(232, 0, 0, 1);
  border-color:  rgba(232, 0, 0, 1);
  box-shadow: 0 35px 60px rgba(232, 0, 0, 0.25) ;
}
.no-backg ul.btn-list li.active a,.no-backg ul.btn-list li:hover a{
  color: #fff;
}

.tabes .cards .row{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  min-height: 480px;
}
.tabes .cards .box{
  transition: all  ease-in-out;  
}
.tabes .cards .card-body,.related-post .card-body{
  background-color: #fff;
  border-radius: 20px;
  padding: 33px 0 20px 0px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.tabes .cards .card-body:hover,.related-post .card-body:hover{
  box-shadow: 30px 30px 80px rgba(41, 5, 5, 0.25);
}
.tabes .cards .card-body>a img,.related-post .card-body>a img{
  height: 170px;
  width: 170px;
  transition: all 300ms ease-in-out;
}

/* .tabes .cards .card-body img:hover{
  box-shadow: 15px 20px 60px rgba(51, 29, 0, 0.2);
} */
.tabes .cards .card-body .card-content,.related-post .card-body .card-content{
  padding: 0 20px;
  margin-top: 20px;
}
.tabes .cards .card-body .card-content a,.related-post .card-body .card-content a{
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: rgba(41, 5, 5, 1);
  transition: all 300ms ease-in-out;
}
.tabes .cards .card-body .card-content a:hover,.related-post .card-body .card-content a:hover{
  color: rgba(232, 0, 0, 1);
}

.tabes .cards .card-body .card-content ul.stars{
  margin-top: 12px;
  margin-bottom: 15px;
}
.tabes .cards .card-body .card-content ul.stars li,.meal .box ul li ul.stars li{
  display: inline-block;
}
.tabes .cards .card-body .card-content ul.stars li i, .meal .box ul li ul.stars  li i{
  color: rgba(0, 0, 0, 0.16);
  vertical-align: middle;
}
.tabes .cards .card-body .card-content ul.stars li i.checked,.meal .box ul li ul.stars li i.checked{
  color: #FBAD41;
}
.tabes .cards .card-body .card-content ul.stars li span{
  color: rgba(58, 58, 58, 1);
  vertical-align: middle;
}

.tabes .cards .card-body .card-content ul.price li,.related-post .card-body .card-content ul.price li{
  margin-bottom: 13px;
}
.tabes .cards .card-body .card-content ul.price li p.title{
  color: rgba(58, 58, 58, 1);
  font-size: 15px;
  font-family: "Karla", Sans-serif;
  width: 80%;
  margin: 0 auto;
}
.tabes .cards .card-body .card-content ul.price li del,
.related-post .card-body .card-content ul.price li del
{
  font-size: 15px;
  color: rgba(58, 58, 58, 1);
  font-family: "Karla", Sans-serif;
  font-weight: 500;
}
.tabes .cards .card-body .card-content ul.price li p.disc,
.related-post .card-body .card-content ul.price li p.disc
{
  font-size: 22px;
  color: rgba(232, 0, 0, 1);
  font-weight: bolder;
  margin: 0 0 0 5px;
  display: inline-block;
  font-family: "Rubik", sans-serif;
}

.tabes .cards .card-body .card-content ul.price li .btn{
  border-radius: 30px;
  height: 50px;
  width: 155px;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid rgba(5, 120, 5, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.tabes .cards .card-body .card-content ul.price li .btn a{
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
  color: rgba(5, 120, 5, 1);
  font-weight: 200;
  font-size: 18px;
  font-family: "Karla", Sans-serif;
}
.tabes .cards .card-body .card-content ul.price li .btn:hover{
  background-color: rgba(5, 120, 5, 1);
  box-shadow: 0 40px 60px rgba(5, 120, 5, 0.15);
}
.tabes .cards .card-body .card-content ul.price li .btn:hover a{
  color: #fff;
}
.tabes .cards .card-body .card-content ul.price li .btn a>i{
  font-size: 20px;
}

@media (max-width: 576px) { 
  .tabes{
    padding: 180px 0 70px 0;
  }
  .tabes .cards .card-body .card-content ul.price li p.title{
    width: 100%;
  }
}

                                                  /* end tabes */


                                                  /* start how */

.how .container{
  padding: 0;
}
.how .menu{
  padding: 110px 0 90px 0;
  min-height: 1050px;
} 
.how .menu .text-col{
  padding: 10px 30px 0px 0px;
  text-align: left;
  margin: auto 0 ;
}

.how .menu .text-col h3{
  color: #290505;
  font-size: 18px;
  display: block;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  color: rgba(232, 0, 0, 1) ;
}
.how .menu .text-col h2{
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin: 15px 0 15px 0;
  display: block;
  color: rgba(58, 58, 58, 1);
}
.how .menu .text-col p{
  color:  rgba(58, 58, 58, 1);
  font-size: 16px;
  font-weight: 400;
}

.how .menu .text-col ul{
  margin: 30px 0 40px 0;
}
.how .menu .text-col ul li{
  display: block;
  margin-bottom: 15px;
}
.how .menu .text-col ul li img{
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.how .menu .text-col ul li h3{
  font-family: "Rubik", Sans-serif;
  color: rgba(41, 5, 5, 1);
  font-size: 22px;
  font-weight: 400;
  position: relative;
}
.how .menu .text-col ul li h3 i{
  display: inline-block;
  font-size: 35px;
  margin-right: 10px;
  color: rgba(232, 0, 0, 1);  
}

.how .menu .text-col .btn{
  border-radius: 30px;
  height: 55px;
  width: 185px;
  border: 2px solid rgba(5, 120, 5, 1);
  background-color: rgba(5, 120, 5, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 60px rgba(5, 120, 5, 0.15);
  transition: all 0.3s ease-in-out;
}
.how .menu .text-col .btn a{
  text-decoration: none;
  transition: all 0.4s ease-in-out; 
  color: #fff; 
  font-size: 18px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
}
.how .menu .text-col .btn:hover{
  background-color: transparent;
  box-shadow: none;
}
.how .menu .text-col .btn:hover a{
  color: rgba(5, 120, 5, 1);
}

.how .menu .img-col{
background-image: url(imgs/graphic-element.png);
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
height: 730px;
position: relative;
padding-bottom: 60px;
}
.how .menu .img-col .large{
width: 470px;
height: 731px;
position: absolute;
top: 80px;
right: 0px;
margin-left: auto;
z-index: 1;
}
.how .menu .img-col .small{
width: 375px;
height: 417px;
position: absolute;
left: 45px;
bottom: 27px;
z-index: 2;
border-radius: 55px;
box-shadow: rgba(0, 0, 0, 0.2) 30px 30px 60px;
}
@media (max-width: 992px) { 
  .how .menu .text-col h2{
    font-size: 32px;
  }
}
@media (max-width: 576px) { 
  .how .container{
    padding: 0 15px;
  }
  .how .menu{
    padding: 70px 0;
  } 
  .how .menu .text-col{
    padding-left: 30px;
  }
  .how .menu .img-col .large{
    max-width: 94%;
    max-height: 94%;
    right: 12px;
    padding-bottom: 0px;
  }
  .how .menu .img-col .small{
    display:  none;
    }
}

                                                  /* end how */

                                                  /* start testimonials */
.testimonial{
  background-image: url(imgs/testimonial_bg.png);
}        
.testimonial{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
}                                           
.about-testimonial{
  background-image: none;
}
.testimonial-page{
  background-image: none;
  background-color: rgba(5, 120, 5, 1);
}
   
.testimonial .container{
  padding: 120px 0;
}    

.about-testimonial .about-container,.testimonial-page .testimonial-container{
  padding: 60px 0;
}
.testimonial .slider{
  margin: 0;
}                                    
.testimonial .heading, .partner-heading{
  text-align: center;
}
.testimonial .heading h3,.testimonial .heading h2{
  color: #fff;
}
.about-testimonial .about-heading h3,.partner-heading h3{
  color: rgba(232, 0, 0, 1);
}
.testimonial .heading h3,.partner-heading h3{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.testimonial .heading h2 , .partner-heading h2{
  font-size: 40px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  /* font-family: 'Karla', sans-serif; */
  line-height: 1.2;
}
.about-testimonial .about-heading h2, .partner-heading h2 {
  color: rgba(41, 5, 5, 1);
}

.testimonial .slider {
  padding: 0 25px;
}
.testimonial .slider .card-body{
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  margin: 40px 0;
  padding: 25px 40px 40px 40px;
  text-align: left;
}
.about-testimonial .slider .about-card-body{
  border: 1px solid rgba(112, 112, 112, 0.2);
} 

.testimonial .slider .card-body .icons{
  font-size: 60px;
  color: #45484c;
}
.testimonial .slider .card-body p{
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.testimonial .slider .card-body ul.stars{
  margin-top: 15px;
  margin-bottom: 12px;
}
.testimonial .slider .card-body ul.stars li,.product .summary .stars li{
  display: inline-block;
}
.testimonial .slider .card-body ul.stars li i ,.product .summary .stars li i{
  color: rgba(0, 0, 0, 0.16);
  font-size: 20px;
}
.testimonial .slider .card-body ul.stars li i.checked,.product .summary .stars li i.checked{
  color: #FBAD41;
}

.testimonial .slider .card-body .customer{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.testimonial .slider .card-body .customer img{
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimonial .slider .card-body .customer p{
  margin: 0 0 0 8px ;
  font-size: 16px;
  font-weight: 700;
  font-family: "Karla", Sans-serif;
  color: #4a5156;
}
.testimonial .slider .card-body .customer p span{
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #585f64;
}

.owl-nav{
  display: none;
}
.owl-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-top: 15px;
}
.owl-carousel button.owl-dot{
  outline: none !important;
}
.owl-theme .owl-dots .owl-dot.active span{
  width: 25px !important;
  border-radius: 10px !important;
  opacity: 1 !important;
}
.testimonial .owl-theme .owl-dots .owl-dot span{
  background: #fbad41 !important;
}
.about-testimonial .owl-theme .owl-dots .owl-dot span{
  background: rgba(232, 0, 0, 1) !important;
}

.owl-theme .owl-dots .owl-dot span {
  opacity: 0.25 !important;
  transition: all 0.3s ease-in-out !important;
  margin: 0 5px !important;
  height: 15px !important;
  width: 15px !important;
  border-radius: 50%;
}

@media (max-width: 576px) { 
  .testimonial .heading h2{
    font-size: 32px;
  }
}


                                                  /* end testimonials */

                                                  /* start offer */

.offer {
  padding: 110px 0;
}
.menu-item-offer{
  padding: 70px 0 70px;
}
.offer .container{
  padding: 0;
}
.offer .content1{
  background-image: url(imgs/05.png);
}
.menu-item-offer .menu-item-content-1{
  background-image: url(imgs/87.png);
}
.offer .content2{
  background-image: url(imgs/your-images-here.png);
}
.offer .content1,.content2{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  padding: 100px 70px;
  border-radius: 55px;
  /* width: 600px; */
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.offer  .content1::after ,.content2::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#FBAD41, #980F00);
  mix-blend-mode: multiply;
  background-size: cover;
  z-index: -1;
  border-radius: 50px;
}
.offer  .content1::before ,.content2::before{
  content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    mix-blend-mode: multiply;
    background-size: cover;
    z-index: -1;
    border-radius: 50%;
    background: linear-gradient(#fbad41 0%, #980f00 100%);
}

.offer  .content1 span ,.content2 span{
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
} 
.offer .content1 h2 ,.content2 h2{
  color: #fff;
  font-size: 55px;
  font-weight: 700;
  margin: 0 0 35px 0;
  font-family: "Rubik", sans-serif;
}                                                 
.offer .content1 .btn ,.content2 .btn{
  border-radius: 30px;
  height: 45px;
  width: 155px;
  border: 2px solid rgba(232, 0, 0, 1);
  background-color: rgba(232, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 60px rgba(5, 120, 5, 0.15);
  transition: all 0.3s ease-in-out;
}
.offer .content1 .btn a ,.content2 .btn a{
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
}
.offer .content1 .btn:hover ,.content2 .btn:hover{
  background-color: transparent;
  box-shadow: none;
}
@media (max-width: 768px) { 
  .offer .content1 h2,.content2 h2{
    font-size: 36px;
  }
}
@media (max-width: 576px) { 
  .offer{
    padding: 40px 0;
  }
  .offer .container{
    padding: 15px;
  }
  .offer .content1,.content2{
    padding: 60px 40px;
  }
  .offer  .content1::before ,.content2::before{
    display: none;
  }
}

                                                  /* end offer */

                                                  /* start art */
.art{
  background-image: url(imgs/blog_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.art .container{
  padding: 100px 0;
}
.art .heading{
  text-align: center;
  padding-bottom: 40px;
}
.art .heading h3{
  font-size: 18px;
  font-weight: 500;
  color: rgba(232, 0, 0, 1);
  margin-bottom: 15px;
}
.art .heading h2{
  font-size: 40px;
  font-weight: 500;
  color: rgba(58, 58, 58, 1);
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
}

.art .card-body{
  position: relative;
  background: #fff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0px 20px 100px rgb(1 15 28 / 10%);
  border-radius: 25px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.art .card-body:hover{
  box-shadow: 0px 20px 50px rgb(1 15 28 / 10%);
}
.art .card-body a.photo{
  transition: all 0.3s ease-in-out;
  position: relative;
}

.art .card-body a.photo .origin{
  perspective: 200px;
  height: 230px;
  overflow: hidden;
}
.art .card-body a.photo img{
  width: 100%;
  max-height: 230px;
  transition: all 0.5s ease-in-out;
}
.art .card-body a.photo .origin:hover img{
  transform: translateZ(17px);
  filter: rgba(0, 0, 0, 0.5);
  filter: brightness(0.7);
}

/* .art .card-body a.photo .overlay{
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 230px;
  mix-blend-mode: multiply;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all .7s linear;
}
.art .card-body a.photo:hover .overlay{
  display: block;
} */

.art .card-body .card-content{
  padding: 19px 30px 30px;
}
.art .card-body .card-content ul li{
  display: inline-block;
}
.art .card-body .card-content ul li:first-of-type{
  float: left
}
.art .card-body .card-content ul li span {
  color: rgba(58, 58, 58, 1);
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  vertical-align: middle;
}
.art .card-body .card-content ul li span a{
  text-decoration: none;
  color: rgba(58, 58, 58, 1);
  transition: all 0.3s ease-in-out;
}
.art .card-body .card-content ul li span a:hover{
  color: rgba(232, 0, 0, 1);
}
.art .card-body .card-content ul li i{
  color: rgba(232, 0, 0, 1);
  vertical-align: middle;
}

.art .card-body .card-content h3{
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  margin: 7px 0 19px;
  text-align: left;
}
.art .card-body .card-content h3 a{
  text-decoration: none;
  color: rgba(58, 58, 58, 1);
  transition: all 0.3s ease-in-out;
}
.art .card-body .card-content h3 a:hover{
  color: rgba(232, 0, 0, 1);
}
.art .card-body .card-content .read {
  text-align: left;
}
.art .card-body .card-content .read a{
  text-decoration: none;
  color: rgba(58, 58, 58, 1);
  transition: all 0.3s ease-in-out;
}
.art .card-body .card-content .read a:hover{
  color: rgba(232, 0, 0, 1);
}
.art .card-body .card-content .read a i{
  font-size: 20px;
  vertical-align: middle;
}

@media (max-width: 992px) { 
  .art .heading h2{
    font-size: 32px;
  }
}
@media (max-width: 576px) { 
  .art .container{
    padding: 80px 15px;
  }
}

                                                  /* end art */

                                                  /* start instgram */
.inst{
  padding: 100px 0;
}
.about-inst{
  padding: 20px 0 100px 0;
}
.inst .heading{
  text-align: center;
  padding-bottom: 40px;
}

.inst .heading h3{
  font-size: 18px;
  font-weight: 500;
  color: rgba(232, 0, 0, 1);
  margin-bottom: 15px;
}
.inst .heading h2{
  font-size: 40px;
  font-weight: 500;
  color: rgba(58, 58, 58, 1);
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
}

.inst .box{
  padding-bottom: 20px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.inst .box img{
  border-radius: 20px;
  height: 247.5px;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.inst .box:hover img{
  filter: brightness(1.12);
}
/* .inst .box a i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 35px;
  display: none;
} */
/* .inst .box:hover i{
  display: block;
} */

@media (max-width: 576px) { 
  .inst .heading h2{
    font-size: 32px;
  }
}                                              
                                                  /* end instgram */

                                                  /* start footer */
footer{
  background-image: url(imgs/footer_wave_bg.svg);
  padding-top: 140px;
}                                                  
footer,.footer-2{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top ;
  color: #fff;
}
.footer-2{
  background-image: url(imgs/your-image-here-3.png);
  padding-top: 160px;
}
.footer-3{
  padding-top: 110px;
}
footer .footer-box{
  padding-bottom: 40px;
}
footer .footer-box .footer-upper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2) ;
  margin-bottom: 85px;
}    
footer .footer-box .footer-upper .site-info{
  display: flex;
  justify-content: center;
  align-items: center;
}                                              

footer .footer-box .footer-upper .site-info ul li{
  display: inline-block;
}
footer .footer-box .footer-upper .site-info ul li:first-of-type{
  margin-right: 20px;
}
footer .footer-box .footer-upper .site-info ul li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer-box .footer-upper .site-info ul li a:hover{
  color: rgba(232, 0, 0, 1);
}

footer .footer-box .footer-upper .site-phone{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
footer .footer-box .footer-upper .site-phone .phone{
  min-height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(251, 173, 65, 1);
  color: #fff;
  font-size: 23px;
  margin-right: 15px;
}
footer .footer-box .footer-upper .site-phone .number h4{
  font-family: Karla;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}
footer .footer-box .footer-upper .site-phone .number p{
  font-family: Rubik;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}

footer .footer-box .footer-lower .links{
  margin-bottom: 30px;
}
footer .footer-box .footer-lower .links h3{
  font-size: 22px;
  margin-bottom: 26px;
  color: #fff;
  font-weight: 500;
}
footer .footer-box .footer-lower .links>ul li i{
  vertical-align: baseline;
}
footer .footer-box .footer-lower .links ul li{
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
}
footer .footer-box .footer-lower .links ul li a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
footer .footer-box .footer-lower .links ul li a:hover{
  color: rgba(232, 0, 0, 1);
}

footer .footer-box .footer-lower .links ul li .social {
  margin-top: 35px;
}
footer .footer-box .footer-lower .links ul li .social li{
  margin-right: 8px;
  display: inline-block;
}
footer .footer-box .footer-lower .links ul li .social li a{
  text-decoration: none;
  font-size: 20px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
footer .footer-box .footer-lower .links ul li .social li a:hover{
  background-color: rgba(251, 173, 65, 1);
}

footer .tail-bar{
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .tail-bar p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}

@media(max-width:768px){
  footer,.footer-2,.footer-3{
    padding-top: 80px;
  }
  footer .footer-box .footer-upper{
    display: block;
  } 
  footer .footer-box .footer-upper .site-logo{
    text-align: center;
    margin-bottom: 15px;
  }
  footer .footer-box .footer-upper .site-info{
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  footer .footer-box .footer-lower .links {
    margin-bottom: 35px;
    padding-left: 20px;
  }
  footer .footer-box .footer-lower .links h3{
    margin-bottom: 22px;
  }
}

                                                  /* end footer */



      /* ***************************************end home page**************************************** */



      /* ***************************************start about page**************************************** */



                                                  /* start about-lable */
.about-lable{
  background-image: url(imgs/Group-1227.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  min-height: 350px;
  padding: 60px ;
  display: flex;
  align-items: center;
}

.about-lable h1{
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  color: #fff;
  font-family: "Rubik", Sans-serif;
}

.about-lable a{
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  font-family: "Karla", Sans-serif;
}
.about-lable a:hover{
  color: rgba(232, 0, 0, 1);
}
.about-lable .separator{
  display: inline-block;
  margin: 0 9px;
  height: 4px;
  width: 4px;
  background-color: #fff;
  border-radius: 15px;
}
.about-lable .text{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  font-family: "Karla", Sans-serif;
}

@media (max-width: 992px) {
  .about-lable {
    min-height: 300px;
  }
  .about-lable h1{
    font-size: 40px;
  }
}
@media (max-width: 798px) {
  .about-lable h1{
    font-size: 32px;
  }
}

                                                  /* end about-lable */

                                                  /* start vision */
.vision{
  padding: 100px 0 80px;
}
.vision .container{
  padding: 0;
}
.vision .row{
  display: flex;
  align-items: center;
}
.vision .text-col h3{
  color: rgba(232, 0, 0, 1);
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.vision .text-col h2{
  color: rgba(41, 5, 5, 1);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
}
.vision .text-col h4{
  color: #3A3A3A;
  font-family: "Rubik", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  margin: 30px 0 15px 0;
}
.vision .text-col ul {
  margin: 20px 0;
}
.vision .text-col ul li{
  margin-bottom: 10px;
}

.vision .text-col ul li p{
  color: rgba(58, 58, 58, 1);
  font-family: "Karla", Sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
}
.vision .text-col ul li p span{
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: rgba(5, 120, 5, 1);
  display: inline-block;
  margin-right: 10px;
}
.vision .text-col ul li p span.yellow{
  background-color: rgba(251, 173, 65, 1);
}

.vision .image-col{
  text-align: right;
}
.vision .image-col img{
  max-width: 100%;
  position: relative;
}
.vision .image-col .number{
  background-image: url(imgs/Path-10192.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: 0px;
  left: -15px;
  padding: 10px 30px 15px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.vision .image-col .number h3 {
  color: #FFFFFF;
  margin-bottom: 0px;
  font-family: "Rubik", Sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.vision .image-col .number .phone{
  min-height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(251, 173, 65, 1);
  color: #fff;
  font-size: 30px;
  margin-right: 15px;
}

@media(max-width:992px){
  .vision .text-col h2{
    font-size: 32px;
  }
}

@media(max-width:768px){
  .vision {
    padding: 70px 0;
  }
  .vision .container{
    padding: 0 15px;
  }
  .vision .text-col{
    margin-bottom: 40px;
  }
  .vision .text-col h4{
    font-size: 22px;
    line-height: 32px;
  }
  .vision .image-col{
    text-align: left;
  }
  .vision .image-col .number{
    left: 5px;

  }
}
                                                  /* end vision */

                                                  /* start process */
.process{
  background-image: url(imgs/Path-10193.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 95px 0px;
}

.process .heading{
  text-align: center;
  padding-bottom: 40px;
}
.process .heading h3{
  font-size: 18px;
  font-weight: 500;
  color: rgba(251, 173, 65, 1);
}
.process .heading h2{
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
  margin: 20px 0 ;
}

.process .box{
  text-align: center;
}
.process .box h2{
  color: #FFFFFF;
  font-family: "Rubik", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}
.process .box p{
  color: #FFFFFF;
  font-family: "Karla", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 auto;
  width: 85%;
}

@media(max-width:767px){
  .process{
    padding: 70px 0 30px 0;
  }
  .process .box{
    margin-bottom: 40px;
  }
  .process .box p{
    width: 100%;
  }
}

                                                  /* end process */

                                                  /* start download */
.download .contain{
  background-image: url(imgs/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 70px;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  margin: 0 auto -70px auto;
  width: 100%;
  height: 100%;
}
.download .box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}
.download .box .content{
  text-align: left;
  width: 50%;
}
.download .box .content p{
  color: #E80000;
  font-family: "Amita", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.download .box .content h4{
  color: #3A3A3A;
  font-family: "Rubik", Sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  width: 80%;
}

.download .box .content .app-btn{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.download .box .content .app-btn a{
  color: #fff;
  text-decoration: none;
  border: 2px solid #000;
  border-radius: 6px;
  display: inline-block;
  background-color: #000;
  text-align: left;
  margin-bottom: 10px;
  margin-right: 15px;
}
.download .box .content .app-btn a:first-of-type{
  padding: 5px 20px 5px 12px;
}
.download .box .content .app-btn a:last-of-type{
  padding: 5px 27px 5px 12px;
}
.download .box .content .app-btn a:hover .text p{
  color: rgba(232, 0, 0, 1);
}
.download .box .content .app-btn a .text{
  display: flex;
  justify-content: center;
  align-items: center;
}
.download .box .content .app-btn a .text i{
  font-size: 40px;
  margin-right: 10px;
}
.download .box .content .app-btn a .text p{
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 100;
  line-height: 1;
  font-family: "Rubik", Sans-serif;
  transition: all 0.3s ease-in-out;
}
.download .box .content .app-btn a .text p span{
  line-height: 1.2;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Karla', sans-serif;
}

.download .box .image{
  width: 50%;
}
.download .box .image img{
  width: 537px;
  height: 403px;
}

@media (max-width: 992px) { 
  .download .box{
    padding-top: 100px ;
    padding-bottom: 100px ;
  }
  .download .box .content h4{
    width: 100%;
    font-size: 26px;
  }
  .download .box .image{
    display: none;
  }
  .download .box .content{
    width: 100%;
  }
 }
 @media (max-width: 768px) { 
  .download .contain{
    padding:  60px 0;
    margin-bottom: 80px;
  }
  .download .box{
   padding: 0 40px;
  }
  }

                                                  /* end download */



      /* ***************************************end about page**************************************** */



      /* ***************************************start testimonial page**************************************** */
.partner{
  padding: 90px 0 80px;
}
.partner .box{
  margin: 60px auto;
  width: 100%;
}

.partner .owl-carousel img.item {
  width: 102px !important;
  height: 90px !important;
}
.partner .owl-dots {
  display: none;
}

@media(max-width: 992px){
  .partner .partner-heading h2 {
    font-size: 32px;
  }
}
@media(max-width: 768px){
  .partner {
    padding: 50px 0;
  }
}
      /* ***************************************end testimonial page**************************************** */



      /* ***************************************start menu page**************************************** */
.categorie{
  padding: 90px 0 60px;
}
.categorie .container{
  padding: 0;
}
.categorie .contain{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.categorie .box{
  position: relative;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 10px;
}
.categorie .box img{
  width: 100%;
}
.categorie .box a{
  text-decoration: none;
  color: #fff;
  background-color: #E80000;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  font-size: 16px;
  font-weight: 500;
  padding: 5px 20px;
  border-radius: 12px 12px 0 0;
}
.categorie .box a:hover{
  box-shadow: #00000029 -20px -15px 50px;
}
.categorie .box a i{
  color: #fff;
  font-size:17px;
  margin-right: 4px;
  vertical-align: baseline;
}
@media (max-width: 992px) { 
  .categorie .partner-heading h2{
    font-size: 32px;
  }
 }
@media (max-width: 768px) { 
  .categorie{
    padding: 60px 0 30px;
  }
 }
 
      /* ***************************************end menu page**************************************** */



      /* ***************************************end menu-item page**************************************** */



                                                  /* start tabes */

































                                                  /* end tabes */

                                                  /* start meal */
.meal {
  padding: 100px 0;
  background-color: #f5f5f5;
}
.meal .container{
  padding: 0;
}
.meal .contain{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.meal .heading{
  text-align: center;
  padding-bottom: 40px;
}
.meal .heading h3{
  font-size: 18px;
  font-weight: 500;
  color: rgba(232, 0, 0, 1);
  margin-bottom: 20px;
}
.meal .heading h2{
  font-size: 40px;
  font-weight: 500;
  color: rgba(41, 5, 5, 1);
  font-family: "Rubik", sans-serif;
  line-height: 1.2;
}

.meal .box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 30px 30px 20px;
  position: relative;
  margin-bottom: 25px;
}
.meal a.liked{
  text-decoration: none;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background-color: rgba(246, 246, 246, 1);
  color: rgba(113, 113, 113, 1);
  text-align: center;
  padding: 0 7px;
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.meal .liked i{
  font-size: 18px;
}
.meal a.liked:hover{
  color: rgba(232, 0, 0, 1);
  background-color: rgba(255, 241, 241, 1);
}

.meal .box img{
  max-width: 100%;
  height: auto;
  padding-right: 10px;
}
.meal .box ul li{
  margin-bottom: 10px;
}
.meal .box ul li a{
  text-decoration: none;
  color: rgba(41, 5, 5, 1);
  transition: all 300ms ease-in-out;
}
.meal .box a:hover{
  color: rgba(232, 0, 0, 1);
}
.meal .box ul li a h2{
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  font-family: "Rubik", Sans-serif;
}
.meal .box ul li ul.stars li{
  margin: 0;
}
.meal .box ul li ul.stars li i,.meal .box ul li ul.stars li span{
  vertical-align: middle;
}
.meal .box ul li p{
  margin: 0;
}

.meal .box ul li .btn{
  border-radius: 25px;
  height: 40px;
  width: 150px;
  margin: 20px 0 0 0 ;
  background-color: transparent;
  border: 1px solid rgba(232, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.meal .box ul li .btn a{
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
  color: rgba(232, 0, 0, 1);
  font-weight: 400;
  font-size: 18px;
  font-family: "Karla", Sans-serif;
}
.meal .box ul li .btn:hover{
  background-color: rgba(232, 0, 0, 1);
  box-shadow: 0 40px 60px rgba(232, 0, 0, 0.3);
}
.meal .box ul li .btn:hover a{
  color: #fff;
}
.meal .box ul li .btn a>i{
  font-size: 20px;
}

@media (max-width: 992px) { 
  .meal .heading h2{
    font-size: 32px;
  }
 }

@media (max-width: 768px) { 
  .meal {
    padding: 70px 0;
  }
  .meal .container {
    padding: 0 15px;
  }
 }
                                                  /* end meal */

                                                  /* start download-app */
.download-app{
  padding: 100px 0;
}
.download-app .container{
  padding: 0;
}
.download-app .row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

}
.download-app .text-col h3{
  color: rgba(232, 0, 0, 1);
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.download-app .text-col h2{
  color: rgba(41, 5, 5, 1);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
  margin: 15px 0;
}
.download-app .text-col p{
  color: rgba(58, 58, 58, 1);
  font-family: 'Karla', sans-serif;
  line-height: 1.7;
  margin-bottom: 50px;
}

.download-app .text-col .btn{
  border-radius: 30px;
  height: 55px;
  width: 185px;
  border: 2px solid rgba(232, 0, 0, 1);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.download-app .text-col .btn:first-of-type{
  background-color: rgba(232, 0, 0, 1);
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.3);
  margin-right: 15px;

}
.download-app .text-col .btn:last-of-type{
  background-color: transparent;
}

.download-app .text-col .btn:first-of-type:hover{
  background-color: transparent;
  box-shadow: none;
}
.download-app .text-col .btn:first-of-type:hover a{
  color: rgba(232, 0, 0, 1);
}
.download-app .text-col .btn:last-of-type:hover{
  background-color: rgba(232, 0, 0, 1); 
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.25);
}
.download-app .text-col .btn:last-of-type:hover a{
  color: #fff;
}

.download-app .text-col .box{
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.download-app .text-col .btn{
  display: inline-block;
  line-height: 33px;
}
.download-app .text-col .btn a{
  font-weight: 600;
  font-size: 16px;
  font-family: "Karla", Sans-serif;
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
}
.download-app .text-col .btn a i{
  font-size: 25px;
  margin-right: 5px;
  vertical-align: middle;
}
.download-app .text-col .btn a span{
  vertical-align: middle;
}
.download-app .text-col .btn:first-of-type a{
  color: #fff;
}
.download-app .text-col .btn:last-of-type a{
  color: rgba(232, 0, 0, 1);
}

.download-app .image-col{
  text-align: right;

}
.download-app .image-col img:first-of-type{
  max-width: 100%;
  height: auto;
  position: relative;
}
.download-app .image-col .iphone{
  max-width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(45%,12%);
}

@media (max-width: 1200px) { 
  .download-app .image-col .iphone{
    transform: translate(20%,12%);
  }
}

@media (max-width: 992px) { 
  .download-app .image-col .iphone{
    transform: translate(3%,21%);
  }
  .download-app .text-col h2{
    font-size: 30px;
  }
}

@media (max-width: 768px) { 
  .menu-item-offer{
    padding-top: 90px;
  }

  .download-app{
    padding-top: 50px;
  }
  .download-app .container{
    padding: 0 15px;
  }
  .download-app .image-col{
    margin-top: 100px;
    text-align: center;
  }
  .download-app .image-col .iphone{
    transform: translate(26%,12%);
  }
}

@media (max-width: 576px) { 
  .download-app{
    padding-bottom: 60px;
  }
  .download-app .image-col{
    display: none;
  }
 }
                                                  
                                                  /* end download-app  */

                                                  /* start newsletter */
.newsletter{
  text-align: center;
  background-image: url(imgs/foods.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 200px 0;
}      
.newsletter .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(5, 120, 5, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}                                            
.newsletter h4{
  color: #FFFFFF;
  font-family: "Rubik", Sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 50px;
}

.newsletter form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.newsletter form input[type="text"]{
  width: 43%;
  height: 80px;
  padding: 0px 20px;
  border-radius: 40px;
  margin-right: 30px;
  border: none;
  outline: 2px solid #F5F5F5;
  background-color: #F5F5F5;
  color: #6b93aa;
  font-size: 15px;
  font-weight: 400;
  font-family: "Rubik", Sans-serif;
  transition: all 0.3s linear;
}
.newsletter form input[type="submit"]{
  height: 80px;
  background-color: rgba(251, 173, 65, 1);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Karla', sans-serif;
  border-radius: 40px;
  padding: 0px 50px;
  border: none;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.newsletter form input[type="text"]:focus{
  outline: 2px solid rgba(232, 0, 0, 1);
}
.newsletter form button:hover{
  background-color: rgba(232, 0, 0, 1);
}

@media (max-width: 992px){
  .newsletter form input[type="text"]{
    width: 65%;
  }

}
@media (max-width: 767px){
  .newsletter{
    padding: 150px 0;
  }
  .newsletter h4{
    font-size: 28px;
    line-height: 38px;
  }
  .newsletter form input[type="text"]{
    width: 55%;
  }
}
@media (max-width: 576px){
  .newsletter form input[type="text"]{
    height: 60px;
  }
  .newsletter form input[type="submit"]{
    height: 60px;
    padding: 0 30px;
  }
}
@media (max-width: 480px){
  .newsletter form{
    justify-content: flex-start;
  }
  .newsletter form input[type="text"]{
    width: 100%;
    margin-bottom: 20px;
  }
}

                                                  /* end newsletter */



      /* ***************************************end menu-item page**************************************** */



      /* ***************************************start error page**************************************** */



.error{
  padding: 90px 0;
  display: flex;
  justify-content:center;
  align-items: center;
  text-align: center;
}
.error img{
  max-width: 100%;
  height: auto;
}
.error .box{
  display: flex;
  justify-content:center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.error .box h2{
  font-size: 40px;
  margin-bottom: 7px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  width: 100%;
}
.error .box p{
  margin: 15px 0 32px;
  font-size: 18px;
  font-weight: 400;
  font-family: "Karla", sans-serif;
}

.error .btn{
  border-radius: 30px;
  height: 50px;
  width: 155px;
  margin: 0 auto;
  background-color: rgba(5, 120, 5, 1);
  border: 1px solid rgba(5, 120, 5, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 60px rgba(5, 120, 5, 0.15);
  transition: all 0.3s ease-in-out;
}
.error .btn a{
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Karla", Sans-serif;
  transition: all 0.4s ease-in-out;  

}
.error .btn:hover{
  background-color: #fff;
}
.error .btn:hover a{
  color: rgba(5, 120, 5, 1);
  box-shadow: none;
}

@media (max-width: 768px) { 
  .error{
    padding: 50px 0;
  }
  .error .box h2{
    font-size: 32px;

  }
 }
      /* ***************************************end error page**************************************** */



      /* ***************************************start contact page**************************************** */


                                              /* start contact-media */
.contact-media{
  padding: 90px 0 70px;
}
.contact-media .contain{
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-media .box{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 30px 0 20px;
  border-radius:20px;
  border: 1px solid rgba(4, 154, 68, 0.15);
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.contact-media .box:hover{
  box-shadow: 20px 20px 50px rgba(126, 48, 16, 0.05);
}

.contact-media .box .backcolor{
  background-image: url(imgs/Group-1164.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 20px;
}
.contact-media .box .backcolor i{
  color: #fff;
  font-size: 50px;
}

.contact-media .box h3{
  color: rgba(41, 5, 5, 1);
  font-size: 28px;
  line-height: 38px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  width: 100%;
  margin: 30px 0 10px;
}
.contact-media .box p{
  color: rgba(58, 58, 58, 1);
  font-size: 18px;
  line-height: 26px;
  font-family: "Rubik", sans-serif;
  width: 100%;
}
@media (max-width: 768px) { 
  .contact-media{
    padding: 70px 0 50px;
  }
 }
                                              /* end contact-media */

                                              /* start contact-form */
.contact-form{
  background-image: url(imgs/pexels-ella-olsson-3026805.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 110px 0;
  position: relative;
}
.contact-form .overlay{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #290505;
  opacity: 0.2;
}
.contact-form .contain{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-form .box{
  background-color: #FFFFFFE6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  border-radius: 35px;
  padding: 80px 40px ;
}

.contact-form .box .heading{
  text-align: center;
  padding-bottom: 10px;
}
.contact-form .box .heading h3{
  font-size: 40px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  line-height: 1.2;
  color: #010F1C;
  margin-bottom: 10px;
}
.contact-form .box .heading p{
  font-size: 16px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  font-family: 'Karla', sans-serif;
  line-height: 1.2;
  margin-bottom: 40px;
}

.contact-form .box form{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.contact-form .box form input:not([type="submit"]){
  padding: 18px 30px;
  border-radius: 30px;
  border: none;
  outline: 1px solid rgba(69, 69, 69, 0.5);
  font-size: 15px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  width: 48%;
  margin-bottom: 25px;
  font-family: "Karla", sans-serif;
  transition: all 0.3s ease-in-out;
}
.contact-form .box form input[placeholder="First Name*"],.contact-form .box input[placeholder="Phone"]{
  margin-right: 25px;
}
.contact-form .box form textarea{
  width: 100%;
  height: 150px;
  border-radius: 30px;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 20px 30px;
  outline: 1px solid rgba(69, 69, 69, 0.5);
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  font-family: "Karla", sans-serif;
  transition: all 0.3s ease-in-out;
}
.contact-form .box form input:focus,.contact-form .box form textarea:focus{
  outline: 3px solid rgba(4, 154, 68, 0.15);
}

.contact-form .box form input[type="submit"]{
  width: 170px;
  background-color:rgba(232, 0, 0, 1);
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-weight: 400;
  outline: 0;
  border: 2px solid rgba(232, 0, 0, 1);
  transition: all 0.3s ease-in-out;
}
.contact-form .box form input[type="submit"]:hover{
  background-color: transparent;
  color: rgba(232, 0, 0, 1);
}

@media (max-width: 992px) { 
  .contact-form .box form input:not([type="submit"]){
    width: 100%;
  }
  .contact-form .box form input[placeholder="First Name*"],.contact-form .box input[placeholder="Phone"]{
    margin-right: 0;
  }
 }

@media (max-width: 576px) { 
  .contact-form .box{
    padding-top: 60px;
  } 
  .contact-form .box .heading h3{
    font-size: 32px;
  }
  .contact-form .box .heading p{
    margin-bottom: 25px;
  }
  .contact-form{
    padding: 70px 0;
  }
 }
                                              /* end contact-form */



      /* ***************************************end contact page**************************************** */



      /* ***************************************start faq page**************************************** */


.question{
  padding: 100px 0;
  text-align: center;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.question h4{
  color: rgba(41, 5, 5, 1);
  font-family: "Karla", Sans-serif;
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 50px;
}

.question .box{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 0 120px;
}
.question .box button{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  cursor: pointer;
  outline: 0;
  border: 1px solid rgba(58, 58, 58, 0.4);
  padding: 16px 30px;
  border-radius: 50px;
  color: rgba(41, 5, 5, 1);
  background-color: #fff;
  font-family: "Karla", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s linear;
}
.question .box button.red{
  border: 1px solid red;
}
.question .box button i{
  color: rgba(58, 58, 58, 0.4);
  font-size: 40px;
  font-weight: 100; 
  margin-left: auto;
  transition: all 0.3s linear;
}
.question .box button i.red{
  color: red;
}
.question .box button .content{
  padding: 30px 0px 0px;
  text-align: left;
  color: rgb(47, 47, 47);
  font-size: 16px;
  font-weight: 300;
  font-family: 'Karla', sans-serif;
  line-height: 1.7;
  transition: all 0.3s linear;
}

@media (max-width: 992px) { 
  .question h4{
    font-size: 32px;
  }
  .question .box{
    padding: 0 50px;
  }
 }

 @media (max-width: 767px){ 
  .question{
    padding: 70px 0;
  }
  .question h4{
    font-size: 28px;
  }
  .question .box{
    padding: 0 ;
  }
 }
 @media (max-width: 450px){ 
  .question .box button{
    font-size: 16px;
    padding-right: 15px;
  }
  .question .box button i{
    font-size: 35px;
  }
 }
  


      /* ***************************************end faq page**************************************** */



      /* ***************************************start Checkout page**************************************** */


.tables{
  padding: 100px 0;
  text-align: center;
}
.tables .box{
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 0 50px;
}

.tables .box .customer-details,.tables .box .payment-methods{
  display: flex;
  justify-content: center;
  align-items: center; 
  flex-wrap: wrap;
  text-align: center;
  width: 48%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 560px;
}
.tables .box .customer-details{
  margin-right: 25px;
}

.tables .box .customer-details .customer-header,.tables .box .payment-methods .payment-header{
  text-align: center;
  width: 100%;
  background-color: rgba(232, 0, 0, 1);
  padding: 20px 0;
}
.tables .box .customer-details .customer-header h4,.tables .box .payment-methods .payment-header h4{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 1.1px;
}

.tables .box .customer-details .customer-form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 35px 30px;
  background-color: rgba(240, 240, 240, .8);
  width: 100%;
}

.tables .box .customer-details .customer-form input{
  width: 100%;
  border-radius: 30px;
  background-color: rgba(249, 249, 249, 1);
  border: none;
  outline: 1px solid rgba(69, 69, 69, 0.2);
  font-size: 14px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  padding: 15px 25px;
  margin-bottom: 25px;
  font-family: "Karla", sans-serif;
  transition: all 0.3s linear;
}
.tables .box .customer-details .customer-form input:last-of-type{
  margin-bottom: 0px;
}
.tables .box .customer-details .customer-form input:focus{
  outline: 1px solid rgba(232, 0, 0, 1);
}

.tables .box .payment-methods .payment-list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
  padding: 35px 30px 30px 30px;
  background-color: rgba(240, 240, 240, .8);
  width: 100%;
}
.tables .box .payment-methods .payment-list ul.content {
  border-bottom: 1px solid rgba(69, 69, 69, 0.2);
}
.tables .box .payment-methods .payment-list ul.content li{
  margin-bottom: 15px;
}
.tables .box .payment-methods .payment-list ul.content li h3{
  font-size: 15px;
  font-weight: 800;
  color: rgba(41, 5, 5, 1);
  font-family: 'Rubik', sans-serif;
}
.tables .box .payment-methods .payment-list ul.content li p{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-weight: 400;
  font-family: "Karla", sans-serif;
}

.tables .box .payment-methods .payment-list ul.content li .confirm{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding-bottom: 18px;
}
.tables .box .payment-methods .payment-list ul.content li .confirm input[type="checkbox"]{
  appearance: none;
}
.tables .box .payment-methods .payment-list ul.content li .confirm label{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-weight: 600;
  font-family: "Karla", sans-serif;
  margin-bottom: 0;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.tables .box .payment-methods .payment-list ul.content li .confirm label::before{
  content: "";
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(5, 120, 5, 0.6);
  border-radius: 2px;
  margin-right: 7px;
  top: 1px;
  cursor: pointer;
}
.tables .box .payment-methods .payment-list ul.content li .confirm input[type="checkbox"]:checked + label::after{
  font-family: boxicons!important;
  content: "\ea41";
  color: rgba(5, 120, 5, 1);
  font-size: 22px;
  position: absolute;
  top: -8px;
  left: -1px;
}

.tables .box .payment-methods .payment-list .credit-cards{
  padding-top: 23px;
  width: 100%;
  position: relative;
}
.tables .box .payment-methods .payment-list .credit-cards span{
  display: inline-block;
  color: rgba(58, 58, 58, 1);
  background-color:  #F2F2F2;
  border-radius: 5px;
  padding: 0px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Karla", sans-serif;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.tables .box .payment-methods .payment-list .credit-cards ul{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.tables .box .payment-methods .payment-list .credit-cards ul li{
  display: inline-block;
}
.tables .box .payment-methods .payment-list .credit-cards ul li img{
  max-width: 100%;
  width: 65px;
  max-height: 50px;
}

.tables .send{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.tables .send input[type="submit"]{
  width: 170px;
  background-color:rgba(5, 120, 5, 1);
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-weight: 400px;
  outline: 0;
  border: 2px solid rgba(5, 120, 5, 1);
  box-shadow: 0 20px 60px rgba(5, 120, 5, 0.3);
  transition: all 0.3s ease-in-out;
}
.tables .send input[type="submit"]:hover{
  background-color: transparent;
  color: rgba(5, 120, 5, 1);
  box-shadow: none;
}

@media (max-width: 1200px) and (min-width: 992px){
  .tables .box .customer-details .customer-form input:not(:last-of-type){
    margin-bottom: 35px;
  }
}
@media (max-width: 992px) and (min-width: 768px){
  .tables .box .customer-details .customer-form input:not(:last-of-type){
    margin-bottom: 45px;
  }
}

@media (max-width: 992px){
  .tables .container{
    padding: 0;
  }
  .tables .box{
    padding: 0;
  }
}

@media (max-width: 768px) {
  .tables {
    padding: 70px 0 ;
  } 
  .tables .container{
    padding: 0 15px ;
  } 
  .tables .box{
    padding: 0 20px;
  }
  .tables .box .customer-details{
    margin-bottom: 30px;
  }
  .tables .box .customer-details,.tables .box .payment-methods{
    width: 100%;
    margin-right: 0;
    min-height: auto;
  }
  .tables .box .customer-details .customer-header h4,.tables .box .payment-methods .payment-header h4{
    letter-spacing: 0;
  }
  .tables .box .customer-details .customer-form,.tables .box .payment-methods .payment-list{
    padding: 25px 20px;
  }
  .tables .box .payment-methods .payment-list .credit-cards ul li:not(:last-of-type){
    margin-right: 5px;
  }
}



      /* ***************************************end Checkout page**************************************** */



      /* ***************************************start cart page**************************************** */



                                              /* start price-table */
.price-table{
  padding: 100px 0;
}
.price-table .box{
  padding: 0 0 0 30px;
  text-align: center;
}
.price-table .box .table{
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
}
.price-table .box .table .head{
  width: 100%;
  background-color: green;
  color: #fff;
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
}
.price-table .box .table .body{
  width: 100%;
  background-color: rgba(246, 246, 246, 1);
}
.price-table .box .table .head .line,.price-table .box .table .body .line{
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}
.price-table .box .table .head .line{
  padding: 20px 66px 20px 70px;
}
.price-table .box .table .body .line{
  padding: 20px 50px 20px 50px;
  border-bottom: 1px solid rgba(58, 58, 58, 0.2);
}
.price-table .box .table .body .noborder{
  border: 0;
}

.price-table .box .table .head .col,.price-table .box .table .body .col{
  display: inline-block;
  flex-grow: 0;
}
.price-table .box .table .head .product-header{
  min-width: 40.9%;
  margin-left: 6px;
}
.price-table .box .table .body .col1{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.price-table .box .table .body .col1 .content{
  min-width: 260px;
}
.price-table .box .table .body .col1 .content a{
  display: inline-block;
  text-decoration: none;
  color: rgba(41, 5, 5, 1);
  font-size: 18px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.price-table .box .table .body .col1 .content a:hover{
  color: rgba(232, 0, 0, 1);
}
.price-table .box .table .body .col1 .content p{
  color: rgba(58, 58, 58, 1);
  font-size: 14px;
  font-family: "Karla", Sans-serif;
  margin: 0;
}

.price-table .box .table .body .col .quantity,.product .summary .mid-content .quantity{
  width: 115px;
  display: inline-block;
  position: relative;
  background-color: rgba(239, 239, 239, 1);
  border-radius: 30px;
  overflow: hidden;
  font-family: 'Karla';
}
.price-table .box .table .body .col .quantity .minus-btn,
.price-table .box .table .body .col .quantity .plus-btn,
.product .summary .mid-content .quantity .plus-btn,
.product .summary .mid-content .quantity .minus-btn
{
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
  height: auto;
  line-height: 1;
}
.price-table .box .table .body .col .quantity .minus-btn,
.product .summary .mid-content .quantity .minus-btn{
  left: 10px;
}
.price-table .box .table .body .col .quantity .minus-btn::before,
.product .summary .mid-content .quantity .minus-btn::before{
  content: "\eb8b";
  font-family: boxicons!important;
  font-size: 20px;
}
.price-table .box .table .body .col .quantity .plus-btn,
.product .summary .mid-content .quantity .plus-btn{
  right: 10px;
}
.price-table .box .table .body .col .quantity .plus-btn::before,
.product .summary .mid-content .quantity .plus-btn::before{
  content: "\ebc0";
  font-family: boxicons!important;
  font-size: 20px;
}
.price-table .box .table .body .col .quantity input,
.product .summary .mid-content .quantity input{
  width: 100%;
  text-align: center;
  height: 46px;
  padding: 0 15px 0 15px;
  border: 2px solid #F5F5F5;
  font-weight: 400;
  outline: 0;
  transition: all 0.3s linear;
  border-radius: 6px;
  background-color: rgba(239, 239, 239, 1);
  font-size: 15px;
}

.price-table .box .table .body .Remove a{
  text-decoration: none;
  color: rgba(232, 0, 0, 1);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  position: relative;
}
.price-table .box .table .body .Remove a::before{
  content: "\ef06";
  font-family: boxicons!important;
  color: rgba(232, 0, 0, 1);
  position: relative;
  top: 1px;
  left: -2px;
}

.price-table .box .submitions{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}
.price-table .box .submitions .cupon{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.price-table .box .submitions .cupon .Apply{
  margin-left: 20px;
}
.price-table .box .submitions input{
  width: 170px;
  height: 55px;
  color: #fff;
  padding: 10px 10px;
  margin-bottom: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 400px;
  outline: 0;
  transition: all 0.3s ease-in-out;
}
.price-table .box .submitions input.Code{
  background-color: transparent;
  color: rgba(58, 58, 58, 0.8);
  border: 1px solid rgba(58, 58, 58, 0.6);
}
.price-table .box .submitions input.Apply{
  background-color: rgba(5, 120, 5, 1);
  color: #fff;
  border: 1px solid rgba(5, 120, 5, 1);
  cursor: pointer;
}
.price-table .box .submitions input.Update{
  background-color: transparent;
  color: rgba(58, 58, 58, 0.8);
  border: 1px solid rgba(58, 58, 58, 0.6);
  cursor: pointer;
}

.price-table .box .submitions input.Code:focus{
  border: 1px solid rgba(5, 120, 5, 1);
}
.price-table .box .submitions input.Update:hover,.price-table .box .submitions input.Apply:hover{
  background-color: rgba(232, 0, 0, 1);
  color: #fff;
  border: 1px solid rgba(232, 0, 0, 1);
}

@media (max-width: 1200px) { 
  .price-table .box .table .body .col1 .content {
    min-width: 184px;
  }
}

@media (max-width: 992px) { 
  .price-table .box .table .head .product-header{
    min-width: auto;
  }
 }
@media (max-width: 768px) { 
  .price-table .box .submitions{
    justify-content: center;
  }
 }

@media (max-width: 576px) { 
  .price-table{
    padding: 70px 0 50px 0;
  }
  .price-table .box {
    padding: 0;
  }
  .price-table .box .table .body .line {
     padding: 5px;
  }
  .price-table .box .table .head .line2{
    justify-content: center;
    flex-wrap: nowrap;
  }
  .price-table .box .table .body .col1 .content{
    min-width: 150px;
  }
  .price-table .box .submitions{
    justify-content: center;
  }
 }
 @media (max-width: 407px){
  .price-table .box .submitions .cupon .Apply{
    margin-left: 0;
  }
 }

                                              /* end price-table */

                                              /* start total-price */
.total-price{
  padding: 100px 0;
  text-align: left;
  background-color: rgba(243, 243, 243, 1);
}
.total-price .box{
  padding: 0 0 0 30px;
}
.total-price .box h2{
  color: rgba(58, 58, 58, 1);
  font-size: 32px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  padding-bottom: 30px;
  margin-bottom: 0;
}

.total-price .box .price{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid rgba(69, 69, 69, 0.2);
}
.total-price .box .price p{
  font-size: 17px;
  color:rgba(58, 58, 58, 1);
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  margin: 0 100px 0 0;
}
.total-price .box .price p.total{
  color: rgba(41, 5, 5, 1);
  margin: 0 135px 0 0;
}
.total-price .box .price p span{
  color: rgba(41, 5, 5, 1);
  font-size: 18px;
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
}

.total-price .box .btn{
  border-radius: 30px;
  height: 55px;
  width: 230px;
  padding: 0 90px;
  border: 2px solid rgba(232, 0, 0, 1);
  background-color: rgba(232, 0, 0, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 60px rgba(207, 20, 34, 0.15);
  margin-top: 35px;
  transition: all 0.3s ease-in-out;
}
.total-price .box .btn a{
  font-size: 16px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
  text-decoration: none;
  transition: all 0.4s ease-in-out;  
  color: #fff;
}
.total-price .box .btn:hover{
  background-color: transparent;
  box-shadow: none;
}
.total-price .box .btn:hover a{
  color: rgba(232, 0, 0, 1);
}

@media (max-width: 576px) {
  .total-price{
    padding: 70px 0;
  }
  .total-price .box h2{
    font-size: 30px;
  }
  .total-price .box .price p{
    margin-right: 80px;
  }
  .total-price .box .price p.total{
    margin-right: 115px;
  }
 }
                                              /* end total-price */



      /* ***************************************end cart page**************************************** */



      /* ***************************************start shop page**************************************** */


.shop-tabes{
  background-image: none;
  padding: 90px 0;
}  
.shop-tabes .header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 20px;
  background-color: #F6F6F6;
  border-radius: 20px;
} 
.shop-tabes .header p{
  margin-bottom: 0;
  color: #010F1C;
  font-size: 16px;
}

.shop-tabes .header form select {
  font-size: 16px;
  background-color: #f6f6f7;
  height: 46px;
  color: #4f5158;
  margin-bottom: 0;
  border: 1px solid #CDC6C6;
  border-radius: 12px;
  padding: 4px 20px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url(imgs/download.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 10px center;
}
.shop-tabes .header form select option{
  background-color: #fff;
}

.shop-tabes .cards .card-body, .related-post .card-body{
  padding: 0 0 10px 0;
  overflow: hidden;
  box-shadow: 15px 15px 50px rgb(51 29 0 / 5%);
}

.shop-tabes .cards .card-body .onsale, .related-post .card-body .onsale{
  display: inline-block;
  border-radius: 4px;
  margin: 0 !important;
  top: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  background-color: #FF5D29;
  position: absolute;
  color: #fff;
  text-align: center;
  z-index: 22;
}

.shop-tabes .cards .card-body>a .origin, .related-post .card-body>a .origin {
  perspective: 120px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #dcdcdc;
}
/* .shop-tabes .cards .card-body>a .origin::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 22, 54, 0.2);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
} */
.shop-tabes .cards .card-body>a .origin img, .related-post .card-body>a .origin img{
  width: 216px;
  height: 216px;
  max-width: 100%;
}
.shop-tabes .cards .card-body>a .origin .front, .related-post .card-body>a .origin .front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.shop-tabes .cards .card-body>a img:hover{
  transform: translateZ(10px);
}

.shop-tabes .cards .card-body>a .origin .back{
  position: absolute;
  opacity: 0;
  filter: blur(0);
  top: 0;
  left: 0;
  right: auto;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shop-tabes .cards .card-body>a .origin:hover .back{
  opacity: 1;
}

.shop-tabes .cards .card-body .quick-box ,.related-post .card-body .quick-box{
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.shop-tabes .cards .card-body .quick-box {
  top: 14%;
}
.related-post .card-body .quick-box{
  top: 20%;
}
.shop-tabes .cards .card-body .quick-box a, .related-post .card-body .quick-box a{
  display: inline-block;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #E80000;
  border-radius: 6px;
  margin: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.shop-tabes .cards .card-body .quick-box a:hover, .related-post .card-body .quick-box a:hover{
  background-color: #E80000;
  color: #fff;
}

.shop-tabes .cards .card-body .quick-box .tooltip{
  position: absolute ;
  display: inline-block;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  /* opacity: 0; */
  /* visibility: hidden; */
  background: #010F1C;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) { 
  .shop-tabes .cards .card-body .quick-box{
    top: 9%;
  }
  .related-post .card-body .quick-box{
    top: 18%;
  }
 }
@media (max-width: 992px) { 
  .shop-tabes .cards .card-body .quick-box{
    top: 17%;
  }
  .related-post .card-body .quick-box{
    top: 26%;
  }
}
@media (max-width: 576px) { 
  .shop-tabes .cards .card-body .quick-box{
    top: 18%;
  }
  .related-post .card-body .quick-box{
    top: 27%;
  }
 }



      /* *************************************end shop page************************************** */



      /* *************************************start product details page************************************ */



                                              /* start product */
.product{
  padding: 100px 0 0 0;
}
.product .box{
  width: 100%;
  position: relative;
}
.product .box .onsale{
  display: inline-block;
  border-radius: 4px;
  margin: 0 !important;
  top: 20px ;
  left: 20px ;
  font-size: 14px;
  line-height: 1;
  padding: 6px 10px;
  background-color: #FF5D29;
  position: absolute;
  color: #fff;
  text-align: center;
  z-index: 22;
}
.product .box a{
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.product .box>a>img{
  max-width: 100%;
  height: 100%;
  max-height: 575px;
  background-color: #dcdcdc;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.product .box ul.small-items{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.product .box ul.small-items li{
  display: inline-block;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s linear;
}
.product .box ul.small-items li:not(:last-of-type){
  margin-right: 15px;
}
.product .box ul.small-items li a{
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.product .box ul.small-items li>a>img{
  width: 100%;
  height: auto;
  max-width: 160px;
  max-height: 160px;
  border-radius: 10px;
  opacity: 0.9;
  transition: all 0.2s linear;
}
.product .box ul.small-items li.active{
  border: 2px solid #E80000;
}
.product .box ul.small-items li.active a img{
  opacity: 1;
}
.product .summary{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 30px 0 0 30px;
}
.product .summary h1{
  font-size: 40px;
  font-family: 'Rubik', sans-serif;
  width: 100%;
}
.product .summary .stars{
  margin: 20px 0;
  width: 100%;
}
.product .summary .price{
  width: 100%;
}
.product .summary .price del{
  font-size: 15px;
  color: rgba(251, 173, 65, 1);
  font-family: "Karla", Sans-serif;
  font-weight: 500;
}
.product .summary .price p.disc{
  font-size: 22px;
  color: rgba(232, 0, 0, 1);
  font-weight: bolder;
  margin: 0 0 0 10px;
  display: inline-block;
  font-family: "Rubik", sans-serif;
}

.product .summary .mid-content{
  padding: 25px 0;
  margin: 20px 0;
  border-top: 1px solid  #eee;
  border-bottom: 1px solid  #eee;
  width: 100%;
}
.product .summary .mid-content p{
  width: 100%;
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
}
.product .summary .mid-content ul.details{
  margin: 20px 0;
}
.product .summary .mid-content ul.details li{
  color: rgba(41, 5, 5, 1);
  font-family: 'Karla', sans-serif;
  font-size: 14px;
}
.product .summary .mid-content ul.details li:first-of-type{
  margin-bottom: 10px;
}

.product .summary .mid-content ul.details li span{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(232, 0, 0, 1);
  margin-right: 7px;
}
.product .summary .mid-content .order{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.product .summary .mid-content .order .btn{
  width: 145px;
  height: 46px;
  color: #fff;
  background: #E80000;
  border: 2px solid #E80000;
  border-radius: 30px;
  padding: 6px 33px;
  margin: 0 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.product .summary .mid-content .order .btn a{
  text-decoration: none;
  transition: all 0.4s ease-in-out; 
  color: #fff; 
  font-size: 15px;
  font-weight: 500;
  font-family: "Karla", Sans-serif;
}
.product .summary .mid-content .order .btn:hover{
  background-color: #fff;
  box-shadow: none;
}
.product .summary .mid-content .order .btn:hover a{
  color: #E80000;
}

.product .summary .mid-content ul.info{
  width: 100%;
}
.product .summary ul.info li:not(:last-of-type){
  margin-bottom: 10px;
}
.product .summary ul.info li p{
  margin: 0;
  color: rgba(41, 5, 5, 1);
  font-size: 16px;
  font-family: "Rubik", Sans-serif;
}
.product .summary ul.info li p span{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;

}

@media ( max-width: 1200px ) and ( min-width: 768px ){ 
  .product .summary{
    padding: 0;
  }
 }
@media ( max-width: 992px ) and ( min-width: 768px ){ 
  .product .box{
    padding-top: 50px;
  }
 }
                                              /* end product */

                                              /* start describtion */
.describtion{
  margin-top: 40px;
}                                       
.describtion .box{
  padding: 0px 0 60px 0;
  border-bottom: 1px solid #f5f5f5;
  text-align: center;
  min-height: 273px;
}

.describtion .box ul.switch{
  margin: 0 auto 30px auto;
  padding: 20px 10px;
  border: 1px solid #E6E8EB;
  border-radius: 45px;
  text-align: center;
  width: max-content;
}
.describtion .box ul.switch li{
  display: inline-block;
  transition: all 0.3s linear;
}
.describtion .box ul.switch li a{
  text-decoration: none;
  color: #010F1C;
  padding: 15px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-family: "Karla", Sans-serif;
  transition: all 0.3s linear;
}
.describtion .box ul.switch li.active a{
  background-color: rgba(251, 173, 65, 1);
  color: #fff;
}

.describtion .box .content{
  text-align: left;
}
.describtion .box .content #desc-content{
  transition: all 0.3s linear;
}
.describtion .box .content #desc-content h2{
  font-size: 20px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  margin-bottom: 25px;
}
.describtion .box .content #desc-content p{
  width: 90%;
  color: rgba(58, 58, 58, 0.9 );
  font-size: 16px;
  font-family: "Karla", Sans-serif;
}

.describtion .box .content #review-content{
  transition: all 0.6s linear;
}
.describtion .box .content #review-content h2{
  font-size: 20px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  margin-bottom: 25px;
}
.describtion .box .content #review-content p{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
}
.describtion .box .content #review-content span{
  display: block;
  margin-bottom: 5px;
  color: #010F1C;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Karla', sans-serif;
}
.describtion .box .content #review-content input:not([type="checkbox"]){
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 2px solid #F5F5F5;
  color: rgb(72, 72, 72);
  font-weight: 400;
  outline: 0;
  border-radius: 6px;
  background-color: #F5F5F5;
  font-size: 15px;
  transition: all 0.3s linear;
}
.describtion .box .content #review-content input:not([type="checkbox"]):focus{
  border: 2px solid rgb(232,0,0);
}

.describtion .box .content #review-content .rating{
  width: 100%;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.describtion .box .content #review-content .rating ul.stars{
  margin-left: 10px;
}
.describtion .box .content #review-content .rating ul.stars li{
  display: inline-block;
}
.describtion .box .content #review-content .rating ul.stars li:not(:first-of-type){
  margin-left: -5px;
}
.describtion .box .content #review-content .rating ul.stars li a{
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease-in-out;
}
.describtion .box .content #review-content .rating ul.stars li a i{
  font-size: 20px;
}
.describtion .box .content #review-content .rating ul.stars li a:hover{
  color: rgba(251, 173, 65, 1);
}

.describtion .box .content #review-content textarea#comment{
  width: 100%;
  height: 120px;
  background-color: #f4f5f7;
  margin-bottom: 20px;
  margin-top: 10px;
  border: 2px solid #F5F5F5;
  outline: none;
  font-weight: 400;
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  color: rgb(72, 72, 72);
  font-family: "Karla", sans-serif;
  transition: all 0.3s linear;
}

.describtion .box .content #review-content input[type="checkbox"]{
  appearance: none;
}
.describtion .box .content #review-content label.savedata{
  position: relative;
  cursor: pointer;
}
.describtion .box .content #review-content label.savedata::before{
  content: "";
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(58, 58, 58, 0.2);
  border-radius: 2px;
  margin-right: 15px;
  top: 2px;
  cursor: pointer;
}
.describtion .box .content #review-content input[type="checkbox"]:checked + label::before{
  background-color: rgba(232, 0, 0, 1);
  border: 2px solid rgba(232, 0, 0, 1);
}
.describtion .box .content #review-content input[type="checkbox"]:checked + label::after{
  font-family: boxicons!important;
  content: "\ea41";
  position: absolute;
  color: #fff;
  font-size: 17px;
  top: -1px;
  left: -1px;
}

.describtion .box .content #review-content input[type="submit"]{
  width: 200px;
  background-color:rgba(232, 0, 0, 1);
  color: #fff;
  padding: 11px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  font-weight: 500px;
  margin-top: 20px;
  outline: 0;
  border: 2px solid rgba(232, 0, 0, 1);
  transition: all 0.3s ease-in-out;
}
.describtion .box .content #review-content input[type="submit"]:hover{
  background-color: transparent;
  color: rgba(232, 0, 0, 1);
}
@media (max-width: 576px) { 
  .describtion .box{
    min-height: 321px;
  }
 }

                                              /* end describtion */

                                              /* start related-post */
.related-post{
  padding: 60px 0;
  text-align: center;
}
.related-post h2{
  font-size: 28px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  margin-bottom: 50px;
}
                                              /* end related-post  */



      /* ***************************************end product details page************************************** */



      /* ***************************************start blog page************************************** */


.blog {
  padding: 90px 0;
}
.blog .container{
  padding: 0;
}
.blog .box{
  margin-bottom: 60px;
}
.blog .box a.food-img{
  text-decoration: none;
  width: 100%;
}
.blog .box a.food-img img{
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

.blog .box .info{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 15px 0;
}
.blog .box .info p{
  margin: 0;
}
.blog .box .info p:not(:last-of-type) {
  margin-right: 40px;
}
.blog .box .info p i{
  color: rgba(232,0,0,1);
  margin-right: 7px;
  vertical-align: baseline;
}
.blog .box .info p a{
  text-decoration: none;
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  transition: all 0.3s ease-in-out;
}
.blog .box .info p a:hover{
  color: rgba(232,0,0,1);
}

.blog .box a.food-desc{
  text-decoration: none;
  display: block;
  color: rgba(41, 5, 5, 1);
  font-family: 'Rubik', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin: 20px 0;
  width: 100%;
  text-align: left;
  line-height: 1.3;
  transition: all 0.3s ease-in-out;
}
.blog .box a.food-desc:hover{
  color: rgba(232,0,0,1);
}

.blog .box a.read{
  text-decoration: none;
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.blog .box a.read:hover{
  color: rgba(232,0,0,1);
}
.blog .box a.read i{
  font-size: 20px;
  margin-left: 5px;
  font-weight: 700;
}




.blog .brief{
  width: 100%;
}
.blog .brief .search-box input{
  width: 100%;
  height: 55px;
  color: rgba(58, 58, 58, 1);
  background-color: #fff;
  border: 1px solid rgba(58, 58, 58, 0.2);
  border-radius: 30px;
  outline: 0;
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  padding: 20px 25px;
}
.blog .brief .search-box a{
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 45px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(5, 120, 5, 1);
  color: #fff;
  font-size: 20px;
}

.blog .brief .search-box,.blog .brief .cat-box ,.blog .brief .post-box,.blog .brief .tag-box,
.blog .brief .download-box{
  padding: 30px;
  background-color: #F6F6F6;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 40px;
}
.blog .brief .search-box{
  position: relative;
}

.blog .brief .cat-box h3,.blog .brief .post-box h3,.blog .brief .tag-box h3{
  color: rgba(41, 5, 5, 1);
  font-size: 18px;
  text-align: left;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Rubik', sans-serif;
}
.blog .brief .cat-box ul {
  width: 100%;
}
.blog .brief .cat-box ul li{
  margin-bottom: 20px;
  width: 100%;
}
.blog .brief .cat-box ul li p{
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
.blog .brief .cat-box ul li p a{
  text-decoration: none;
  font-size: 18px;
  color: rgba(58, 58, 58, 1);
  font-family: 'Karla', sans-serif;
  min-width: 80px;
  transition: all 0.3s ease-in-out;
}
.blog .brief .cat-box ul li p a:hover{
  color: rgb(232,0,0);
}
.blog .brief .cat-box ul li p span{
  font-size: 18px;
  color: rgba(58, 58, 58, 1);
  display: inline-block;
  vertical-align: middle;
}


.blog .brief .post-box ul li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
.blog .brief .post-box ul li:not(:last-of-type) {
  margin-bottom: 20px;
}

.blog .brief .post-box ul li a.img img{
  max-width: 65px;
  max-height: 65px;
  border-radius: 10px;
}
.blog .brief .post-box ul li p{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 0 12px;
}

.blog .brief .post-box ul li a{
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.blog .brief .post-box ul li p a.title{
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
  font-family: 'Karla', sans-serif;
}
.blog .brief .post-box ul li p a.read{
  color: rgba(69, 69, 69, 1);
  font-size: 14px;
  font-family: 'Karla', sans-serif;
}
.blog .brief .post-box ul li p a.read i{
  vertical-align: middle;
}
.blog .brief .post-box ul li p a:hover{
  color: rgb(232,0,0);
}

.blog .brief .tag-box .links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.blog .brief .tag-box .links a{
  text-decoration: none;
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  color: rgba(58, 58, 58, 1);
  background-color: transparent;
  padding: 9px 20px;
  border-radius: 40px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  transition: all 0.3s ease-in-out;
}
.blog .brief .tag-box .links a.space{
  margin-bottom: 10px;
}
.blog .brief .tag-box .links a:hover{
  color: #fff;
  background-color: rgba(232,0,0,1);
}


.blog .brief .download-box{
  background-image: url(imgs/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 80px 30px;
}
.blog .brief .download-box p{
  color: #E80000;
  font-family: "Amita", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.blog .brief .download-box h4{
  color: #3A3A3A;
  font-family: "Rubik", Sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 38px;
  width: 100%;
}

.blog .brief .download-box .app-btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.blog .brief .download-box .app-btn a{
  max-width: 210px;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgb(165, 165, 165);
  border-radius: 6px;
  display: inline-block;
  background-color: #000;
  text-align: left;
}
.blog .brief .download-box .app-btn a:first-of-type{
  padding: 5px 20px 5px 12px;
}
.blog .brief .download-box .app-btn a:last-of-type{
  padding: 5px 27px 5px 12px;
}
.blog .brief .download-box .app-btn a:hover .text p{
  color: rgba(232, 0, 0, 1);
}
.blog .brief .download-box .app-btn a .text{
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog .brief .download-box .app-btn a .text i{
  font-size: 20px;
  margin-right: 10px;
}
.blog .brief .download-box .app-btn a .text p{
  margin: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 100;
  line-height: 1;
  font-family: "Rubik", Sans-serif;
  transition: all 0.3s ease-in-out;
}
.blog .brief .download-box .app-btn a .text p span{
  line-height: 1.2;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
}

ul.pagination{
  margin: 20px 0;
}
ul.pagination li:not(:last-of-type){
  margin-right: 10px;
}
ul.pagination li a.page-link{
  color: rgb(63, 63, 63) !important;
  background-color: transparent !important;
  border: 1px solid rgba(112, 112, 112, 0.6) !important;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Karla', sans-serif;
  width: 35px;
  height: 35px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

ul.pagination li a.page-link:hover,ul.pagination li.active a{
  background-color: rgb(232,0,0) !important;
  color: #fff !important;
  border-color: rgb(232,0,0) !important;
}
ul.pagination li.disabled a{
  color: rgba(58, 58, 58, 0.5) !important;
}

@media (max-width: 1200px) { 

  .blog .brief .download-box .app-btn{
    justify-content: center;
  }
 }

 @media (max-width: 1200px) and ( min-width: 992px ){ 
  .blog .brief .download-box .app-btn a:first-of-type{
    margin-bottom: 10px;
  }
  .blog .images img{
    width: 200px;
  }
}

@media (max-width: 992px) { 
  .blog .brief{
    margin-top: 60px;
  }
  .blog .brief .post-box ul li p a.title{
    width: 100%;
  }
  .blog .brief .download-box .app-btn a:first-of-type{
    margin-right: 10px;
  }
 }

 @media (max-width: 768px) { 
  .blog .brief .tag-box .links{
    justify-content: space-evenly;
  }
  }

@media (max-width: 576px) { 
  .blog .container{
    padding: 0 15px;
  }
  .blog .box a.food-desc{
    font-size: 32px;
  }
 }


 
      /* ***************************************end blog page************************************** */



      /* ***************************************start blog-details page************************************** */



.blog .blog-details p.paragraph {
  margin: 0;
  color: rgba(58, 58, 58, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
.blog .blog-details p.margin{
  margin-bottom: 20px;
}

.blog .blog-details .images{
  margin: 60px 0 40px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.blog .blog-details .images img{
  max-width: 100%;
  height: auto;
  width: 360px;
  border-radius: 30px;
}
.blog .blog-details .images img:first-of-type{
  margin-right: 30px;
}

.blog .blog-details h3.title{
  color: rgba(41, 5, 5, 1);
  font-size: 20px;
  font-weight: 800;
  font-family: "Rubik", Sans-serif;
  margin-bottom: 20px;
}

.blog .blog-details .advice{
  background-color: #F6F6F6;
  border-radius: 20px;
  width: 100%;
  padding: 40px 30px 40px 40px;
  margin: 40px 0 30px 0;
}
.blog .blog-details .advice h2{
  width: 95%;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Rubik", Sans-serif;
  margin-bottom: 20px;
  color: rgb(60, 60, 60);
}
.blog .blog-details .advice span{
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgb(102, 102, 102);
}

.blog .blog-details .links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 20px 0;
  padding: 20px 0;
}
.blog .blog-details .links ul li{
  display: inline-block;
}
.blog .blog-details .links ul li:not(:last-of-type){
  margin-right: 10px;
}
.blog .blog-details .links ul.tags li a{
  text-decoration: none;
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  color: rgba(58, 58, 58, 1);
  background-color: transparent;
  padding: 10px 15px;
  border-radius: 40px;
  border: 1px solid rgba(112, 112, 112, 0.5);
  transition: all 0.3s ease-in-out;
}
.blog .blog-details .links ul.tags li a:hover{
  color: #fff;
  background-color: rgba(232,0,0,1);
}

.blog .blog-details .links ul.social li a{
  text-decoration: none;
  font-size: 20px;
  color: rgba(58, 58, 58, 1);
  transition: all 0.3s ease-in-out;
}
.blog .blog-details .links ul.social li a span{
  color: rgba(41, 5, 5, 1);
  font-size: 14px;
  font-weight: 800;
  font-family: 'Karla', sans-serif;
}
.blog .blog-details .links ul.social li a i{
  vertical-align: bottom;
}
.blog .blog-details .links ul.social li a span:hover{
  color: rgb(232,0,0);
}
.blog .blog-details .links ul.social li a:hover {
  color: rgb(232,0,0);
}

.blog .blog-details .auther{
  padding: 30px 0;
  border-top: 1px solid rgba(113, 113, 113, 0.4);
  border-bottom: 1px solid rgba(113, 113, 113, 0.4);
  margin: 25px 0 0px 0;
}
.blog .blog-details .auther .content{
  background-color: #F6F6F6;
  border-radius: 20px;
  width: 100%;
  padding: 40px 30px 40px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.blog .blog-details .auther .content img{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .blog-details .auther .content .info span{
  color: rgba(69, 69, 69, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
}
.blog .blog-details .auther .content .info h3{
  color: rgba(41, 5, 5, 1);
  font-size: 17px;
  font-family: "Rubik", Sans-serif;
  font-weight: 700;
  margin: 5px 0 10px 0;
}
.blog .blog-details .auther .content .info p{
  color: rgba(69, 69, 69, 1);
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  margin-bottom: 5px;
}

.blog .blog-details .auther .content .info ul li{
  display: inline-block;
}
.blog .blog-details .auther .content .info ul li:not(:last-of-type){
  margin-right: 10px;
}
.blog .blog-details .auther .content .info ul li a{
  text-decoration: none;
  font-size: 20px;
  color: rgba(58, 58, 58, 1);
  transition: all 0.3s ease-in-out;
}
.blog .blog-details .auther .content .info ul li a:hover{
  color: rgba(251, 173, 65, 1);
}

.blog .blog-details .comments-box{
  margin: 40px 0;
}
.blog .blog-details .comments-box h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: rgba(41, 5, 5, 1);
  font-family: "Rubik", Sans-serif;
  font-weight: 700;
}
.blog .blog-details .comments-box .content{
  margin: 30px 0 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.blog .blog-details .comments-box .content img{
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 20px;
}

.blog .blog-details .comments-box .content .comment{
  position: relative;
}
.blog .blog-details .comments-box .content .comment a{
  text-decoration: none;
  color: rgba(69, 69, 69, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  font-weight: 500;
  position: absolute;
  right: 20px;
  top: 15px;
  transition: all 0.3s ease-in-out;
}
.blog .blog-details .comments-box .content .comment a:hover{
  color: rgba(251, 173, 65, 1);
}
.blog .blog-details .comments-box .content .comment h3{
  color: rgba(41, 5, 5, 1);
  font-size: 17px;
  font-family: "Rubik", Sans-serif;
  font-weight: 700;
  margin: 0;
}
.blog .blog-details .comments-box .content .comment span{
  display: inline-block;
  color: rgba(69, 69, 69, 1);
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  margin: 5px 0 10px 0;
}
.blog .blog-details .comments-box .content .comment p{
  color: rgba(69, 69, 69, 1);
  font-size: 16px;
  font-family: 'Karla', sans-serif;
  margin: 0;
}

.blog .blog-details .comments-box .sec-content{
  padding: 25px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(58, 58, 58, 0.5);
  border-top: 1px solid rgba(58, 58, 58, 0.5);
}


.blog .reply-form h3{
  color: rgba(41, 5, 5, 1);
  font-size: 20px;
  font-weight: 800;
  font-family: "Rubik", Sans-serif;
}
.blog .reply-form form{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.blog .reply-form form input:not([type="submit"]){
  padding: 18px 30px;
  border-radius: 30px;
  border: none;
  outline: 1px solid rgba(69, 69, 69, 0.5);
  font-size: 15px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  background-color: rgba(248, 248, 248, 1);
  width: 48%;
  font-family: "Karla", sans-serif;
  transition: all 0.3s ease-in-out;
}
.blog .reply-form form input:first-of-type{
  margin-right: 20px;
}
.blog .reply-form form input:focus,.blog .reply-form form textarea:focus{
  outline: 3px solid rgba(4, 154, 68, 0.15);

}

.blog .reply-form form textarea{
  width: 100%;
  height: 110px;
  border-radius: 30px;
  margin: 25px 0;
  padding: 20px 30px;
  outline: 1px solid rgba(69, 69, 69, 0.5);
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: rgba(58, 58, 58, 1);
  background-color: rgba(248, 248, 248, 1);
  font-family: "Karla", sans-serif;
  transition: all 0.3s ease-in-out;
}
.blog .reply-form form input[type="submit"]{
  width: 170px;
  height: 60px;
  background-color: rgba(5, 120, 5, 1);
  color: #fff;
  padding: 10px 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  border: 2px solid rgba(5, 120, 5, 1);
  transition: all 0.3s ease-in-out;
}
.blog .reply-form form input[type="submit"]:hover{
  color: rgba(5, 120, 5, 1);
  background-color: #fff;
}


@media (max-width: 1200px) and ( min-width: 768px ){ 
  .blog .blog-details .images img{
    width: 300px;
  }
}

@media ( max-width: 992px ){ 
  .blog .blog-details .images {
    justify-content: center;
  }
}

@media ( max-width: 768px ){ 
  .blog .blog-details .images {
    flex-wrap: wrap;
  }
  .blog .blog-details .images img:first-of-type{
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .blog .blog-details .advice h2{
    width: 100%;
  }
}

@media ( max-width: 576px ){ 
  .blog .blog-details .advice h2{
    font-size: 22px;
  }
  .blog .blog-details .links{
    justify-content: center;
  }
  .blog .blog-details .links ul.tags{
    margin-bottom: 20px;
  }
}
@media ( max-width: 545px ){
  .blog .reply-form form input:not([type="submit"]){
    width: 100%;
  }
  .blog .reply-form form input[type="text"]{
    margin-right: 0;
    margin-bottom: 20px;
  }
}

      /* ***************************************end blog-details page************************************** */
