/* External stylesheets are now loaded asynchronously in Blade heads to avoid render-blocking */

:root {
  --main_bgColor: #ffffff;
  --btnColor: #5f6c6d;
  --textColor: #fff;
  --Secondary-color:#682052;
  --bgColor: #F2EFEB;
  --pragrafColor: #666;
  --body_bgColor: #ffffff;
  --main_borderColor: 1px solid #F6B17A;
}
/* تحسين القراءة العامة عند وجود نافبار ثابت */
body {
  padding-top: 0; /* مسافة صفر فوق النافبار */
  background-color: var(--main_bgColor);
  color: #111;
}

::-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(--btnColor);
}



* {
    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: 250px !important;
}
button{
  transition: all ease-in .3s;
  background-color: var(--btnColor);
  color: var(--body_bgColor) !important;
}
button:hover{
  background-color: var(--body_bgColor);
  border: var(--main_borderColor );
  color: var(--btnColor);
}

/* navbar */
.navbar {
  height: 64px;
  width: 100%;
  background-color: #682052; /* لون غامق قريب للأسود موحد */
  backdrop-filter: none;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  margin: 0;
}
/* إزالة أي فراغ علوي من أول سكشن في الصفحات */
.S1_home,
.intro_pages,
.intro_pagese {
  margin-top: 0 !important;
}

/* تحديد اتجاه النافبار حسب اللغة */
html[lang="ar"] .navbar {
  direction: rtl;
}
html[lang="ar"] .navbar .nav-header {
  order: 3;
  margin-right: auto;
}
html[lang="ar"] .navbar .nav-links {
  order: 2;
}
html[lang="ar"] .navbar .nav-btn {
  order: 1;
}

html[lang="en"] .navbar {
  direction: ltr;
}
html[lang="en"] .navbar .nav-header {
  order: 1;
}
html[lang="en"] .navbar .nav-links {
  order: 2;
}
html[lang="en"] .navbar .nav-btn {
  order: 3;
}

.navbar  .nav-header {
  width: auto;
  display: flex;
  align-items: center;
}

.navbar  .nav-header  .nav-logo {
  display: inline-block;
  font-size: 22px;
  color: #fff;
}


.navbar .nav-logo img {
  width: 120px !important;
  height: auto;
  max-height: 48px;
  margin-left: 16px;
}

.navbar .nav-btn {
  display: none;
}

@media (max-width: 800px) {
  .navbar .nav-btn {
    display: inline-block !important;
  }
}

.navbar  .nav-links {
  font-size: 16px;
  direction: rtl;
  margin-inline-start: auto;
}

.navbar  .nav-links  a , .navbar .nav-links li{
  display: inline-block;
  padding: 12px 14px;
  text-decoration: none;
  color: #ffffff;
  transition: color .2s ease-in, background-color .2s ease-in;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}
.navbar  .nav-links  a:hover,
.navbar  .nav-links  a:focus{
  background-color: rgba(255,255,255,0.18);
  color: #ffffff;
  outline: none;
}
.navbar .nav-links li svg{
  margin-right: 10px;
}

.navbar  #nav-check {
  display: none;
}


.services_menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .2s !important;
  display: flex;
  flex-direction: column;
  left: 20px;
  width: 320px !important;
  top: 100%;
}

.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_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: #682052;
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 1000;
  left: 0;
  height: 64px !important;
  transition: transform .3s ease-in-out, background-color .2s ease-in-out;
  animation-name: tranz;
  animation-duration: .4s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  padding: 0 5%;
}

@keyframes tranz {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0px);
  }
}


