@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@000&family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Inter:wght@000&family=Poppins:wght@000&display=swap'); 
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
  font-family: 'Poppins', sans-serif;
  user-select: text;
}

:root {
  --bgcolor: rgb(240, 240, 240);
  --font-size: 16px;
}


/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #000000 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }










a:hover {
  text-decoration: none; /* Remove underline on hover */

}
html{
  overflow-x: hidden; 

}
::selection{
  background-color: orange;
  /* background-color: #003559; */
  /* color: white; */
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 auto;
    /* -webkit-box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1); */
  }

 

  a{
    text-decoration: none;
  }
nav a{
    text-decoration: none;  
    color: rgb(0, 0, 0);
  }
  nav ul{
    color: black;
  }
  nav.scrolled a{
    /* color:#003559; */
    color: black;

  }
  
  body{
    overflow-x: hidden;
    max-width: 100%;
    background: #fdfdfff6;
    /* font-family: 'Inter', sans-serif; */
    text-decoration: none;  
    /* background-color: rgb(244,244,244);   */
}

nav.scrolled {

  background: rgb(255, 255, 255,0.75);
  transition: all 1s ease;
  backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#main{
  background-color: rgb(0,0,0,0.35);
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 70px;
  background: rgb(255, 255, 255);
  /* background: transparent; */
  /* From https://css.glass */
  
  z-index: 99;
}@media (min-width:801px){

nav{
  background: rgba(255, 255, 255, 0.75);
  /* background: transparent; */
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
/* border: 1px solid rgba(255, 255, 255, 0.3); */
}
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3); */
  margin: auto;
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #000000;
  
  text-decoration: none;
  font-weight: 600;
}

.navbar .logo img{
  max-height: 50px;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000000;
  
  font-size: 15px;
  font-weight: 600;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  color: #000;
  z-index: 2;
}@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInside {
  from {
      opacity: 0;
      transform: translateX(-20px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
  animation: fadeInside 0.5s ease-in-out forwards;  
}
.navbar .links li .sub-menu .more-sub-menu2{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu2{
  display: block;
  animation: fadeInside 0.5s ease-in-out forwards;  
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:960px){

  
  #myid {
    display: block;
    position: absolute;
    /* background-color: #fff; */
    height: 30px;
    width: 0px;
    margin: -88px 76px 0 0;
    padding-right:0;
    /* z-index: -2;
  }

  nav{
    /* position: relative; */  
    background: rgb(245, 245, 245);
 
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    /* z-index: -1; */
    width: 85%;
  }
  nav.scrolled {

    background: rgb(255, 255, 255,0.75);
    transition: all 1s ease;
    /* backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  nav .navbar {
    /* z-index: 1000; */
    background: rgba(255, 255, 255, 0.966);
    transition: all 1s ease;
   
    /* backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  nav .navbar .nav-links{
    max-width: 100%;
  } 
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name img{
    font-size: 25px;
    color: #000000;
    max-height: 60px;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #070707;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .links li .sub-menu .more-sub-menu2{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu2 li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more-sub-menu2{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  .links li .sub-menu .more:hover .more-sub-menu2{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu,
  .navbar .nav-links.show4 .links .more2 .more-sub-menu2 {
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
  
 
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
nav { 
  /* background-color: #000000; */
}
}



p{
  font-size: 30px;
  font-weight: 500;
}






/* Gallary --------------------- */
.heading {
    text-align: center;
    font-size: 2.0em;
    letter-spacing: 1px;
    padding: 40px;
    color: white;
  }
  
  .gallery-image {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-image img {
    max-height: 200px;
    max-width: 300px;
    transform: scale(1.0);
    /* transition: transform 0.4s ease; */
    align-items: center;
    display: flex;
  }
  
  .img-box {
    margin: 10px;
    /* height: 250px;
    width: 350px; */
    /* position: relative; */
    /* background-color: rgb(240, 240, 240); */
    /* z-index: ; */
  }
  
  .transparent-box {
    height: 250px;
    width: 350px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    /* opacity: 0;   */
    /* transition: background-color 0.3s ease, opacity 0.3s ease; */
  }
  
  .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    cursor: pointer;
  }
  

  .img-box:hover img {
    transform: scale(1.1);
    cursor: pointer;
  }
  
  .img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1;
  }
  
  .caption > p:nth-child(2) {
    font-size: 0.8em;
  }
  
  .opacity-low {
    opacity: 0.5;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    /* height: 100vh; */
    max-height: 90vh;
    object-fit: cover;
  }
  
  .modal-img {
    width: 100%;
    height: 100%;
    /* background-size: contain; */
  }
  .close {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 50px;
    right: 20px;
    cursor: pointer;
  }
  


  #filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    margin-bottom: 20px;
    margin-top: 10px;
    /* padding-left: ; */
    /* background-color: #000000; */
    padding: 30px 0px;
    z-index: 1;
    /* background-color: #e5e5f7;
    opacity: 0.2;
    background-image: radial-gradient( ellipse farthest-corner at 13px 13px , #cdceda, #cdceda 50%, #e5e5f7 50%);
    background-size: 13px 13px; */
    /* background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #e5e5f7 10px ), repeating-linear-gradient( #cdceda55, #cdceda ); */
}

.filter-btn {
  /* background-color: #e5e5f7; */
  opacity: 1;
      text-transform: uppercase;
    display: inline-block;
    padding: 6px 11px;
    margin: 0 5px;
    border: 0.5px solid rgb(102, 102, 102);
    border-radius: 11px;
    /* border: 1px so`lid black; */
    /* border: none; */
    /* border-bottom: 1px solid #c01212; */
    /* background-color: rgb(24, 23, 23); */
    /* color: white; */

    cursor: pointer;
    /* border-radius: 15px; */
    font-size: 15px;
    /* transition: position 0s ease; */
}

.filter-btn.active {
    background-color: #000000;
 /* border: 2px solid rgb(221, 158, 21); */
    color: rgb(247, 247, 247)   ;
  }





/* ----------------Product------------- */



.product-container
{ 
     color: white;
    height: auto;
    display: flex;
    /* justify-content: center; */
    max-width: 1300px;
    margin: 0 auto;
}

