@import url(./bootstrap.min.css);
@import url(./bootstrap.min.css.map);
@import url(./all.min.css);
@import url(./owl.carousel.min.css);
@import url(./svg_icons.css);
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;500;600;700;800&display=swap');

:root {
  --main_bgColor: #ffffff;
  --btnColor: #1c9dab;
  --textColor: #040f21;
  --Secondary-color: #1c9dab;  
  --bgColor: #f7f7f7;
  --pragrafColor: #8e8d8d;
  --body_bgColor: #ffffff;
  --main_borderColor: 1px solid rgba(0, 0, 0, .125);
}

::-webkit-scrollbar {
  width: 10px;

}
a{
  color: var(--textColor);
}

::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--Secondary-color);
  border-radius: 5px;
  transition: all ease-in-out .3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--textColor);
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
ul{
    padding: 0;
}
img{
    width: 100%;
}
p{
  line-height: 1.8;
  color: var(--pragrafColor);
}
.logo{
  width: 200px !important;
}

/* top navbar */
.top_nav{
  height: 50px;
  background-image: linear-gradient(to right, #022340 0%, #1c9dab 100%);
  border-bottom: 1px solid #0f5159;
  display: flex;
  align-items: center;
  padding: 0 5%;
  justify-content: space-between;
}
.top_nav ul{
  display: flex;
  align-items: center;
  margin: 8px;
}
.top_nav .left_side a{
  color: var(--main_bgColor);
  transition: all ease-in .3s;
  margin: 0 10px ;
}
.top_nav a:hover , .top_nav svg:hover{
  color: var(--btnColor);
}
.top_nav ul li svg{
  transition: all ease-in .3s;
  color: var(--main_bgColor);
  margin: 0 5px;
  font-size: 20px;
}
.top_nav .nav_cart{
  position: relative;
  margin-right: 20px;
}
.top_nav .nav_cart svg{
  color: var(--main_bgColor);
  font-size: 20px;
  cursor: pointer;
}
.top_nav .nav_cart span{
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  bottom: -10px;
  z-index: 55555;
  left: 0px;
  color: var(--main_bgColor);
  background-color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* navbar */
.navbar {
  height: 75px;
  width: 100%;
  background-color: transparent;
  padding: 0 5%;  
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 122121212;
}

.navbar  .nav-header {
  width: 20%;

}

.navbar  .nav-header  .nav-logo {
  display: inline-block;
  font-size: 22px;
  color: #fff;
}

.navbar .nav-logo img {
  width: 70%  !important;
}

.navbar .nav-btn {
  display: none;
}

.navbar  .nav-links {
    margin-right: auto;
    font-size: 18px;
}

.navbar  .nav-links  a , .navbar .nav-links li{
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #efefef;
  transition: all ease-in .3s;
  cursor: pointer;
}

.navbar  .nav-links  a:hover ,
.navbar .nav-links li:hover{
    color: var(--btnColor);
}

.navbar  #nav-check {
  display: none;
}


.services_menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s !important;
  display: flex;
  flex-direction: column;
  left: 20px;
  width: 300px !important;
}