@media (max-width:800px) {
  .navbar {
    padding: 10px 15px;
    min-height: 70px;
  }
  
  .navbar > .nav-btn {
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002; /* ensure button above logo/header */
  }
  
  .navbar>.nav-header>.nav-title{
    margin-right: auto;
  }
  
  .navbar > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .navbar > .nav-btn > label:hover,
  .navbar #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .navbar > .nav-btn > label > span {
    display: block;
    width: 26px;
    height: 12px;
    border-top: 3px solid #fff;
    transition: all 0.3s ease;
  }
  
  .navbar > .nav-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #682052;
    height: 0;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: hidden;
    top: 70px;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .navbar > .nav-links > a,
  .navbar > .nav-links > li {
    display: block;
    width: 100%;
    padding: 18px 25px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .navbar > .nav-links > a:hover,
  .navbar > .nav-links > li:hover {
    background-color: rgba(255,255,255,0.1);
    padding-right: 35px;
  }
  
  .navbar > #nav-check:not(:checked) ~ .nav-links {
    height: 0 !important;
  }
  
  .navbar > #nav-check:checked ~ .nav-links {
    height: 400px !important;
    overflow-y: auto;
  }
  
  .navbar .nav-header .nav img {
    max-width: 180px;
    height: auto;
  }
}
/* //////////////////////////////////////////////////////// */
/* S1_home */
.S1_home{
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-image: url(../img/pexels-luk1.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .S1_home {
    min-height: 70vh;
    padding: 40px 15px;
  }
  
  .S1_home .box h1,
  .S1_home .box h2,
  .S1_home .box h3 {
    font-size: 28px !important;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .S1_home .box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0 40px;
  }
  
  .S1_home .box a {
    font-size: 16px;
    padding: 12px 28px;
  }
}
.S1_home_2{
  background-image: url(../img/pexels-luk2.jpg);

}
.S1_home_3{
  background-image: url(../img/pexels-luk3.jpg);

}
.S1_home::after{
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000af;
}
.S1_home .box{
  z-index: 55;
  text-align: center ;
}
.S1_home .box h1{
  font-size: 52px;
  font-weight: 600;
  display:block;
  color: var(--main_bgColor);
}
.S1_home .box p{
  margin: 30px 0 ;
  color: #ccc;
  margin-bottom: 70px ;
}
.S1_home .box a{
  padding: 10px 30px;
  background-color: var(--btnColor);
  border-radius: 5px;
  color: var(--bgColor );
}

.Products2{
  padding: 70px 0;
}
.Products2 .box{
  padding: 20px ;
  text-align: center;
}
.Products2 .box img{
  margin: 20px 0;
  border-radius: 5px;
}
.Products2 .box h4 a{
  color: var(--Secondary-color) ;
  transition: all ease-in .3s;
  font-size: 10px;
}
.Products2 .box span{
  color: var(--btnColor);
  font-size: 20px;
}
.Products2 .box h4 a:hover{
  color: var(--btnColor);
  margin: 20px 0;
}

.sss{
  position: relative;
}

.sss  .owl-nav.disabled{
  display: block !important;
  z-index: 111;
}
.sss .owl-nav .owl-prev{
  right: 1% !important;
  border-radius: 0% !important;
  padding: 20px 15px !important;
}
.sss .owl-nav .owl-next {
  left: 1% !important;
  border-radius: 0% !important;
  padding: 20px 15px !important;
}
/* S2_home */
.S2_home{
  padding: 70px 0;
}
.S2_home .box{
  padding: 25px;
}
.S2_home .box span{
  color: var(--btnColor);
  display: block;
  margin: 20px 0 ;
}
.S2_home .box h3{
  color: var(--pragrafColor);
  margin: 20px 0;
}
.S2_home .box p{
  margin-bottom: 30px;
}
.S2_home .box a{
  padding: 10px 30px;
  background-color: var(--btnColor);
  color: var(--body_bgColor);
  border-radius: 5px  ;
  border: var(--main_borderColor);
  transition: all ease-in .2s;
}

.S2_home a:hover{
  color: var(--btnColor);
  background-color: transparent;
  border: var(--main_borderColor);
}
/* S3_home */
.S3_home{
  padding: 70px 0;
}
.S3_home .box{
  text-align: center;
}
.S3_home .box img{
  width: 70px;
  height: 70px;

}
.S3_home .box h3{
  margin: 20px 0;
}
.box{
  margin: 20px 0;
}
/* S4_home */
.S4_home {
  padding: 70px 0;
  background-color: var(--body_bgColor);
}
.S4_home h3{
  margin-bottom: 20px;
}
.S4_home p{
  margin-bottom: 50px;
}
.S4_home a{
  padding: 10px 30px;
  border-radius: 5px;
  background-color: var(--btnColor);
  color: var(--body_bgColor);
  transition: all ease-in .3s;
}
.S4_home a:hover {
  background-color: var(--body_bgColor);
  color: var(--btnColor);
  border: var(--main_borderColor);
}

.S4_home .box{
  position: relative;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled{
  display: block;
}
.owl-carousel .owl-nav{
  text-align: center;
}
 .owl-nav .owl-prev {
   background-color: var(--btnColor);
   border-radius: 20%;
   padding: 5px 9px;
   margin-left: 10px;
   transition: all ease-in-out .3s;
   transition: all ease-in .3s;
  color: var(--body_bgColor);
 }
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  padding: 10px;
  background-color: var(--btnColor);
  color: var(--bgColor);
  border-radius: 50%;
}

.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 48%;
  left: 0;
}