.product_grid{
    display: grid;

}

.product-list
{ width: auto;

margin-top:30px;
/* background-color: #6EB981; */
}
.product-list li
{padding: 10px 20px 10px 10px;
list-style-type: none;
font-size: 18px;
border-bottom: orange 1px  solid;
background-color: #252525;
}

.products{
display: flex;
flex-wrap: wrap;
justify-content:left;
height:max-content;

align-items: center;
/* max-width:  1300px ; */
padding: 10px 0px 50px 20px;
margin: 0 00px 0px 0px;
/* background-color: #028ba3; */
float: right;

/* background-color: #ad7474; */


}

.product-cards {
  transition: transform 0.4s ease-in-out;
  display: grid;
  left:0;
  margin-top: 20px;
  margin-right: 30px;
  background-color:#ffffff;
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
  width: 250px;
  filter: drop-shadow(0px 0px 6px #eaeaea);
  cursor: pointer;

}

.product-cards img {
  max-width: 100%;
  height: 290px;
  background-color: #ffffff;
  object-fit: cover;
  /* border-bottom: 0.2px solid #dddddd; */
}

.product-cards:hover {
  /* height: 305px; */
  /* width: 235px; */
  transform: scale(1.04);
  transform-origin: center;
}
.product-info {
  flex-grow: 1;
  text-align: center;
  /* padding: 20px; */
  /* padding-left: 10px; */
}

.product-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 450;
  color: #000000;
  float: center;
  text-align: center;
  text-transform: uppercase;
}


.list-container {
/* position: absolute; */
color: white;
width: 100%;
height: auto;
/* min-height: 100%; */
margin: 0 ;
padding: 0;
background:   linear-gradient(196deg,#4c4c4c,#252525);
/* position: ; */
padding-top: 100px;
display: grid;
grid-template-columns: 250px 700px ; 
justify-items: center;
justify-content: center;
/* align-items: center; */
}
.images{
/* display: flex; */
/* justify-content: flex-end; */
position: relative;
/* right: 0; */
/* justify-items: right; */
/* background-color:#028ba3; */
/* justify-self: end; */
}

.images img{
height: 400px;
width: 400px;
right: 0;
position: relative;
top:50px;
}

.product-desc
{
margin-left: 120px;
padding-top:50px;
/* z-index: 5; */
/* display: flex;
justify-content: flex-start; */
/* background-color: #6EB981; */
}

.small-desc
{
font-size:18px;
padding-top:20px;
padding-right:100px;
}


@media (max-width: 800px)
{
.list-container
{
grid-template-columns: 100%;
}

}


.product_category
{
    margin-top: 50px;  
    display: flex;
    text-align: center;
    background-color: #000000;
    /* justify-content: center; */
}


.product_bg 
{
    background:     linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.3)
      ),url(images/bg1.jpg);
    z-index: -1;
    /* background-color: rgb(1, 1, 100); */
    /* position: fixed; */
    width: 100%;
    height: 350px;
    padding-top:100px;
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size:cover;
    /* position: absolute; */
    overflow: hidden;

}


.product_bg span{
    font-size: 60px;
    filter: brightness(1.5);
    text-shadow: 0 0 50px rgba(7, 7, 7, 0.5);
    position: relative;
    top: 35px;
    left:70px;
    width: 50%;
    color:white;
    float: left;
    margin-bottom:0;
    font-weight: 600;
    word-wrap: normal;
    /* line-height: 10; */
}