.services_nav_tranz .services_menu {
  opacity: 1;
  visibility: visible;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.services_nav_tranz svg {
  transform: rotate(90deg);
  margin-right: 10px;
}

.services_menu li {
  background-color: var(--bgColor);
  box-shadow: 0 20px 40px rgb(0 0 0 / 25%);

  padding: 0 20px;
  width: 100%;
}

.services_menu li a {
  color: #000 !important;
}

.services_menu li a:hover {
  color: var(--btnColor) !important;
}

.fix {
  background-image: linear-gradient(to right, #022340 0%, #1c9dab 100%);
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 656665;
  left: 0;
  height: 70px !important;
  transition: all .5s linear;
  animation-name: tranz;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  padding: 0 5%;

}

@keyframes tranz {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}


@media (max-width:600px) {
  .navbar > .nav-btn {
    display: inline-block;
    position: absolute;
    left: 10px;
    top: calc(50% - 25px);
  }
  .navbar>.nav-header>.nav-title{
    margin-right: auto;
  }
  .navbar > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .navbar > .nav-btn > label:hover,.navbar  #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .navbar > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  .navbar > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .navbar > .nav-links > a {
    display: block;
    width: 100%;
  }
  .navbar > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .navbar > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
/* S1_home home page */
.S1_home{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #022340 0%,
      #1c9dab 100%);
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}
.S1_home::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/back-slide.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.S1_home .content{
    z-index: 1555555;
    display: flex;
    justify-content: space-between;
}
.S1_home .content img{
  border-radius: 10px;
  padding: 25px;
}
.S1_home .content h1{
    color: #fff;
    margin: 30px 0;
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    font-size: 42px;
    font-weight: 600;
}
.S1_home .content p{
    margin-bottom: 50px !important;
    color: #ccc;
}
.S1_home .content a{
    padding: 10px 30px;
    color: #000;
    border-radius: 5px;
    background-color: #fff;
    transition: all ease-in .3s;
    z-index: 555;
    display: block;
    width: 200px;
    text-align: center;
}

.S1_home .content a:hover{
    background-color: #f5f5f5   ;
}
.S1_home .owl-nav {
  position: absolute;
  top: 0px;
  right: 0px;
}

 .owl-nav .owl-prev {
  background-color: var(--main_bgColor);
  border-radius: 20%;
  padding: 5px 9px;
  margin-left: 10px;
  transition: all ease-in-out .3s;
  transition: all ease-in .3s;
}
 .owl-nav .owl-prev:hover , .S1_home .owl-nav .owl-next:hover{
  background-color: var(--textColor);
  color: var(--main_bgColor);
}
 .owl-nav .owl-next {
  background-color: var(--main_bgColor);
  border-radius: 20%;
  padding: 5px 9px;
  transition: all ease-in-out .3s;
}

/* S2homee */
.S2_home{
   padding: 70px 0;
  display: flex;
  justify-content: center;  
}
.S2_home .rowsa{
  display: flex;
  justify-content: center;
}

.S2_home .box{
  text-align: center;
}
.S2_home svg {
    font-size: 40px;
    color: var(--btnColor);
    margin-bottom: 20px ;
}
.S2_home h3{
  margin-bottom: 20px;
  color: var(--textColor);
  font-weight: 600;
  font-size: 24px;
  transition: all ease-in .3s;
}
.S2_home h3:hover{
  color: var(--btnColor);
}
.S2_home .box p{
  line-height: 1.8;
  color: var(--pragrafColor);
}
.intro{
  text-align: center;
  margin-bottom: 70px;

}
.intro h3{
  color: var(--textColor);
}
.S3_home{
  padding: 70px 0;
  background-color: var(--bgColor);
  position: relative;
}
.S3_home .nav{
  display: flex;
  align-items: center;
  justify-content: center;

}
.S3_home .nav button{
    margin: 10px 10px;
    border: var(--main_borderColor) ;
    background-color: var(--bgColor) ;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: all ease-in .3s;

}
.S3_home .nav  .active , .S3_home .nav li:hover button{
  background-color: var(--btnColor);
  color: var(--main_bgColor);    
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled{
  display: block;
  
}
.owl-carousel .owl-dots.disabled{
  background-color: #1c9dab;
  position: absolute;
  bottom: 0;
  right: 50%;
}



.S3_home .owl-nav .owl-prev {
  background-color: var(--btnColor);
  border-radius: 20%;
  padding: 5px 9px;
  margin-left: 10px;
  color: var(--main_bgColor);
  transition: all ease-in-out .3s;
  transition: all ease-in .3s;
  position: absolute;
  top: 50%;
  right: -50px;
}

.S3_home .owl-nav .owl-prev:hover,
.S3_home .S1_home .owl-nav .owl-next:hover {
  background-color: var(--textColor);
  color: var(--main_bgColor);
}

.S3_home .owl-nav .owl-next {
  background-color: var(--btnColor);
  border-radius: 20%;
  padding: 5px 9px;
  color: var(--main_bgColor);
  transition: all ease-in-out .3s;
  position: absolute;
  top: 49%; 
  left: -50px;
}



.Ptoducts .box{
  padding: 25px;
  text-align: center;
}
.Ptoducts .box img{
  border-radius: 5px;
  margin-bottom: 20px;
}
.Ptoducts .box a{
  color: var(--textColor);
  font-size: 16px;
  transition: all ease-in .3s;
  display:block;
}
.Ptoducts .box h4{

}
.Ptoducts .box a:hover{
  color: var(--btnColor);
}
.Ptoducts .box span{
  margin: 20px 5px ;
  color: var(--btnColor);
height: 30px  !important;
  font-size: 12px;
  
}
.Ptoducts .box del{
  color: rgb(148, 3, 3);
  font-size: 12px;

}
.Ptoducts .box .add-to-cart{
  display: block;
  margin: 20px 0;
  width: 100%;
  background-color: #11BA17;
  color: var(--main_bgColor);
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  transition: all ease-in .3s;
  overflow: hidden;
  text-align: center;
}
.Ptoducts .box .add-to-cart svg{
  margin-right: 10px;
}
.Ptoducts .box .add-to-cart:hover svg{
    animation-name: cart_transition;
      animation-duration: .3s;
      animation-iteration-count: 1;
      animation-timing-function: linear;
      animation-fill-mode: forwards;

}
.Ptoducts .box .add-to-cart:hover {
  color: var(--main_bgColor);
}


.Pagination{
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Pagination h4{
  padding: 15px !important;
  border-radius: 5px  ;
  border: var(--main_borderColor);
  margin: 0 10px;
  font-size: 20px;
  transition: all ease-in .3s;
}
.Pagination h4:hover{
  background-color: var(--textColor);
  color: var(--main_bgColor);
}
.Pagination .active{
    background-color: var(--textColor);
    color: var(--main_bgColor);
}
.sort_Products{
  width: 400px;
  display: flex;
}
.sort_Products select {
    font-size: 16px !important;
    margin-left: 10px;
}
.sort_Products select:focus{
  box-shadow: none;
}
.sort_Products select option:hover,
 .sort_Products select option:focus,
 .sort_Products select option:active,
.sort_Products select option:checked {
  background: linear-gradient(#5A2569, #5A2569) !important;
}
.sort_Products option:checked{
  background-color: var(--bgColor) !important;
}
.search_bar{
  text-align: center;
  margin-bottom: 20px;
}
.search_bar input{
  width: 50%;
  height: 40px;
  border: var(--main_borderColor);
  border-radius: 5px;
  padding: 0 25px;
  background-color: var(--main_bgColor);
}
.search_bar button{
  border: var(--main_borderColor);
  border-radius: 5px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  height: 40px;
  padding: 0 20px;
}
@keyframes cart_transition {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}
.Ptoducts .box button svg {
  padding-right: 20px;
}
.offer{
  position: relative;
}
.offer .box{
  position:sticky;
  top: 120px !important;
}
.offer .box_img{
  text-align: center;
  margin: 10px 0;
}
.offer .box_img  h5{
  margin: 10px 0;
}
.offer .box_img a {
  color: var(--btnColor);
}
.offer .box h3{
  margin-bottom: 30px;
  color: var(--btnColor);
}
.offer .box  h5{
  margin: 20px 0;
  font-size: 16px;
}
/* S4_home */
.S4_home{
  padding: 70px 0;
  height: 600px;
  background-image: url(../img/S4_home_img.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  background-attachment: fixed;
}
.S4_home::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #333333b0;
}
.S4_home .box{
  z-index: 5;
}
.S4_home .box span{
  margin: 0 10px ;
  color: var(--btnColor);
  font-size: 20px;
}
.S4_home .box del{
  color: rgb(255, 0, 0);
}
.S4_home .box h3{
  margin: 40px 0;
  color: var(--main_bgColor);
  font-size: 34px;
  font-weight: 800;
}
.S4_home .box h5{
  margin-top: 70px;
}
.S4_home .box a{
  padding: 10px 50px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  border-radius: 5px;
  border: none;
}

/* footer */
.footer{
  padding-top: 70px;
  background-image: linear-gradient(to right, #022340 0%, #1c9dab 100%);
}
.footer h3{
  margin-bottom: 30px;
  color: #fff;
}
.footer a{
  color: var(--main_bgColor);
  font-size: 20px;
  transition: all ease-in .3s;
}
.footer .links a:hover{
  margin-right: 10px;
} 
.footer li {
  margin: 20px 0;
  color: var(--main_bgColor);
}
.footer .contact svg{
  margin-left: 20px;
}
.footer .sochial {
  display: flex;
  margin-top: 20px;
}
 .footer .sochial svg{
  margin-left: 7px;
}
 .footer p{
  color: var(--main_bgColor);
 }
 .last_foot{
  padding-top: 20px;
  border-top: 1px solid #000;

 }
 .last_foot ul{
  display: flex;
  margin: 0 !important;
  align-items: center;
  justify-content: space-between;
 }
 .last_foot ul li{
  color: var(--textColor);
  font-size: 18px;
 }
 .last_foot ul li a{
  color: var(--bgColor);
 }
/* intro_pages */
.intro_pages{
  height: 500px;
  background-image: url(../img/intro_pages_bg.jpeg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.intro_pages::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #333333c5;
}
.intro_pages h1{
  font-size: 72px;
  color: var(--main_bgColor);
  z-index: 5;
}
.intro_pages p{
  color: #ccc;
  margin-top: 20px;
  z-index: 5;
}
.intro_pages ul{
  display: flex;
  z-index: 5;
  margin-bottom: 20px;
}
.intro_pages ul li{
  color: var(--main_bgColor);
  margin: 0 10px;
  font-size: 20px;
}
.intro_pages ul li a{
  color: var(--main_bgColor);
}
.intro_pages .offer_btn{
  padding:10px 30px;
  border-radius: 5px;
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  transition: all ease-in .3s;
  z-index: 555;
}
.intro_pages .offer_btn:hover{
  background-color: var(--body_bgColor);
  color: var(--btnColor);
}
/* S1_products */
.S1_products{
  padding: 70px 0;
  background-color: var(--bgColor);
}

/* filters */
.S1_products .filters {
  padding: 25px 0;
  position: sticky;
  left: 0;
  top: 50px;
}

.filters h4 {
  font-size: 24px;
  color: #000;
  padding: 20px 0;
}

.filters label {
  color: #000;
}

.filters .filter_dy_catt,
.filters .sorting {
  padding: 20px;
  border: solid 1px #000;
  border-radius: 5px;
  margin: 20px 0;
}

.filters input {
  background-color: #000 !important;
  margin: 10px 0;
  margin-left: 20px;
  margin-bottom: 10px
}

.filters input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: '';
  display: inline-block;
  visibility: visible;
  transition: all ease-in-out .3s;
  border: 2px solid white;
}

.filters input[type='radio']:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  top: 0px;
  left: 1px;
  position: relative;
  background-color: #ffa500;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}
/* single product */
.S1_Single_product{
  padding: 70px 0;
}
.S1_Single_product .box{
  text-align: right;
}
.S1_Single_product .box h5{
  margin: 10px 0;
}
.S1_Single_product .box p{
  margin-top: 20px;
}
.S1_Single_product .box img , .S1_Single_product .box video{
  width: 100%;
  height: 400px;
}
.S1_Single_product .box .owl-nav .owl-prev , .S1_Single_product .box .owl-nav .owl-next {
  background: var(--textColor);
  color: var(--main_bgColor);
}
.S1_Single_product .links ul{
  display: flex;
}
.S1_Single_product .links ul li{
  margin: 0 10px ;
  
}
.S1_Single_product .links ul li a{
  color: var(--btnColor);
  transition: all ease-in .3s;
}
.S1_Single_product .links ul li a:hover{
  opacity: .7;
}

/* comments */
.comments {
  
  padding: 70px 0;
}

 .comments ul {
  display: flex;

}
 .comments .box{
width: 50%;
}
 .comments ul img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid var(--Secondary-color);
}

 .comments ul li {
  margin-left: 20px;
}

 .comments ul li span {
  color: var(--Secondary-color);
}
 .comments ul li h4 {
  margin: 5px 0;
  padding: 0;
}

 .comments ul li p {
  color: var(--P-color);
}

 .comments .form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

 .comments .form input {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  height: 40px;
  border: var(--main_borderColor);
  padding: 10px;
}

 .comments .form textarea {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  border: var(--main_borderColor);
  padding: 10px;
}

 .comments .form button {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: var(--textColor);
  background-color: var(--btnColor);
  margin-top: 20px;
}
.LogIn{
  padding: 70px 0;
}
.LogIn .form{
  padding: 25px ;
  text-align: center;
  width: 50%;
  margin: auto;
  background-color: var(--bgColor);
  border-radius: 5px;
}
.LogIn .form input{
  width: 100%;
  height: 40px;
  margin: 20px 0;
  padding: 20px;
  border: var(--main_borderColor);
  border-radius: 5px;
}
.LogIn .form button{
  width: 100%;
  border: none;
  border-radius: 5px;
  margin-top: 20px ;
  background-color: var(--btnColor);
  height: 40px;
}

/* contact */
.S2_contact {
  padding: 70px 0;
}

.S2_contact .form {
  padding: 25px;
  background-color: var(--bgColor);
  margin: auto;
  border-radius: 5px;

}

.S2_contact .form input {
  width: 100%;
  border: var(--main_borderColor);
  height: 40px;
  border-radius: 5px !important;
  color: var(--P-color);
}

.S2_contact .form label {
  color: var(--P-color);
  margin-bottom: 10px;
  margin-top: 20px !important;
}

.S2_contact .form textarea {
  width: 100%;
  border: var(--main_borderColor);
  border-radius: 5px;
}

.S2_contact .form button {
  padding: 10px 30px;
  background-color: var(--Secondary-color);
  border: none;
  border-radius: 5px;
  color: var(--main_bgColor);
  margin-top: 20px !important;
}

.S2_contact .Contact_numpers ul {
  display: flex;

}

.S2_contact .Contact_numpers ul li {
  margin: 20px 5px;

}

.S2_contact .Contact_numpers ul li a {
  margin: 0 10px;
  color: var(--Secondary-text-color);
  font-size: 25px;
}

.S2_contact svg {
  color: var(--Secondary-color);
  font-size: 20px;
}

.S2_contact .media {
  margin-top: 20px;
}

.S2_contact .media svg {
  font-size: 30px;
}

/* S1_about */
.S1_about{
  padding: 70px 0;
}
.S1_about .box{
  padding: 25px;
  
}
.S1_about img{
  border-radius: 5px;
  width: 70%;
}
.S1_about .box h3{
  font-size: 32px;
  padding-bottom: 50px;
}
/* S2_about */
.S2_about{
  padding: 70px 0;
  background-color: var(--bgColor);

}
.S2_about .box{
  text-align: center  ;
  margin: 20px 0;
}
.S2_about h4{
  color: var(--textColor);
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}
/* blogs */




/* S1_blog */
.blog video{
  height: 400px;
}
.blog img{
  height: 200px;
  border-radius: 5px;
  border: 5px solid var(--btnColor);
}
.blog .box{
  text-align: right;
}
.blog .box p{
  margin-top: 20px;
}
.blog .box span{
  color: var(--btnColor);
}
.blog .box span svg{
  margin: 0 5px;
}
.blog .box a{
  color: var(--textColor);
  transition: all ease-in .3s;
}
.blog .box img{
  height: 250px !important;
}
.blog .box h4{
  margin-bottom: 30px;
}
.blog .box a:hover{
  color: var(--btnColor);
}
/* Single_blog */
.Single_blog {
  padding: 70px 0;
}

.Single_blog .right_side {
  padding: 25px;
}

.Single_blog .right_side img {
  padding: 25px;
  border-radius: 50px;
}

.Single_blog .right_side .admin {
  display: flex;
  margin-bottom: 40px;
}

.Single_blog .right_side .admin img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--btnColor);
  padding: 0;
}

.Single_blog .right_side .admin li {
  margin-left: 20px;
}

.Single_blog .right_side .admin span {
  color: var(--Secondary-color);
}

.Single_blog h3 {
  font-size: 28px;
  margin: 20px 0;
  color: var(--textColor);
}

.Single_blog h4 {
  padding-top: 30px;
  font-size: 20px;
  color: var(--Secondary-color);
}

.Single_blog .left_side img {
  width: 100px !important;
  height: 100px;
  border-radius: 5px;
}

.Single_blog .left_side ul {
  display: flex;

}

.Single_blog .left_side ul li {
  margin-right: 30px;
}

.Single_blog .left_side ul li span {
  color: var(--Secondary-color);
}

.Single_blog .links ul {
  display: flex;
  align-items: center;
}

.Single_blog .links ul li {
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 5px;
  border: var(--main_borderColor);
  transition: all ease-in .3s;
}

.Single_blog .links ul li a {
  color: var(--Secondary-text-color);
  transition: all ease-in .3s;

}

.Single_blog .links ul li:hover {
  background-color: var(--Secondary-color);

}

.Single_blog .links ul li:hover a {
  color: var(--main_bgColor);
}

.Single_blog .comments {
  margin-top: 70px;
}

.Single_blog .comments ul {
  display: flex;

}

.Single_blog .comments ul img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid var(--Secondary-color);
}

.Single_blog .comments ul li {
  margin-left: 20px;
}

.Single_blog .comments ul li span {
  color: var(--Secondary-color);
}

.Single_blog .comments ul li h4 {
  margin: 5px 0;
  padding: 0;
}

.Single_blog .comments ul li p {
  color: var(--P-color);
}

.Single_blog .comments .form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.Single_blog .comments .form input {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  height: 40px;
  border: var(--main_borderColor);
  padding: 10px;
}

.Single_blog .comments .form textarea {
  border: none;
  margin: 10px 0;
  background-color: var(--bgColor);
  border-radius: 5px;
  border: var(--main_borderColor);
  padding: 10px;
}

.Single_blog .comments .form button {
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: var(--bgColor);
  background-color: var(--Secondary-color);
  margin-top: 20px;
}
/* offer */
.slider_4 .item img ,.slider_4 .item video{
  height: 200px;
  width: 200px;
}
.offer .box{
  padding: 0;
}

/* //////////////// */
/* cart */
.cart{
  padding: 70px 0;
}
.cart button{
  width: 100%;
  height: 40px;
  background-color: var(--btnColor);
  border-radius: 5px;
  border: none;
  color: var(--main_bgColor);
}
.supTotal {
  padding: 70px 0;
  background-color: var(--bgColor);
} 
.supTotal h3{
  margin-bottom: 20px;
  color: var(--textColor);
}
.supTotal a{
  background-color: var(--btnColor);
  color: var(--main_bgColor);
  padding: 10px 30px;
  border-radius: 5px;

}
.supTotal table{
  margin-bottom: 40px;
}
/* checkout */
.checkout{
  padding: 70px 0;

}
.checkout h3{
  color: var(--textColor);
  margin-bottom: 20px ;
}
.checkout button , .checkout a{
  border: none;
  border-radius: 5px;
  background-color: var(--btnColor);
  padding: 10px 30px;
  color: var(--main_bgColor);
}

 /* media */
 @media screen and (min-width:1px) and (max-width:767px) {
     .Single_blog .links ul li a {
  display: block;
  width:200px;
  text-align:center;
}
  h1{
    font-size: 22px !important;
  }
  h3{
    font-size: 20px !important;
    font-weight: bold;
  }
.S1_home .content {
  width: 100%;

}
.S1_home .content h1{
  font-size: 28px;
}
.box{
  margin: 20px 0;
}
.S3_home .catt{
  flex-direction: column;
}
.S3_home .catt  li{
  width: 100%;
}
.nav-header{
  width: 60% !important;
}
.links ul{
  flex-direction: column;
}
.S2_home .rowsa {
  flex-direction: column;
}
.top_nav .sochial  {
  display: none;
}
.top_nav .left_side .links a{
  font-size: 15px;
}
.S1_home img{
  padding: 50px !important;
}
.S1_home .owl-nav {
  position: absolute;
  top: 95% !important;
  right: 75% !important;
}
.S3_home .owl-nav .owl-next  {
  left: 0;
  top: 0;
}
.S3_home .owl-nav .owl-prev{
  right: 0;
  top: 0;
}
.sort_Products{
  display: flex;
  width: 100%;
  flex-direction: column;
}
.Pagination h4 {
  padding: 5px;
}
.search_bar input{
  width: 100% ;
}
.search_bar button{
  width: 100%;
  margin-top: 10px;
}
.S3_home .nav{
  flex-direction: column;
}
.S3_home .nav button{
    width:200px;
    display:block ;
}
 }

 @media screen and (min-width:768px) and (max-width:1030px) {
.S3_home .owl-nav .owl-next {
    left: 0;
    top: 0;
  }

  .S3_home .owl-nav .owl-prev {
    right: 0;
    top: 0;
  }

  .S3_home .nav{
  flex-direction: column;
}
.S3_home .nav button{
    width:400px;
    display:block ;
}

 }



 /* scroll to top */
 .progress-wrap {
   position: fixed;
   right: 50px;
   bottom: 50px;
   height: 46px;
   width: 46px;
   cursor: pointer;
   display: block;
   border-radius: 50px;
   box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
   z-index: 10000;
   opacity: 0;
   visibility: hidden;
   transform: translateY(15px);
   -webkit-transition: all 200ms linear;
   transition: all 200ms linear;
 }

 .progress-wrap.active-progress {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .progress-wrap::after {
   position: absolute;
   font-family: 'unicons';
   content: '\e84b';
   text-align: center;
   line-height: 46px;
   font-size: 24px;
   color: var(--textColor);
   left: 0;
   top: 0;
   height: 46px;
   width: 46px;
   cursor: pointer;
   display: block;
   z-index: 1;
   transition: all .2s linear;
 }

 .progress-wrap:hover::after {
   opacity: .4;
 }

 .progress-wrap svg path {
   fill: none;
 }
 .box{
  margin: 20px 0;
 }

 .progress-wrap svg.progress-circle path {
   stroke: var(--textColor);
   stroke-width: 4;
   transition: all linear .3s;
 }

@keyframes rotate {
  100% {
    transform: rotate(360deg) translate(30px)
  }}
 

 .WahtsApp {
   position: fixed;
   left: 30px;
   bottom: 30px;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   background-color: #11BA17;
   display: flex;
   align-items: center;
   z-index: 222;
   justify-content: center;
 }

 .WahtsApp a svg {
   color: #fff;
   font-size: 50px;
 }


 .sidebar {
  position: fixed;
right: 0;
top: 0;
   bottom: 0;
   left: 0;
   width: 0%;
   background-color: #040f2162;
   z-index: 51651616161616165161616;
   overflow: scroll;
  text-align: center;
  display: flex;
  justify-content: center;
}
 .sidebar .content{
  width: 500px;
  background-color: var(--bgColor);
  height: 0%; 
  transition: all ease-in .3s;
  padding: 25px;
 }
.sidebar-display-blo .content{
  height: 100%;
  overflow-x: scroll;
}
 .sidebar-display-blo {
   width: 100%;
 }
 .sidebar table{
  width: 100%;
 }
  .sidebar table img{
    width: 50px;
    height: 50px;
  }
  .sidebar table th{
  border: 1px solid #000;
  }
 .sidebar table td{
  border: 1px solid #000;
  font-size: 14px;
 }
 .sidebar svg {
   color: rgb(109, 0, 0);
   font-size: 20px;
   cursor: pointer;
 }
  .sidebar table button{
    padding: 3px 5px ;
    border: none;
    border-radius: 5px;
    background-color: var(--btnColor);
    margin: 2px 0;
  }
 .sidebar .exit ,.cart_page-order{
   cursor: pointer;
   text-align: center;
   background-color: var(--btnColor);
   width: 100%;
   color: var(--main_bgColor);
   padding: 10px 0;
   border-radius: 5px;
   margin: 20px 10px;
 }
 .cart_page-order a{
  color: var(--main_bgColor );
 }
.dff{
  display: flex;
  justify-content: space-between;

}

 .sidebar ul li {
   margin: 10px 0;
 }

 .sidebar ul li a {
   font-size: 18px;
   color: var(--main_bgColor);
  padding: 10px 0;
  width: 100%;
  background-color: var(--btnColor);
 }