.owl-carousel_2 .owl-nav .owl-next,
.owl-carousel_2 .owl-nav .owl-prev {
  padding: 10px;
  background-color: var(--btnColor);
  color: var(--bgColor);
  border-radius: 50%;
}

.owl-carousel_2 .owl-nav .owl-next {
  position: absolute;
  top: 48%;
  left: 0;
}

.owl-carousel_2 .owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  right: 0;
}
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  right: 0;
}
 .owl-nav .owl-prev:hover,
  .owl-nav .owl-next:hover {
   background-color: var(--body_bgColor);
   color: var(--btnColor );
   border: var(--main_borderColor);
 }

 .owl-nav .owl-next {
   background-color: var(--btnColor);
   border-radius: 20%;
   padding: 5px 9px;
   color: var(--body_bgColor);
   transition: all ease-in-out .3s;
 }
/* S1_serv */
.S1_serv{
  padding: 70px 0 !important;
}
.contact_us {
  padding: 70px;
  text-align: center;
}
.form {
  padding: 70px 0;
  padding-bottom: 150px;
}

.form .input-group {
  margin-bottom: 30px;
}

.form textarea {
  padding-left: 30px;
  border-radius: 0;
}

.form textarea::placeholder {
  font-size: 14px;
  color: #a999b0;
}

.form input {
  border-radius: 0;
  margin: 10px 0;
}

.form input::placeholder {
  font-size: 14px;
  color: #a999b0;
}

.form button {
  margin-top: 30px;
  padding: 10px 50px;
  background-color:var(--btnColor);
  color: var(--textColor);
  transition: all ease .3s;
  border: 1px solid var(--Secondary-color);
  border-radius: 5px;
}

.form button:hover {
  background-color: var(--Secondary-color);
  color: #fff;
}

.form .all_right {
  display: flex;
  margin: 40px 0;
  padding-left: 100px;
  padding-top: 30px;
}

.form .all_right svg {
  color: var(--btnColor);
  font-size: 27px;
  margin-left: 20px;
}

.form .all_right h3 {
  font-size: 16px;
  color: #2a2a2a;
}

.form .all_right a {
  color: var(--Secondary-color);
}

.form .all_right p {
  color: #8a8a8a;

}

.form img {
  width: 250px !important;
}

.form ul {
  display: flex;

}

.form ul svg {
  margin: 0 5px;
  color: var(--btnColor);
  font-size: 30px;
}

.form p {
  margin: 20px 0;
}/* blog */
.blog {
  padding: 70px 0;
  text-align: right;
}

.blog .box {
  padding: 30px;
  border-radius: 5px;
  border: 1px solid var(--btnColor);
  text-align: center;
}

.blog .box .images {
  margin-bottom: 20px;
}

.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;
  border-left: 3px solid var(--btnColor);
}

.blog .box span {
  padding: 0 20px;
}

.blog .box h3 {
  margin: 20px 0;
  font-size:15px;

}

.blog .box p {
  margin-bottom: 30px;
}