.side {
    display: flex;
    align-items: flex-start;
    min-width: 280px; /* Add this line to set a fixed width */
    flex-direction: column;
    float: left;
    justify-content: left;
    /* border: 1px solid #eee; */
    margin-right: 40px;
    margin-left: 60px;
    height: max-content;
    margin-top: 0px;
    /* -webkit-box-shadow: 0 0px 0px 4px #eaeaea; */
    margin-bottom: 10px;
    color: black;  
    filter: drop-shadow(0px 0px 4px #eaeaea);
  }
  .side .title{
    margin-bottom:20px;
    font-size: 18px;
    margin-left: 12px;
    font-weight: 500;
    border-bottom: 1px solid orange;
  }
  .side a {
    cursor: pointer;
    background-color: #fefefe;
    padding: 12px;
    font-size: 16px;
    display: flex;
    width: 100%;
    /* border: 0.1px solid rgb(197, 197, 197); */
    border-bottom: 0.1px solid rgb(238, 233, 233);
  }



  @media screen and (max-width: 1000px) 
  {
  .product-container
  {
    display: flex;
    /* background:   linear-gradient(45deg,#8c8c8c,#252525); */
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
  }
  
  .side{
    display: flex;
    width: 200px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    float: right;
    /* width: 100%; */
  }
  .products{
    display: flex;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
    float: none;
    width: 100%;
    /* align-items: center; */
    /* grid-template-columns: 100%; */
    /* padding: 0px 0 0 100px; */
    /* background-color: #028ba3; */
  }
  .product-cards{
    justify-content: center;
    margin-top: 20px;
    
  }
  
  }












  .product-container2
  { 
       color: white;
      height: auto;
      display: flex;
      /* justify-content: center; */
      max-width: 1300px;
      margin: 0 auto;
  }
  .links .active {
    color: orange; /* Set the desired active link color */
  }

.active{
    color: orange;
    /* border-bottom: 1px solid orange; */
}
  /* .active a {
      color: orange;
  } */
nav.scrolled .active{
    color: orange;
}
  h2{
      text-align: center;
      font-size: 2rem;
      line-height: 3.5;
  }











  .product-container {
    display: flex;
    padding-right: 60px;
    padding-top: 30px;
    max-width: 1300px;
    /* background: #ffffff; */
}

.product-image {
    flex: 1;
}

.product-description {
    flex: 0.8;
    padding: 0px 0px;
    color: black;
    font-size: 14px;
    /* background-color: #4d4d4d; */
    display: flex;
    flex-direction: column;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
}

.product_title p {
    float: left;
    text-align: left;
    position: relative;
    left: 0;
    /* background-color: #303030; */
    padding: 0;
}
.table_title p{
  float: left;
  text-align: left;
  position: relative;
  left: 0;
  /* background-color: #303030; */
  padding: 0;
  font-size: 16px;
}
.product-image {
    flex: 1;
    position: relative;
    padding: 0;
    margin-left: 40px;
}

table {
    width: 100%;
    /* border-collapse: collapse; */
    margin-top: 20px;
    border-radius: 15px;
    padding:20px;
    /* border: 10.5px solid #f4f4f4; */
    background-color: #ffffff;
    box-shadow: 0px 0px 5px rgb(232, 232, 232);
    /* text-align: center;
    display: flex;
    flex-wrap: wrap; */
  }
  
  tr{
    padding: 100px;
    width: 100%;
    border-bottom: 0.5px solid rgb(202, 202, 202);
  }
  
  th,
  td {
     border: 10.5px solid #f4f4f4;
    padding: 10px;
    text-align: left;
    border:0px; 
  }
  
  th {
    background-color: #1F1D1D;
  }
  
  td {
    /* width: 100%; */
    /* border-radius: 30px; */
    /* border: 1px solid #ccc; */
    /* box-shadow: 0px 1px 2px rgba(89, 18, 255, 0.1); */
    text-align: left;
    padding-left: 20px;

}





strong {
    font-weight: bold;
}


.table_image{
 max-width: 420px;
  height: auto;
  text-align: left;
}
.table_image img{
  width: 100%;
  height: 100%;
}



  .slider{
      position: relative;
      width: 100%; 
      height: 470px; 
      margin: 0 auto;
      overflow: hidden; 
      box-shadow: 0px 0px 10px rgb(230, 230, 230);
      padding: 0;
      border-radius: 20px;
      background-color: #fdfdfd;
      margin-top: 60px;
    }
    .slide{ 
      /* background-color: #3d3636; */
      overflow: hidden; 
      position: absolute;
      top:0;
      width: 100%;
      height: 470px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 1s;
      border-radius: 20px;
  }
  .slide > img{
    /* border-radius: 20px; */
      width: 100%;
      /* background-color:#252525; */
      height: 100%;
      object-fit: contain;
      cursor: pointer;
  }
  button{
      background: none;
      border: none;
  }
  button .fas{
      color: rgb(224, 224, 224);
  }
  .btn-slide{
      position:absolute;
      top:50%;
      z-index: 1;
  /* color: #000000; */
      height: 5rem;
      width: 5rem;
      cursor: pointer;
  }
  .prev{
      left:3rem;
      transform: translate(-50%, -50%);
  }
  .next{
      right: 3rem;
      transform: translate(50%, -50%); 
    }
    .dots-container{
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
    }
    .dot img{
    box-shadow: 0px 0px 12px rgba(71, 71, 71, 0.1);
    /* padding: 10px; */
    /* background: rgba(39,39,39, .5); */
      width: auto;
      height: 70px;
      margin: 15px 5px;
      /* border-radius: .5rem; */
      cursor: pointer;
  }
  .dot.active{
  /* background:#272727; */
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 49, 49, 0.8);
    filter: blur(0.5);
    backdrop-filter: blur(6px);
    z-index: 9999;
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
  }
  
  .popup-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


.close-btn{
  font-size: 20px;
}
  .active-border{
    border-bottom: 1px solid orange
  }
.related{
  margin-left:60px;
  display: flex;
  justify-content: flex-start;
}

.video{
  margin-right: 75px;
  margin-left:60px;
  aspect-ratio: 16 / 9;
  /* width: 100%; */
}
.video iframe{
  height:550px;
}
.product_page_title{
  margin-left: 60px; margin-top: 50px; font-size:22px
}


  @media screen and (max-width: 900px) 
  {
    
  }
  @media screen and (max-width: 900px) 
  {
    
    .dots-container{
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
    }
    .dot img{
    box-shadow: 0px 0px 12px rgba(71, 71, 71, 0.1);
    /* padding: 10px; */
    /* background: rgba(39,39,39, .5); */
      width: auto;
      height: 70px;
      margin: 15px 5px;
      /* border-radius: .5rem; */
      cursor: pointer;
  }
      .slider{
     width: 100%;
     padding: 0;
     height: 300px;
      }
      .slide{
     /* width: 100%; */
     height: 300px;
      }
      .product-container2
      {
        /* background:   linear-gradient(45deg,#8c8c8c,#252525); */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: block;
      }
      .product-image{
        width: 100%;
        padding: 5px 5px;
        margin-left: 0px;
      }
      .slide > img{
        width: 100%;
        /* background-color:#252525; */
        height: 100%;
        object-fit: contain;
        cursor: pointer;
    }
      .product-description{
        padding-left: 20px;
        justify-content: left;
        flex-wrap: wrap;
      }
      .product_title,.table_title{
        padding-left: 20px;
        justify-content: left;
      }

      .product_title p,.table_title p {
        float: none;
        text-align: center;
        position: static;
        /* background-color: #303030; */
        padding: 0;
    }
   
   
      .product_page_title{
        margin-left: 20px; margin-top: 50px; font-size:22px
      }
      .video{
      

        /* height: 300px; */
        /* width: auto; */
     margin: 10px 20px;
      }
      .video iframe{
        height:250px;
      }
  }


  @media (max-width: 768px) {


    .table_image{
      max-width: 420px;
       height: auto;
       text-align: left;
     }
     .table_image img{
       width: 100%;
       height: 100%;
       margin-bottom: 20px;
     }
     

    .product-description {


      flex: 1; /* Make the description section take full width on mobile */
      padding: 20px; /* Add some padding for better spacing on mobile */
    }
  
    .product-image {
      margin-left: 0; /* Remove left margin on mobile */
    }
  
    table {
      /* max-width: 50%; */
      display: block;
      overflow-x: auto; 
      text-align: center;
      /* display: flex;
      justify-content: center; */
      width: 100%;
    }
  
    tr{
    width: 100%;
    
  }
  td, th {
    /* white-space: nowrap; Prevent table cells from wrapping */
    /* display: block; */
    width: 100%;
    }
  
    th:first-child,
    td:first-child {
      padding-left: 10px;
    }
  
    th:last-child,
    td:last-child {
      padding-right: 10px;
    }
  }

  @media screen and (max-width: 800px) 
  {
    .related{
      flex-direction: column;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: 0px;
    }
    .product-card {
      height: 450px;
      width: 370px;
      }
      
      .product-card img {
      max-width: 100%;
      height: 390px;
      
      /* border-bottom: 0.2px solid #dddddd; */
      }
  }

