@import url(./bootstrap.min.css);
@import url(./bootstrap.min.css.map);
@import url(./all.min.css);
@import url(./owl.carousel.min.css);
@import url(./animate.css);
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;400;500;600;700;800&display=swap');

:root {
  --main_bgColor: #ffffff;
  --btnColor: #383acd;
  --textColor: #040f21;
  --Secondary-color: #a59d9e;  
  --bgColor: #f7f7f7;
  --pragrafColor: #8e8d8d;
  --body_bgColor: #ffffff;
  --main_borderColor: 1px solid rgba(0, 0, 0, .125);
}

::-webkit-scrollbar {
  width: 10px;

}

::-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 ,video{
    width: 100%;
}
p{
  line-height: 1.8;
  color: var(--pragrafColor);
}
section {
  overflow: hidden !important;
}
/* navbar */
.navbar {
  height: 50px;
  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 {
  margin-top: -10px;
  width: 50%  !important;
}

.navbar .nav-btn {
  display: none;
}

.navbar  .nav-links {
  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-color: #a59d9e;
  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;
  }
}
/* home */
.S1_home{
  background-image: url(../img/S1_home.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.S1_home::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000047;
  z-index: -1;
}
.S1_home h1 ,.S1_home p ,.S1_home a{
  z-index: 5;
  color: var(--body_bgColor);
}
.S1_home h1{
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 800;
}
.S1_home p{
  margin-bottom: 70px;
}
.S1_home a{
  color: var(--body_bgColor);
  background-color: var(--btnColor);
  padding: 10px 30px ;
  border-radius: 5px;

}
/* S2_home */
.S2_home{
  padding: 70px 10%;
  background-color: var(--bgColor);
}
.intro{
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.intro h3{
  color: var(--textColor);
  margin-bottom: 20px;
}
.intro p{
  padding-bottom: 20px;
  color: var(--pragrafColor);
}
.intro::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  width: 200px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--Secondary-color);
}
.S2_home .box{
  text-align: center; 
}
.S2_home .box svg{
  color: var(--Secondary-color);
  font-size: 50px;
}
.S2_home .box h4{
  margin: 20px 0;
}
/* S3_home */
.S3_home{
  padding: 70px 10%;
  position: relative;
}
.products .box{
  padding: 25px;
  text-align: center;
  background-color: var(--bgColor);
}
.products .box img{
  border-radius: 5px;

}
.products .box a{
  display: block;
  color: var(--textColor);
  font-size: 22px;
  margin: 20px 0;
}
.products .box span{
  font-size: 18px;

}
.products .box del{
  font-size: 16px;
  margin: 0 10px;
  color: var(--btnColor);
}
 .add-to-cart{
  display: block;
  border: none;
  background-color: #18BC1E;
  border-radius: 5px;
  padding: 10px 0;
  width: 100%;
  margin-top: 20px;
  color: var(--body_bgColor) !important;
  font-size: 18px !important;
  text-align: center;
}
 .add-to-cart:hover{
    color: var(--body_bgColor);
 }
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled{
  display: block;
}
.owl-nav{
  position: absolute;
  bottom: -30px;
  left: calc(50% - 35px);
  z-index: 5;
}
.owl-nav .owl-prev , .owl-nav .owl-next {
  padding:  5px 7px;
  background-color: var(--btnColor);
  color: var(--body_bgColor);
  border-radius: 50%;
}
.owl-nav .owl-next{
  margin-right: 20px;
}
/* S4_home */
.S4_home{
  padding: 70px 0;
  background-image: url(../img/486550539_668220106159097_3809429815026702993_n.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.S4_home::after{
  content: '';
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040f21b3;
}
.S4_home .box{
  padding: 25px;
}
.S4_home .box h3{
  color: var(--body_bgColor);
  font-size: 32px;
}
.S4_home .box p{
  color: var(--body_bgColor);
  margin: 20px 0;
  margin-bottom: 50px;
}
.S4_home .box a{
  padding: 10px 30px;
  border-radius: 5px;
  color: var(--body_bgColor);
  background-color: var(--Secondary-color);

}
.S4_home .box iframe{
  border-radius: 10px;
}
/* S5_home */
.S5_home{
  padding: 70px 0;
  background-color: var(--bgColor);
}
.S5_home .item img{
  border: 2px solid var(--btnColor);
  border-radius: 5px;
}
/* footer */
.footer{
  padding: 70px 0;
  text-align: center;
  background-color: var(--Secondary-color );
}
.top_foot img{
  width: 200px;
  margin-bottom: 50px;
}
.top_foot ul{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.top_foot ul li{
  margin: 0 10px;
}
.top_foot ul li svg{
  color: var(--body_bgColor);
  font-size: 30px;
}
.top_foot ul li a{
  color: var(--body_bgColor);
  font-size: 18px;
}
.last_foot {
  border-top: var(--main_borderColor);
  padding-top: 20px;
}
.last_foot ul{
  justify-content: space-between;
  display: flex;
}
.last_foot li{
  color: var(--body_bgColor);
}
.last_foot a{
  color: var(--textColor);
}

/* ////////////////// */
/* intro_links */
.intro_links{
  padding: 70px 0;
  background-color: var(--Secondary-color);
  text-align: center;
}
.intro_links h1{
  font-size: 42px;
  color: var(--body_bgColor);
}
.intro_links p{
  color: var(--body_bgColor);
  margin: 20px;
}
.intro_links ul{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  color: var(--body_bgColor);
}
.intro_links li a{
  color: var(--body_bgColor);
  margin: 0 10px ;
  transition: all ease-in .3s;
}
.intro_links li a:hover{
  color: var(--btnColor);
}
/* blog */
.S1_blog {
  padding: 70px 0;

}

.S1_blog svg {
  margin: 0px 10px;
}

.S1_blog a {
  color: var(--btnColor);
  transition: all ease-in-out .3s;
}

.S1_blog a:hover {
  color: var(--Secondary-color);
}

.S1_blog .box {
  padding: 25px;
}

.S1_blog .box span {
  color: var(--Secondary-color);
}

.S1_blog h3 {
  margin: 10px 0;
  font-size: 28px;
}

.S1_blog .box p {
  margin-top: 10px;
}

.S1_blog input {
  margin-bottom: 30px;
  padding: 25px;
  width: 100%;
  background-color: var(--bgColor);
  height: 40px;
  border-radius: 5px;
}

.S1_blog ul li {
  margin: 20px 0 !important;
}
.S1_blog .imges{
  overflow: hidden;

}
.S1_blog .imges img{
  transition: all ease-in .2s;
}
.S1_blog .imges img:hover{
  transform: scale(1.1) rotate(5deg);
}
/* single_blog */
.single_blog{
  padding: 70px 0;
}
.single_blog .imges{
  margin-bottom: 20px;
}
.single_blog .imges img {
  width: 90%;
  border-radius: 5px;
}
.single_blog .right_box h3{
  margin: 20px 0;
  color: var(--Secondary-color);
}
.single_blog .right_box span{
  color: var(--pragrafColor);
  display: block;
  margin-bottom: 50px;
}
.single_blog .right_box svg{
  margin: 0 10px;
  color: var(--Secondary-color);
}
.single_blog .right_box p{
  margin: 20px 0  ;
}
.single_blog .right_box .texT_container{
  padding: 25px;
  background-color: var(--bgColor);
  position: relative;
  margin: 20px 0;
}
.single_blog .right_box .texT_container::after{
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: var(--Secondary-color);
  border-radius: 5px;
}
.single_blog .right_box .texT_container .texT_contant{
  font-size: 24px;
  color: var(--btnColor);
}
.single_blog .right_box .box{
  padding: 25px;
}
.single_blog .right_box .box a{
  color: var(--textColor);
  display: block;
  margin-bottom: 20px;
}
.single_blog .right_box .box span{
  margin-bottom: 10px;
}
.single_blog .Lift_box h3{
  color: var(--textColor);
}
.single_blog .Lift_box .box{
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
}
.single_blog .Lift_box .box img{
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.single_blog .Lift_box .box a{
  color: var(--btnColor);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.single_blog .Lift_box .box span{
  color: var(--pragrafColor);
}
.single_blog .Lift_box .box svg{
  margin: 0 10px;
}



/* Pagination */
.Pagination {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Pagination h4 {
  padding: 15px;
  border-radius: 5px;
  border: var(--main_borderColor);
  margin: 0 10px;
  font-size: 20px;
  transition: all ease-in .3s;
}

.Pagination h4:hover {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}

.Pagination .active {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}
/* S1_about */
.S1_about{
  padding: 70px 0;
}
.S1_about .box{
  padding: 25px;
}
.S1_about .box img{
  border-radius: 5px;
}
.S1_about .box h3{
  color: var(--textColor);
  margin-bottom: 30px;
}
.S1_about .box p{
  margin: 20px 0;
}
/* S2_about */
.S2_about{
  padding: 70px 0;
}
.S2_about .box{
  text-align: center;
}
.S2_about .box h4{
  margin: 20px 0;
  color: var(--textColor);
}
.S2_about .box svg{
  font-size: 50px;
  color: var(--Secondary-color);
}

/* S1_products */
.S1_products {
  padding: 70px 0;
  background-color: var(--bgColor);
}

/* filters */
.filters_container {
  border: var(--main_borderColor);
  padding: 25px;
  border-radius: 5px;
}

 .filters {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
}

.filters h4 {
  font-size: 24px;
  color: #000;
}

.filters label {
  color: #000;
}

.filters .filter_dy_catt,
.filters .sorting {
  margin: 0 20px;
}

.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: var(--Secondary-color);
  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: var(--btnColor);
  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: 20px 0;
}
.S1_Single_product .box del{
  color: var(--btnColor);
}
.S1_Single_product .box p {
  margin-top: 20px;
}


.sort_Products {
  width: 400px;
}

.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;
}


/* 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;
}
/* 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;
}





 /* media */
 @media screen and (min-width:1px) and (max-width:767px){
  h1 {
      font-size: 22px !important;
    }
  
    h3 {
      font-size: 20px !important;
  
    }
  
    p {
      font-size: 14px !important;
    }

  .Pagination h4 {
    padding: 5px;
  }
.comments .box{
  width: 100%;
}
.intro_links ul{
  flex-direction: column;
}
.box{
  margin: 20px 0;
}
.top_foot .links {
  flex-direction: column;
}
.top_foot .links li{
  margin: 10px 0;
}
.S2_contact  svg{
  margin-left: 20px;
}
.S2_contact .media svg{
  font-size: 30px;
  margin-left: 0px;
}
.S2_contact .Contact_numpers ul li{
  margin: 20px 0;
}
.sort_Products{
  flex-direction: column;
  width: 100%;
}
.search_bar input{
  width: 80%;
}
 }




 .scroll_up {
   position: fixed;
   bottom: 50px;
   left: 50px;
   background-color: var(--btnColor);
   padding: 10px 14px;
   border-radius: 50%;
   color: #fff;
   display: none;
   z-index: 46555656;
   cursor: pointer;
   transition: all .5s ease-in-out;
 }

 .scroll_transition {
   transform: translateY(100px);
   display: block;

 }

 .show_scroll {
   transition: all .5s ease-in-out;
   transform: translateY(0);
   box-shadow: #8f8f8f 1px 1px 9px;

 }

 .WahtsApp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #11BA17;
  display: flex;
  align-items: center;
  z-index: 222;
  justify-content: center;
}

.phone {
  bottom: 90px;
  position: fixed;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 222;
  justify-content: center;
  background-color: #213693;
}

 .WahtsApp a svg {
   color: white;
   font-size: 30px;
 }
 .phone a svg {
   color: white;
   font-size: 30px;
 }
.WahtsApp h3 {
  margin: 0 20px;
  font-size: 20px !important;
}
.My-PORTFOLIO {
  padding: 70px 8%;
  background-color: var(--bgColor  );
  overflow: hidden !important;
  transition: all linear .3s;
  text-align: center;
}

.My-PORTFOLIO img , .My-PORTFOLIO video{
height: 400px !important ;
border-radius: 5px;
background-color: #000 !important;
}

/* ---- button ---- */
.filter-button-group .button {
  padding: 0.5em 1.0em;
  margin-bottom: 10px;
  border: none;
  border-radius: 7px;
  background-color: transparent;
  color: #000;
  font-size: 16px;
  border: var(--main_borderColor);
  text-shadow: 0 1px white;
  cursor: pointer;
  transition: all ease-in .2s;
}
.filter-button-group .button img{
  width: 30px;
}
.filter-button-group .button:hover {
  background-color: var(--btnColor);
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #fff;
}

.filter-button-group .button:active,
.filter-button-group .button.is-checked {
  background-color: var(--btnColor);
}

.filter-button-group .button.is-checked {
  color: white;
}

.filter-button-group .button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}
.button-group .button {
  margin: 0 5px;
}

 .button-group {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.element-item {
  border-radius: 5px;
  padding: 10px ;
}
.element-item iframe , .element-item video{
  border-radius: 10px;
  width: 100%;
  height: 160% !important;

}

.element-item iframe {
  height: 420px;
}

.element-item #sliderProj svg {
  position: absolute;
  top: 50%;
  display: inline-block;
  padding: 13px 10px;
  border-radius: 10%;
  background-color: #eaa451;
  color: #ffff;
}
.intro_sections{
  background-image: url(../img/486550539_668220106159097_3809429815026702993_n.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 65vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 0;
}
.intro_sections::after{
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #0000003f;
  z-index: -1;
}
.intro_sections h1{
  color: var(--bgColor);
  font-size: 50px;
}
.intro_sections ul{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.intro_sections ul li{
  color: var(--bgColor);
  margin: 0 10px;
  font-size: 18px;
  font-weight: 600 !important;
}
.intro_sections ul li a{
  color: var(--bgColor);
}
.intro input{
  width: 90%;
  height: 40px;
  border-radius: 5px;
  padding-right: 20px;
}
/* contact_us */
.contact_us{
  padding: 70px 0;
}
.contact_us .form{
  padding: 70px 0;
  width: 100%;
}
.contact_us .form input{
    height: 40px;
    border-radius: 5px;
    margin: 10px 0;
}
.contact_us .form input textarea{
  margin: 10px 0;
  border-radius: 5px;
}
.contact_us .form a{
  background-color: transparent !important;
}

.contact_us .form button{
  padding: 10px 30px;
  background-color: var(--btnColor);
  border-radius: 5px;
  color: var(--body_bgColor);
  border: var(--main_borderColor);
  transition: all ease-in .3s;
  display: block;
  margin-top: 30px;
}
.contact_us .form select{
  margin: 10px 0;
  padding: 10px;
}
.contact_us .form-floating>.form-select~label{
      transform: scale(.85) translateY(-.1rem) translateX(1rem);
}
.contact_us .form button:hover{
  background-color: transparent;
  color: var(--btnColor);
}
.contact_us .form .all_right {
  display: flex;
  align-items: center;
}
.contact_us .form .all_right svg{
  color: var(--btnColor);
  font-size: 30px;
  margin-left: 20px;
}
.contact_us .form .all_right h3{
  font-size: 18px;
  margin: 20px 0;
}
.contact_us .form .sochial{
  display: flex;
}
.contact_us  .form .zzz p{
  margin: 20px 0;
}
.contact_us .form .sochial a{
  color: var(--btnColor);
  font-size: 18px;
  margin: 5px;
}
.about{
  padding: 70px 0 !important;
}
.about img{
  border-radius: 20px;
}
/* blog */
.blog {
  padding: 70px 0;
  position: relative;
  padding-bottom: 80px !important;
}

.blog .box {
  padding: 10px;
  border-radius: 5px;
}

.blog .box .images img {
  margin-bottom: 20px;
  border-radius: 30px !important;
  height: 350px;
}
.S_blog .box .images img {
  height: 100%;
}
.blog .box span img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 10px;
}

.blog .box span svg {
  margin-left: 10px;
  color: var(--btnColor);

}

.blog .box span:not(:last-child) {
  padding: 0 20px;
}

.blog .box span {
  padding: 0 20px;
}

.blog .box h3 {
  margin: 20px 0;

}

.blog .box p {
  margin-bottom: 30px;
}

.blog .box .more {
  padding: 10px 30px;
  background-color: var(--btnColor);
  border-radius: 5px;
  color: var(--textColor);
  transition: all ease-in .2s;
}

.blog .box a:hover {
  background-color: transparent;
  color: var(--Secondary-color);
  border: var(--main_borderColor);
}

.blog ul {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.blog .catt{
  position: sticky;
  top: 0;
}
.blog .ssaafvvvx{
  position: relative;
}
.blog .catt ul {
  flex-direction: column;
}
  
.more_blog ul {
  align-items: center;
}

.blog .catt ul li a {
  background-color: transparent;
  width: 100%;
  border: 1px solid var(--btnColor);
  border-radius: 5px;
  margin: 10px 0;
  color: var(--Secondary-color);
  display: block;
  padding: 10px 0;
  text-align: center;
  transition: all ease-in .3s;
}

.blog .catt ul li a:hover {
  background-color: var(--btnColor);
  color: var(--textColor);
}

.blog li img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

.blog .more_blog a {
  display: block;
  margin-bottom: 20px;
}

.blog .more_blog a {
  color: var(--Secondary-color);
}
.blog .more_blog a:hover{
  color: var(--btnColor);
  border: none;
}
.blog .more_blog span {
  padding: 0 !important;
  border: none !important;
}

.blog h4 {
  color: var(--btnColor);
  margin-bottom: 20px;
}

/* cart_sidbar */
.cart_open_tool {
  position: fixed;
  right: 0;
  top: 100px;
  bottom: 0;
  background-color: var(--btnColor);
  width: 50px;
  height: 50px;
  z-index: 15151515;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart_open_tool svg {
  font-size: 30px;
  color: var(--body_bgColor);
}

.cart_sidbar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--Secondary-color);
  width: 0px;
  color:white;
  z-index: 51516116151515;
  transition: all ease-in .1s;
  overflow-y: scroll;
}

.cart_sidbar .intro_CArt {
  display: flex;
  justify-content: space-between;
  padding: 25px;
}

.cart_sidbar .intro_CArt svg {
  font-size: 35px;
  color: var(--btnColor);
}
.cart_sidbar a{
  color: #ffffff;
  margin:2%;
}

.Show2 {
  width: 400px !important;
}

.cart_sidbar .row_In_Cart {
  margin: 10px 0;
}

.cart_sidbar .box_row_cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_sidbar .row_In_Cart img {
  border-radius: 5px;
}

.cart_sidbar .row_In_Cart h5 {
  font-size: 16px;
}

.cart_sidbar .row_In_Cart .Qunte {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.cart_sidbar .row_In_Cart .total_CArt {
  text-align: center;
  margin-top: 10px;

}

.cart_sidbar .row_In_Cart .Qunte button {
  background-color: var(--btnColor);
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.cart_sidbar .row_In_Cart svg {
  color: var(--btnColor);
  font-size: 20px;
}