.blog .box .more {
  padding: 10px 30px;
  background-color: var(--btnColor);
  border: 1px solid var(--btnColor);
  border-radius: 5px;
  color: var(--textColor);
  transition: all ease-in .2s;
}

.blog .box a:hover {

}

.blog ul {
    float: right;

  display: flex;
  justify-content: space-between;
}

.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(--btnColor);
  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(--btnColor);
}

.blog .more_blog span {
  padding: 0 !important;
  padding-left: 10px !important;
  border: none !important;
}

.blog h4 {
  color: var(--btnColor);
  margin-bottom: 20px;
}


.about {
  padding: 70px 0;
}

.about h3 {
  color: var(--body_bgColor);
}

.about .box {
  padding: 25px;
}

.about .box ul {
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
  margin-top: 20px;
}

.about .box ul li {
  font-weight: 600;
  font-size: 20px;
}

.about .box ul li svg {
  padding: 10px;
  background-color: var(--pragrafColor);
  border-radius: 5px;
  color: var(--textColor);
  transition: all ease-in .2s;
}

.about .box ul:hover svg {
  background-color: var(--btnColor);
  color: var(--textColor);
}

.about .box img {
  border-radius: 20px;
}

/* team */
.team {
  padding: 70px 10%;
}

.team h3 {
  color: var(--body_bgColor);
}

.team .box {
  padding: 25px 50px;
}

.team .box img {
  border-radius: 70px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: ease-in .3s;
}

.team .box:hover img {
  border-radius: 70px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
}

.team .box h3 {
  margin: 20px 0;
}

.team .box span {
  color: var(--btnColor);
}

/* S3_about */
.S3_about {
  padding: 70px 0;
}

.S3_about h3 {
  color: var(--body_bgColor);
}

.S3_about .box {
  padding: 25px;
}

.S3_about .box p {
  margin: 20px 0;
}

.S3_about .box li {
  margin: 10px 0;
  list-style: circle;
}

.S3_about .box li span {
  font-size: 18px;
  font-weight: 800;
  color: var(--btnColor);
}

/* footer */
.footer{
  padding-top: 70px;
  background-color: var(--Secondary-color);
}
.footer h3{
  margin-bottom: 30px;
  color: var(--main_bgColor);
}
.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{
  border-top: 1px solid #000;
  padding-bottom: 50px;
 }
 .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(--btnColor);
 }
 /* intro */
.intro{
  padding: 50px 0;
  text-align: center;
}
.intro h3{
  font-size: 24px;
  color: var(--Secondary-color);
}
.intro hr{
  height: 5px;
  border-radius: 5px;
  background-color: var(--btnColor);
}
 /* intro_pages */
.intro_pages{
  position: relative;
  background-image: url(../img/newintro.jpg);
  background-position: center;
  background-size: cover;
  height: 400px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  direction: rtl;
}


.intro_pages::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0000009e;
}
.intro_pages .box{
  z-index: 5;
}
.form_container .form_body {
  height: auto !important;
}

.intro_pages .box_contant{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  direction: ltr;

}
.intro_pages h1{
  font-size: 72px;
  color: var(--btnColor);
}
.intro_pages p{
  color: #a999b0;
  margin-top: 20px;
  z-index: 5;
}
.intro_pages ul{
  display: flex;
  z-index: 5;
  color: var(--textColor);
}
.intro_pages ul li{
  color: var(--btnColor);
  margin: 0 10px;
  font-size: 20px;
}
.intro_pages ul li a{
  color: var(--btnColor);
}


.intro_pagese{
  position: relative;
  background-image: url(../img/newintro.jpg);
  background-position: center;
  background-size: cover;
  height: 400px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  direction: ltr;
}


.intro_pagese::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0000009e;
}
.intro_pagese .box{
  z-index: 5;
}
.form_container .form_body {
  height: auto !important;
}