/* ---------- our product home page --------------- */

#our_products{
  padding: 30px 60px 0px 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 auto;
}


.product_name {
  padding-top: -100px;
  margin: 0;
  /* line-height-step: 0; */
font-size: 30px; 
  font-weight: 500;
  margin-top: 14px;
  /* color : #003559; */
}

.product_desc {
  color: grey;
  font-size: 17.28px;
  margin-top: 14px;
}

.product_buttons {
  margin-top: 42px;
  ;
}

.visit {
  cursor: pointer;
  background-color: #000000;
  /* background-color:#003559; */
  border-radius: 2.76px; 
  border: 0;
  color: white;

  font-size: 16px; 
  margin-right: 7.2px;
  padding: 15px 25px;
}


.product_1 {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 480px;
  background-color: #fafafa ;
  filter: drop-shadow(0px 0px 5px #ebebeb);
  /* border: 0.5px solid rgb(240, 240, 240); */
  border-radius: 20px;
  overflow: hidden;
  z-index: 20;
}
.p1_image {
  /* padding-top: 40px; */
  /* margin: 20px; */
  height: 100%; /* 80vh * 14.4px */
  width: 1000px; /* 70vw * 14.4px */
  background: url('images/13.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1213;
  overflow: hidden;
/* border-radius: 30px; */
  /* filter: drop-shadow(0px 0px 15px #cccccc); */
    /* filter: drop-shadow(0px0 20px 40px #252525) brightness(1.5); */
    filter: drop-shadow(0px 0px 15px #b8b8b8);
}

.product_image{
  background: #976363;
  width: 1000px;
  height: 400px;
}
.product_info1 {
  margin-top: 0;
  padding: 0 30px;
    display: flex;
    flex-direction: column;
    width: 576px;
    /* opacity: 0; */
    z-index: 21;
  }
  
  
.product_2 {
  /* filter: drop-shadow(0px 0px 2px #efefef); */
  margin-top: 100px;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 480px;
  background-color: #fafafa ;
  filter: drop-shadow(0px 0px 5px #ebebeb); 
  /* border: 0.5px solid rgb(240, 240, 240); */
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.p2_image {
  
  height: 100%; /* 80vh * 14.4px */
  width: 1000px; /* 70vw * 14.4px */
    background: url('images/home_main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* filter: drop-shadow(0px 20px 40px #252525) brightness(1.5); */
    filter: drop-shadow(0px 0px 15px #cccccc);
    filter: drop-shadow(0px 0px 15px #b8b8b8);
}


.product_info2 {
  margin-top: 0;
  padding: 0 30px;
    display: flex;
    flex-direction: column;
    width: 576px
    /* opacity: 0; */
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}


.im_color{
  background-color: orange;
    animation: 1s ease-out 0s 1 slideInFromLeft;
  /* z-index: 10000; */
  position: absolute;
  height: inherit;
  width: 740px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {


.product_1 {
  flex-direction: column-reverse;
  height: auto;
  /* background-color: #555555; */
  margin-top: 0;
  padding-top: 0;
}

.product_info1 {
  width: 100%;
}

.product_info2 {
  width: 100%;
}



.product_2 {
  /* padding-top: 50px; */
  flex-direction: column;
  height: auto;
  /* background-color: #555555; */
  /* height: 70vh; */
}
#our_products{padding : 80px 20px}

.p1_image,
.p2_image {
  height: 370px;
  width: 100%;
  /* margin-bottom: 0; */

}

.product_info {
  width: auto;
}


.product_name {
  font-size: 35px;
  margin-top: 0;
}

.product_desc {
  font-size: 30;
  margin-top: 7px;
}


/* .visit {
  font-size: 3.5vw;
  padding: 1.3vw 2.5vw;
  margin-right: 14px;
  margin-bottom: 30px;
} */

.product_buttons {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 15px;
}
}


.row {
  display: flex;
  /* align-items: center; */
  padding: 100px 60px;
  /* background-color: #eaeaea;
  height: 450px; */
}

.image-container {
  width: 40%;
  height: 100%;
   /* Adjust the width as needed */
  /* background: #cecece; */
  /* height: max-content; */
  
}

.image-container img {
  width: 100%;
  height: auto;
}

.text-container {
  width: 60%; /* Adjust the width as needed */
  padding: 0 20px; /* Add padding as desired */
}



@media screen and (max-width: 767px) {
.row{flex-direction: column;
padding: 0 10px;
}
.image-container {
  width: 100%; /* Adjust the width as needed */
  /* background: #cecece; */
  /* height: max-content; */
  
}

.image-container img {
  width: 100%;
  height: auto;
}

.text-container {
  width: 100%; /* Adjust the width as needed */
  padding: 20px 10px; /* Add padding as desired */
}



}

/* ---------------- start about -------------------- */




.about_row {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  /* background-color: #eaeaea;
  height: 450px; */
}

.about_image-container {
  width: 50%; /* Adjust the width as needed */

  
}


.about_image-container img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 0px 10px #ebebeb);
  border-radius: 15px;
}

.about_text-container {
  width: 50%; /* Adjust the width as needed */
  padding: 0 30px; /* Add padding as desired */
  
  text-align: justify;
  text-justify: inter-word;
}
.welcome-image img{
  width: 100%;
  height: 450px; 
 filter: drop-shadow(0px 0px 25px rgba(187, 187, 187, 0.808));
  /* border-radius: 15px; */
  border-radius: 50%;
  
}

.about_text-container span {
  display: block;
  margin-bottom: 15px;
}
.show_stat{
  /* max-width: 1300px; */
  margin-top : 80px;
  display: flex;
  justify-content: space-between;
  padding: 40px 180px;
  width: 100%;
  /* font-size: 40px; */
  height: max-content;
  align-items: center;
  border-radius: 10px;
  color:black;
  /* flex-direction: column; */
  background-color: #f2f2ff;
}

.stat_container{
  background-color: #f2f2ff;
}
.stat{
  display: flex;
  flex-direction: column;
}
.stat_title{
  font-size: 20px;
  font-weight: 400;
}
.stat_number{
  font-weight: 500;
  font-size: 35px;

}


.mission_vision{
padding: 20px 70px;
}
.mission{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.mission_desc{
  width: 40%;
  text-align: justify;
  text-justify: inter-word;
}
.mission_image{
  width: 60%;
  display: flex;
  justify-content: center;
}
.mission_image img{
  max-height: 300px;
}



.vision{
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.vision_desc{
  width: 40%;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
}
.vision_image{
  width: 60%;
  display: flex;
  justify-content: center;
}
.vision_image img{
  max-height: 300px;
}

.vision_title{
  display: block;
  font-size: 55px;
  text-align: right;
  margin-bottom: 30px;
}

.our{
  display: block;
}
.vision_text{
  
  display: block;
}

.mission_title{
  display: block;
  font-size: 55px;
  text-align: left;
  margin-bottom: 30px;
}

.our_mission{
  display: block;
}
.mission_text{
  
  display: block;
}

.mission_vision {
  padding: 20px;
}

.mission,
.vision {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mission_image img,
.vision_image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

.mission_desc,
.vision_desc {
  width: 100%;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
  .mission_vision {
      padding: 20px;
  }

  .mission {
    flex-direction: column-reverse;
  }
  .vision{
    flex-direction: column;
  }

  .mission_desc,
  .vision_desc {
      width: 100%;
  }

  .mission_image,
  .vision_image {
      width: 250px;
      /* height: 300px; */
  }
}

/* Responsive styles for larger screens */
@media screen and (min-width: 1200px) {
  .mission_vision {
      padding: 80px;
  }

  .mission,
  .vision {
      flex-direction: row;
  }

  .mission_desc,
  .vision_desc {
      width: 40%;
  }

  .mission_image,
  .vision_image {
      width: 60%;
  }
}


@media screen and (max-width: 767px) {
  
  .about_row {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    flex-direction: column-reverse;
  }
  
  .about_image-container {
    width: 100%; /* Adjust the width as needed */    
  }
  
  .about_image-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 10px #ebebeb);
    border-radius: 8px;
  }
  
  .about_text-container {
    width: 100%; /* Adjust the width as needed */
    padding: 0 10px; /* Add padding as desired */
  }
  
  .about_text-container span {
    display: block;
    margin-bottom: 15px;
  }
  .show_stat{
  flex-direction: column;
    /* justify-content: center;  */
    align-items: center;
    width: 100%;
    padding: 40px 40px;
    margin-top : 20px;
  }
  
  .stat_container{
    width: 100%;
    background-color: #f2f2ff;
  }
  .stat{
    display: flex;
    /* width: 100%;  */
    flex-direction: column;
    padding-top: 30px;
  }
  .stat_title{
    width: 100%;
    font-size: 20px;
    font-weight: 400;
  }
  .stat_number{
    /* width: 100%; */
    font-weight: 500;
    font-size: 35px;
  }
  }



  .two h1 {
    text-transform: capitalize;
  }
  .two h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    content: "";
    background-color: #c50000;
  }
  
  .two h1 span {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 3em;
    padding-left: 0.25em;
    color: rgba(0, 0, 0, 0.4);
    padding-bottom: 10px;
  }
  .alt-two h1 {
    text-align:center;
  }
  .alt-two h1:before {
    left:50%; margin-left:-30px;
  }
  

  .eight span {
    text-align:center;
   
    text-transform:uppercase;
    font-size:26px; letter-spacing:1px;
    
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
  }
  
  .eight span:after,.eight span:before {
    content: " ";
    display: block;
    border-bottom: 2px solid #ccc;
    background-color:#f8f8f8;
  }
  






/* ------------close abouyt -------- */




.welcome_text
{
  text-align: center;
  padding: 10px 0;
  font-size:22px;
  font-Weight: 500;
  display: block;
font-weight: 0;
}

.liva_text{

  text-align: right;
  padding: 10px 0 0 0;
  font-size:70px;
  font-Weight: 700;
  color: #003559;
  display: block;
  text-transform: uppercase;
  transform: translateX(350px);

}
.slogan_text{
  text-align: right;
  padding: 90px 0 0 0;
  font-size:18px;
  font-Weight: 500;
  /* color: orange; */
  display: block;
  transform: translateY(250px);
  opacity: 0;
  /* position: absolute; */
  /* bottom: 0; */
}
.text-container span {
  display: block;
  margin-bottom: 15px;
}
.text_highlight
{
  font-size: 25px;
  font-weight: 500;
}


.catlog_container
{
  background-color: #f2f2f2;
  /* background-color: #f0f0f0; */
}

.circle_bg{
  margin-left: -150px;
  margin-top: -150px;
  position: absolute;
  height: 400px;
  width: 450px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  background-color: var(--bgcolor);
}
.circle_bg2{
  margin-top: -150px;
  position: absolute;
  margin-left: 950px;
  /* display: flex;
  justify-content: flex-end; */
  max-width: 1300px;
  /* right: -100px; */
  height: 450px;
  width: 450px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  overflow: hidden;
  background-color: var(--bgcolor);
}
.circle_bg3{
  margin-top: 250px;
  overflow: hidden;
  position: absolute;
   margin-left: 400px;
  /* display: flex;
  justify-content: center; */
  /* right: -100px; */
  height: 500px;
  width: 500px;
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
  background-color: var(--bgcolor);
}

@media (max-width: 800px)
{
      .circle_bg,.circle_bg2,.circle_bg3{
        /* margin-left: 0px;
        height: 150px;
  width: 150px; */
  display: none;
      }

}

.row_catolog
{
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding: 0px 60px;
  background-color: #f2f2f2;
  height: max-content;
  width: 100%;
}
.download_catlog{
  font-size: 35px;
  padding: 20px 0;
  font-weight: 500;
}
.download_catlog_text{
  padding: 10px 0 40px 0;
  font-size: 16px;
  font-weight: 300;
}
.catalog_container{
  display: flex;
  flex-direction: column;
  /* padding-right: 0px; */
  width: 50%;
}
.catlog_image{
  width: 50%;
  margin-left: 140px;
}
.catlog_image img {
  width: 80%;
  height: auto;
}
.visit_products{
  /* display: flex; */
  justify-content:center;
  text-align: center;
  /* flex-direction: column; */
  margin-bottom: 80px;
  text-transform: uppercase;
  /* color:#003559; */
}
.visit_text{
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 5px;
  display: block;
}

.product_text{
  font-size: 20px;
  font-weight: 0;
  line-height: 50px;
  letter-spacing: 5px;
  display: block;
}

.hr{
  align-self: center;
  width: 80px;
  height: 2px;
  border: 2px solid orange;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .row_catolog{
    flex-direction: column-reverse;
    padding: 20px 10px
  } 
  .catalog_container{
    padding : 0px;
    width: 100%;
  }
  .catlog_image{
    width:100%;
    margin-left: 0px;
    text-align: center
  }
  .catlog_image img {
    width: 80%;
    height: auto;
  }
}



.why_box{
  height: 260px;
  width: 260px;
  background-color: #fbfbfb;
  /* background-image: linear-gradient(to right top, #fefefe, #f3f8ff, #dff5ff, #c8f4fa, #b9f1e8); */
  border-radius: 10px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0px 0px 5px rgba(197, 197, 197, 0.5);
  /* filter: drop-shadow(0px 0px 4px #aaaaaa); */
}
.why_box img{

  height: 60px;
  width: 60px;
}

.why_us{
  display: flex;
  padding: 10px 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.why_title p{
  font-weight: 0;
  font-size: 20px;
  padding-top: 10px;
}
.why_desc p{
  padding-top: 10px;
  font-weight: 10;
  font-size: 14px;  
}


.why_box {
  transition: background-color 0.8s;
}

.why_box:hover {
  background-color: rgb(0, 0, 0);
  cursor: pointer;
  color: rgb(255, 255, 255);
  transition: width 0.5s;
}
.why_box:hover img {
  filter: invert(100%);
}

.why_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000000;
  /* transition: width 1s; */

  z-index: -1;
  border-radius: 6px;
}

.why_box:hover::before {
  width: 100%;
  color: #ffffff;
}


.why_us_title{
  text-align: center;
  padding-top:130px;
}


@media screen and (max-width:680px) {
.why_us{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px 10px 10px;
}
.why_us_title{
  padding-top: 40px;
}
.why_box{
  /* align-items: center; */
  /* justify-content: center; */
}

}


.why_box :hover img{
  /* filter: invert(100%); */
  /* background-color: black;
  /* background-color: orange; */
}


/* .why_box {
  background: linear-gradient(#fafafa, #fafafa 50%, #000000 50%, #000000);
  background-size: 100% 200%;
 
  transition: background 0.5s;
}

.why_box:hover {
  background-position: 100% 100%;

cursor: pointer;

  color: rgb(255, 255, 255);
  
} */


footer {
  position: relative;
  background-color: #f1f1f1;
  color: rgb(255, 255, 255);
  height: max-content;
  font-weight: 10;
  bottom: 0;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(216, 216, 216, 0.829), rgba(192, 192, 192, 0.925)),
              url(images/im.jpg);
  filter: blur(7px); /* Adjust the blur value as needed */
  z-index: -1;
}

  .footer_contact{
  display: grid;
  /* justify-content: space-between; */
  padding: 30px 0px;
  margin: 0px 80px;
  border-bottom: 0.5px solid #8f8f8f;
  grid-template-columns: 400px 300px 400px;
  grid-gap: 50px;
}
.footer-content {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  padding: 100px 120px 30px 120px;
  grid-template-columns: 500px 200px 200px;
  /* align-items: center; */
  grid-gap: 70px;
  /* background-color: #ececec; */
  color: #000;
  border-radius: 16px;
}

h3 {
  margin: 0;
  padding-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  /* padding-top: 10px; */
  padding-bottom: 10px;
}

li {
  padding-bottom: 5px;
}

a {
  color: #575757;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer-column img {
height: 100px;

}

.footer_text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
  padding-right: 60px;
  text-justify: inter-word;
}


.single-cta i {
  color: orange;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.cta-text h4 {
  color: #050505;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer_gallery_images{
  display: flex;
  flex-wrap: wrap;
}
.footer_gallery_images img{
  height: 60px;
  padding-right: 20px;
  padding-top: 10px;
  width: 80px;
  object-fit: cover;
}

.copyright{
  font-size: 16px;
  padding: 40px 0;
  text-align: center;
  color:#0f0f0f
}


/* Common styles for all devices */
footer {
  background-color: #dddddd67;
  color: rgb(255, 255, 255);
  font-weight: 10;
  backdrop-filter: blur(20px);
}

.footer_contact {
  display: grid;
  padding: 30px 0px;
  margin: 0px 10%;
  border-bottom: 0.5px solid #494949;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.footer-content {
  display: grid;
  padding: 50px 60px 30px 60px;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  margin: 0 60px;
}

.single-cta i {
  color: orange;
  font-size: 20px;
  margin-top: 8px;
}

.footer-column img {
  height: 80px;
}

.footer_text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
  padding-right: 0;
  text-justify: inter-character;
  text-align: justify;
}

.footer-gallery-images {
  display: flex;
  /* flex-wrap: wrap; */
}

.footer-gallery-images img {
  height: 50px;
  padding-right: 10px;
  padding-top: 10px;
  width: 60px;
  object-fit: cover;
}
.footer_links{
  display: flex;
  flex-direction: column;
}
/* Styles for small devices */
@media screen and (max-width: 767px) {
  .footer-contact {
    margin: 0px 5%;
  }
  .footer_links{
    display: flex;
    flex-wrap: wrap; 
  flex-direction: row;
}.footer_links li{
  padding-right: 14px;

}
  .footer-content {
    padding: 30px 20px 10px 20px;
    margin: 0px 15px;
  }

  .footer-contact,
  .footer-content {
    grid-gap: 10px;
  }

  .footer_contact,
  .footer-content ,
  .footer-gallery-images {
    grid-template-columns: 1fr;
  }

  .cta-text {
    padding-left: 10px;
  }

  .footer-gallery-images img {
    height: 40px;
    padding-right: 5px;
    padding-top: 5px;
    width: 50px;
  }
}

/* Styles for medium devices */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer_contact {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Styles for large devices */
@media screen and (min-width: 1024px) {
  .footer_contact {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}









.btn-1::before {
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.btn-1 span {
  color: rgb(255,255,255);
  border: 1px solid rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}
.btn-1 span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}
:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}
.btn::before,
::after {
  position: absolute;
  content: "";
}


.btn {
  position: relative;
  /* display: inline-block; */
  width: auto; 
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  /* margin: 0px 25px 15px; */
  min-width: 150px;
}
  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
  }
  .btn.hover-filled-slide-left::before {
    top: 0; bottom: 0; left: 0;
      height: auto;
      width: 100%;
  }
  .btn.hover-filled-slide-left:hover::before {
    width: 0%;
  }



  .visit_products {
    position: relative;
    overflow: hidden;
  }
  
  .visit_products .visit_text,
  .visit_products .product_text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: #000;
    white-space: nowrap;
  }
  
  .visit_products .visit_text::before,
  .visit_products .product_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transform-origin: left center;
    transform: scaleX(1);
    transition: transform 1.25s ease;
  }
  
  .visit_products .visit_text::after,
  .visit_products .product_text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transform-origin: right center;
    transform: scaleX(0);
    transition: transform 1s ease-in-out;
  }
  
  .visit_products.animate-in .visit_text::before,
  .visit_products.animate-in .product_text::before {
    transform: scaleX(0);
  }
  
  .visit_products.animate-in .visit_text::after,
  .visit_products.animate-in .product_text::after {
    transform: scaleX(1);
  }
  
 






  /* -------pop up form --------- */

  /* Style for the pop-up form */

  .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  /* The dark overlay */
  .overlayed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15165;
    background-color: rgba(0, 0, 0, 0.932);
    overflow: hidden;
    font-family: 'poppins';
  }
  
  /* Center the form vertically and horizontally */
  .popup-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .popup-form label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }
  
  .popup-form input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 0px;
    border-bottom: 0.5px solid #383838;
  }
  
  .popup-form button {
    padding: 10px 20px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    word-spacing: 20px;
  }



  /* Add your existing CSS styles here */

/* Mobile view (less than or equal to 768px) */
@media (max-width: 768px) {
  .popup-form {
    width: 90%;
    max-width: 300px;
    top:30%;
  }
}

/* Tablet view (between 769px and 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .popup-form {
    width: 70%;
    max-width: 400px;
  }
}

/* Larger screen view (greater than 1024px) */
@media (min-width: 1025px) {
  .popup-form {
    width: 50%;
    max-width: 500px;
  }
}

  

body, h1, h2, p, form, label, input, textarea, button {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Main container for the contact section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
}

/* Map container on the left side */
.map-container {
  flex: 1;
  height: 600px; /* Adjust the height as needed */
  max-width: 50%;
}

/* Contact information on the right side */
.contact-info,
.contact-form {
  flex: 1;
  /* max-width: 50%; */
  padding: 20px;
  padding-top: 0;
}

/* Style for the contact form */
.contact-form h2 {
	margin-bottom: 15px;
}
.contact-info p{
font-size: 16px;}
.form-group {
  margin-bottom: 20px;
}

/* label {
  display: block;
  font-size: 18px;
  font-weight: bold;
} */

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 0px solid #ccc;
  border-radius: 1px;
  border-bottom: 0.5px solid #777777;
  background-color: #f7f7f7;

}

textarea {
  resize: vertical;
}



/* Media queries for responsiveness */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .map-container,
  .contact-info,
  .contact-form {
    width: 100%;
  }

  .map-container {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-form {
    order: 3;
  }

  .contact-info {
    order: 1;
  }

  .map-container {
    order: 2;
  }
}

/* Your existing CSS styles... */

/* Flexbox styles to achieve the desired layout */
.contact-section {
  display: flex;
  flex-wrap: wrap;
}

.map-container {
  flex: 1;
  max-width: 50%;
  height: 600px;
}

/* .contact-right {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  padding-top: 0;
} */

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .map-container,
  .contact-right {
    max-width: 100%;
    padding: 10px;
  }

  .map-container {
    height: 100px;
  }
}







.review_box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: orange;
  /* background-color: rgb(216, 165, 26); */
  border-radius: 10px;
  padding: 20px 30px;
  display: none; /* Hide the message box by default */
}












.drop_mail{
  display: flex;
  justify-content: center;
  color: orange;
  margin: 30px 0;
}





.link_styles{
  float: right;
  font-size: 18;
  color: white;
  margin-right: 80px;
  margin-top: 60px;
  word-wrap: normal;
  
}

.link_styles a{
  word-wrap: normal;
  color: rgb(247, 247, 247);
}
#grow {
  width: 100%;
  /* height: auto;   */

  transform: scale(0);
  }