.intro_pagese .box_contant{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  direction: ltr;

}
.intro_pagese h1{
  font-size: 72px;
  color: var(--btnColor);
}
.intro_pagese p{
  color: #a999b0;
  margin-top: 20px;
  z-index: 5;
}
.intro_pagese ul{
  display: flex;
  z-index: 5;
  color: var(--textColor);
}
.intro_pagese ul li{
  color: var(--btnColor);
  margin: 0 10px;
  font-size: 20px;
}
.intro_pagese ul li a{
  color: var(--btnColor);
}
/* Pagination */
.Pzagination {
  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: 10px;
  transition: all ease-in .3s;
  cursor: pointer;
}

.Pagination h4:hover {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}

.Pagination .active {
  background-color: var(--btnColor);
  color: var(--main_bgColor);
}


 /* 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  ;
  }
.S4_home .col-lg-6{
  margin: 20px 0;
}

.form_body input {
  height: 30px !important;
  margin: 5px 0 !important;
}
.form_body label{
  font-size: 14px !important;
}
.form_body select{
  width: 100% !important;
  margin: 10px 0 !important;
}

.S1_home .content {
  width: 100%;

}
.ccc{
  padding: 0 !important;
}
.S1_home {
  height: auto;
  padding-top:0px;
}
.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;
}

.S1_home .owl-nav {
  position: absolute;
  top: 95% !important;
  right: 75% !important;
}

.S2_home h3 {
  margin: 10px 0 !important;

}

.S2_home p {
  margin: 10px 0 !important;

}
.S2_home {
  height: 100vh;
}
.Pagination h4{
  padding: 5px;
}
.last_foot ul{
  flex-direction: column;
}
.intro_pages .form_contant {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.intro_pages .form_contant select {
  height: 40px !important;
  margin: 0 10px;
}

.intro_pages .form_contant input {
  padding: 0 25px;
  margin: 0 10px;
  width: 100% !important;
}

.ssaa {
  width: 100% !important;
}
.S3_home{
  margin-top: 200px;
}
}




 @media screen and (min-width:768px) and (max-width:1023px) {
.S1_home_intro_contant{
  display: none;
}
.intro_pages .form_contant {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.intro_pages .form_contant select {
  height: 40px !important;
  margin: 10px 0;
}

.intro_pages .form_contant input {
  padding: 0 25px;
  margin: 10px 0;
  width: 100% !important;
}

.ssaa {
  width: 100% !important;
}

 }


/* Owl Carousel Responsive Fixes */
@media (max-width: 768px) {
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
  }
  
  .owl-carousel .item {
    width: 100% !important;
  }
  
  .sss .owl-nav {
    display: none !important;
  }
  
  .owl-carousel .owl-dots {
    text-align: center;
    padding: 15px 0;
  }
  
  .owl-carousel .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .owl-carousel .owl-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 15px;
  }
  
  .Products2 .box,
  .Products .box {
    padding: 15px 10px;
  }
  
  .Products2 .box img,
  .Products .box img {
    max-width: 100%;
    height: auto !important;
  }
}

.scroll_up {
  position: fixed;
  bottom: 50px;
  left: 50px;
  background-color: var(--btnColor);
  padding: 10px 14px;
  border-radius: 5px;
  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);

}

.WahtsApp {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #11BA17;
  display: flex;
  align-items: center;
  z-index: 222;
  justify-content: center;
}

.WahtsApp a svg {
  color: #fff;
  font-size: 40px;
}
.WahtsApp  p {
  color: #ffffffa2;
  margin-left: 15px;
  margin-top: 13px;
}


.sidebar{
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0px;
  z-index: 51651616161616165161616;
  background-color: var(--Secondary-color);
  transition: all ease-in-out .3s;
  overflow: scroll;
  direction: rtl;
  text-align: center;
}
.sidebar-display-blo{
  padding: 25px;
  width: 300px;
}
.sidebar svg{
  color: rgb(109, 0, 0);
  font-size: 50px;
  cursor: pointer;
}
.sidebar .exit{
  cursor: pointer;
}
.sidebar ul li{
  margin: 10px 0;
}
.sidebar ul li a{
  font-size: 18px;
  color: var(--main_bgColor);

}
.S1_about .images {
  text-align: center;
}
.sochial a{
  color: var(--btnColor) !important;
}