@media screen and (max-width: 900px) {

  .liva_text{
    transform: translateX(0);
    text-align: center;
    font-size: 40px;
  }
  .welcome-image img{
    border-radius: 2%; 
  }
  #grow{
    transform: scale(1);
  }

  .product_bg {
      height: 300px; /* Adjust the height for smaller screens */
      padding-top: 80px; /* Adjust padding for better alignment */
  }

  .product_bg span {
      font-size: 36px; /* Adjust font size for smaller screens */
      top: 25px; /* Adjust the vertical position */
      left: 20px; /* Adjust the horizontal position */
      width: 80%; /* Adjust the width for better readability */
  }

  .link_styles {
      margin-right: 20px; /* Adjust margin for better alignment */
      margin-top: 20px; /* Adjust margin for better alignment */
  }
}

.pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  background-color: white;
  color: black;
  border: 1px solid black;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: black;
  color: white;
}

.pagination .active {
  background-color: black;
  color: white;
  pointer-events: none;
}




#myid{
  /* position: absolute; */

  visibility: hidden;
  /* background-color: #fff; */
  height: 30px;
  /* margin-top: 50px; */
  width: 00px;
  /* margin:20px 0 0 0; */
}
#change-lang:hover #myid{

  visibility: visible;
  padding-right: 100px;
}
#change-lang{
  /* padding-top: 20px; */
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* height: 10px; */
}




.goog-te-gadget-icon {
  display:none;
}
.goog-te-banner-frame {
  display: none !important;
}

.skiptranslate iframe{
  visibility: hidden !important;
}
.goog-te-gadget-simple {
  border:0 !important;
  font-size: 10pt;
  font-weight:800;
  display: inline-block;
  /* padding:2px 2px !important; */
  cursor: pointer;
  zoom: 1;
  height: 60px;
  /* margin: 20px 20px; */
  background-color: unset !important;

}

.goog-te-gadget-simple  span {
   color:#060507 !important;
}






.goog-te-gadget-icon {
  display: none;
}

.goog-te-banner-frame {
  display: none !important;
}

.skiptranslate iframe {
  visibility: hidden !important;
}

.goog-te-gadget-simple {
  border: 0 !important;
  font-size: 10pt;
  font-weight: 800;
  display: inline-block;
  cursor: pointer;
  zoom: 1;
  background-color: unset !important;
}

.goog-te-gadget-simple span {
  color: #0c0a0f !important;
}

/* Mobile styles */


/* .accessory-buttons{
  background: #000;
  height: 500px;
  width: 500px;
  z-index: 1244;
} */
.btn-top{
  opacity: 1;
      text-transform: uppercase;
    display: inline-block;
    padding: 6px 11px;
    margin: 0 5px;
    border: 0.5px solid rgb(102, 102, 102);
    border-radius: 11px;
    /* border: 1px so`lid black; */
    /* border: none; */
    /* border-bottom: 1px solid #c01212; */
    /* background-color: rgb(24, 23, 23); */
    /* color: white; */

    cursor: pointer;
    /* border-radius: 15px; */
    font-size: 15px;
}
.btn-bottom{
  opacity: 1;
      text-transform: uppercase;
    display: inline-block;
    padding: 6px 11px;
    margin: 0 5px;
    border: 0.5px solid rgb(102, 102, 102);
    border-radius: 11px;
    /* border: 1px so`lid black; */
    /* border: none; */
    /* border-bottom: 1px solid #c01212; */
    /* background-color: rgb(24, 23, 23); */
    /* color: white; */

    cursor: pointer;
    /* border-radius: 15px; */
    font-size: 15px;
}
/* Wrapper */
.icon-button {
	background-color: white;
	border-radius: 2.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 1.3rem;
	height: 2.6rem;
	line-height: 2.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 2.6rem;
}

/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 2.6rem;
	margin: -1.3rem;
}

/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 2.6rem;
	left: 0;
	line-height: 2.6rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 2.6rem;
	z-index: 10;
}





.twitter span {
	background-color: #4099ff;
}
.facebook span {
	background-color: #3B5998;
}
.google-plus span {
	background-color: #db5a3c;
}
.tumblr span {
	background-color: #34526f;
}
.instagram span {
	background-color: #517fa4;
}
.youtube span {
	background-color: #bb0000;
}
.pinterest span {
	background-color: #cb2027;
}



.icon-button .icon-twitter {
	color: #4099ff;
}
.icon-button .icon-facebook {
	color: #3B5998;
}
.icon-button .fa-tumblr {
	color: #34526f;
}
.icon-button .icon-google-plus {
	color: #db5a3c;
}
.icon-button .fa-instagram {
	color: #517fa4;
}
.icon-button .fa-youtube {
	color: #bb0000;
}
.icon-button .fa-pinterest {
	color: #cb2027;
}




.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus,
.icon-button:hover .fa-tumblr,
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-youtube,
.icon-button:hover .fa-pinterest {
	color: white;
}

@media all and (max-width: 680px) {
  .icon-button {
    border-radius: 1.6rem;
    font-size: 0.8rem;
    height: 1.6rem;
    line-height: 1.6rem;
    width: 1.6rem;
  }

  .icon-button:hover span {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 1.6rem;
    margin: -0.8rem;
  }

  /* Icons */
  .icon-button i {
	  height: 1.6rem;
	  line-height: 1.6rem;
	  width: 1.6rem;
  }

  .pinterest {
   display: none; 
  }

}
.whatsapp2 {
  position: fixed;
  bottom: 10px; /* Adjust the distance from the bottom as needed */
  right: 20px; /* Adjust the distance from the right as needed */
  z-index: 1000000;
  width: 100px;
}

.whatsapp2 a {
  display: block;
  text-decoration: none;
  /* background-color: #25d366; Set your desired background color */
  padding: 10px;
  border-radius: 50%;
}

/* Add animation to the path element */
@keyframes myAnimation {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(-20px);
  }
  100% {
      transform: translateX(0);
  }
}

svg {
  animation: myAnimation 2s infinite;
}




.image {
  /*   background-color: #f2f2f2; */
    line-height: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 400px;
    padding: 5%;
  }
  .tagline {
    position: absolute;
    padding-bottom: 16px;
    color:orange  ;
    font-size: 48px;
    opacity: 0;
  }
  .tagline2
{
  position: absolute;
  padding-top: 100px;
  color:rgb(221, 221, 221)  ;
  font-size: 25px;
  opacity: 0;
}
  .image > div {
    width: 50%;
  }
  .image img {
    height: 400px;
    filter: brightness(50%);
    width: 100%;
    object-fit: cover;
  }
  
  #grow-tagline {
    transform: translateY(60px);
  }
  #grow-tagline2 {
    transform: translateY(60px);
  }
  

  .welcome-texts{
    display: flex;
    flex-direction: column;
  }
  
  .liva{
    position: absolute;
    font-size: 80px;
    /* padding: 50px 0 0 0 */
    padding-top: 0;
    
  }
  
  .railling{
    position: absolute;
    font-size: 80px;
    /* padding: 30px; */
  }


  iframe{
    width: 100%;
  }


  html {
    height: auto;
    }