@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}
@media screen and ( max-width:1800px) {
    html,body{
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x:hidden;
        scroll-behavior: smooth;
    }
}
:root{
  --main-color:rgb(247, 179, 32);
  --safran-color:#f59331;
  --white-color:white;
  --balck-color:black;
  --box-shadow:0px 5px 15px 0px rgba(0, 0, 0, 0.9);

}
/*===========================================navbar==================================================*/
.sticky{
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .navebar-brand{
    width: 220px;
  }
  .navebar{
      background-color:var(--white-color);
      box-shadow:0px 0px 5px 1px;
      padding-bottom:10px;
      padding-top: 10px;   
  }
  #nav-color{
      color:var(--main-color);
      font-size:18px;
      font-weight: 600;
      
  }
  #nav-color:hover{
      color:var(--black-color);

      
      
  }
  .navebar-brand{
    width: 120px;
  }
  /* #navebar-brand{
      width: 100px;
      color: white;
      font-size: 25px;
      padding-right:50px;
      font-weight: 600;
  } */
  /* #navbarScroll img{
    width: 100px;
  } */
  
  .nav-button{
      position: relative;
      padding: 10px 40px;
      border-radius: 3px;
      border:none;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 2px;
      background:var(--main-color);
      color: #050505;
      overflow: hidden;
      box-shadow: 0 0 0 0 transparent;
      -webkit-transition: all 0.2s ease-in;
      -moz-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in;
      text-decoration: none;
      
    }
  .nav-button a{
     
      color:var(--white-color);
      text-decoration: none;
    
      
    }
    
    .nav-button:hover {
      background-color: rgb(0, 0, 0) !important;
      box-shadow: 0 0 30px 5px  rgb(88, 88, 88);
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      color: white;
      background: none;
    }
    
    .nav-button:hover::before {
      -webkit-animation: sh02 0.5s 0s linear;
      -moz-animation: sh02 0.5s 0s linear;
      animation: sh02 0.5s 0s linear;
    }
    
    .nav-button::before {
      content: '';
      display: block;
      width: 0px;
      height: 86%;
      position: absolute;
      top: 7%;
      left: 0%;
      opacity: 0;
      background: #fff;
      box-shadow: 0 0 50px 30px #fff;
      -webkit-transform: skewX(-20deg);
      -moz-transform: skewX(-20deg);
      -ms-transform: skewX(-20deg);
      -o-transform: skewX(-20deg);
      transform: skewX(-20deg);
    }
    
    @keyframes sh02 {
      from {
        opacity: 0;
        left: 0%;
      }
    
      50% {
        opacity: 1;
      }
    
      to {
        opacity: 0;
        left: 100%;
      }
    }
    .nav-button:active {
      box-shadow: 0 0 0 0 transparent;
      -webkit-transition: box-shadow 0.2s ease-in;
      -moz-transition: box-shadow 0.2s ease-in;
      transition: box-shadow 0.2s ease-in;
    }
  #nav-main{
    margin-right: 50px;
    
  }
/* ==================================================background text=================================================*/


.background-img{
    background:url(../assets/img/home/HOME-BG-IMG.jpg);
    width: 100%;
    height:100vh;
    background-size:cover;
    background-repeat: no-repeat;
    background-position:center;
    position: relative;
    z-index:1;

}

.home-back-1::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background:var(--balck-color);
    z-index:-1;
    opacity: 0.6;
}
.bg-text{
    color: white;
    padding-top: 180px;
    width: 600px;
    
}
.bg-text h1{
    color: white;
    font-weight: 700;
    
}
.bg-text span{
    color: var(--safran-color);
    font-weight: 600;
    font-size: 30px;
}
.text-but{
    position: relative;
    padding: 10px 40px;
    border-radius: 3px;
    border:1px solid white;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background:var(--safran-color);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 20px;
    
  }
  
  
  .text-but:hover {
    background-color: rgb(0, 0, 0) !important;
    box-shadow: 0 0 30px 5px  rgb(88, 88, 88);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: white;
    background: none;
  }
  
  .text-but:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
  }
  
  .text-but::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  @keyframes sh02 {
    from {
      opacity: 0;
      left: 0%;
    }
  
    50% {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      left: 100%;
    }
  }
  
  .text-but:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
  }

.bg-text p{
font-size:20px;
animation-delay:0.7s; 
}

.bg-text h1{
    font-size: 60px;
    animation-delay:0.s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.bg-text{
  
    width: 70%;
    
}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);

    }

}
.text-but{
    opacity: 0;
    transform: translateY(30px);
    animation: butn 0.5s linear forwards;
    animation-delay: 1.5s;
}
@keyframes butn{
    100%{
        opacity: 1;
        transform: translateY(0px);
        

    }

}
/* ========================================= mobile screen ================================== */
@media (max-width:768px){
  .background-img{
    background-image:url(/assets/img/home/HOME-BG-IMG.jpg);
    width: 100%;
    height:50vh;
    background-size:cover;
    background-repeat: no-repeat;
    background-position:center;
    position: relative;
    z-index:1;

}

.home-back-1::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background:var(--balck-color);
    z-index:-1;
    opacity: 0.6;
}

.bg-text{
    color: white;
    padding-top: 100px;
    width: 300px;
    margin-left: 30px;
}
.bg-text h1{
    color: white;
    font-weight: 700;
    padding-top: 10px;
}
.bg-text span{
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 50px !important;


}

.bg-text p{
  font-size:12px;
  animation-delay:1.5s; 
  }
  .bg-text h1{
      font-size: 30px;
      animation-delay:1s;
      
  }
  .bg-text h6{
      font-size: 30px;
      animation-delay:0.5s ;
      
  }
  .text-but{
    position: relative;
    padding: 7px 15px;
    border-radius: 3px;
    border:none;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background:var(--main-color);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 10px;
  }
}
/* ===================================================laptop screen=================================================== */
@media (min-width: 768px) and (max-width: 1280px){
  .background-img{
    background-image:url(/assets/img/home/HOME-BG-IMG.jpg);
    width: 100%;
    height:90vh;
    background-size:cover;
    background-repeat: no-repeat;
    background-position:center;
    position: relative;
    z-index:1;

}

.home-back-1::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background:var(--balck-color);
    z-index:-1;
    opacity: 0.6;
}


.bg-text{
    color: white;
    padding-top: 100px;
    width: 400px;
}
.bg-text h1{
    color: white;
    font-weight: 700;
}
.bg-text span{
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 50px !important;


}

.bg-text p{
  font-size:15px;
  animation-delay:1.5s; 
  }
  .bg-text h1{
      font-size: 40px;
      animation-delay:1s;
      
  }
  .bg-text h6{
      font-size: 30px;
      animation-delay:0.5s ;
      
  }
  .text-but{
    position: relative;
    padding: 7px 15px;
    border-radius: 3px;
    border:none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background:var(--main-color);
    color: #050505;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 10px;
  }
}
/* *****************************************************************client page**************************************************** */
.client-container{
  background-color:rgb(252, 252, 252);
  padding-bottom: -90px !important;
}
.client-head h3{
  color: var(--main-color);
  text-align: center;
  padding-top:40px;
  padding-bottom:50px;
  font-size: 30px;
  
}
.client img{
  margin-left: 60px !important;
}

.client-img-1 img{
  width: 150px !important;
  margin-top: 25px !important;
}
.client-img-2 img{
  width: 140px !important;
}
.client-img-3 img{
  width: 150px !important;
  margin-top:30px !important;
}
.client-img-4 img{
  width: 70px !important;
  margin-top: 20px;
}
.client-img-5 img{
  width: 130px !important;
  margin-bottom: 90px !important;
}
.client-img-6 img{
  width: 90px !important;
  margin-top: 10px !important;
}
  /* ========================================= mobile screen ================================== */
  @media (max-width:768px){
    .client-head h3{
      color: var(--main-color);
      text-align: center;
      padding-top:40px;
      padding-bottom:20px;
      font-size: 20px;
      
    }
    .client img{
      margin-left:10px !important;
    }
    
    .client-img-1 img{
      width: 120px !important;
      margin-top: 25px !important;
      margin-left:30px !important;
    }
    .client-img-2 img{
      width: 100px !important;
      margin-top: 10px !important;
      margin-left:30px !important;
    }
    .client-img-3 img{
      width: 110px !important;
      margin-top:30px !important;
      margin-left:30px !important;
    }
    .client-img-4 img{
      width: 50px !important;
      margin-top: 20px;
      margin-left:60px !important;
    }
    .client-img-5 img{
      width: 90px !important;
      margin-bottom: 90px !important;
      margin-left:30px !important;
    }
    .client-img-6 img{
      width: 70px !important;
      margin-top: 10px !important;
      margin-left:50px !important;
    }
  }
/* ===============================================home box=========================================================== */
.text-black-box h1{
  font-size: 20px;
  padding-top:50px;
  padding-bottom: 50px;
  margin-left: 20px;
  color: #000;
  
}
.icon-black-box-img img{
  font-size: 27px;
  width: 60px !important;
  padding-top:40px;
  padding-bottom: 50px;
  /* margin-right: 10px; */
  margin-left: 20px;
}
.icon-black-box img{
  font-size: 27px;
  width: 80px;
  padding-top:40px;
  padding-bottom: 50px;
  /* margin-right: 10px; */
}
.icon-black-box-1 img{
  font-size: 27px;
  width: 70px;
  padding-top:40px;
  padding-bottom: 50px;
  /* margin-right: 10px; */
}
.main-head-black-box{
  display: flex;
}
.box-bg-color{
  background-color: var(--white-color);
  padding-left:30px;

}
.main-head-black-box{
  padding-top:10px;
}
  /* ========================================= mobile screen ================================== */
  @media (max-width:768px){
    .text-black-box h1{
      font-size: 20px;
      padding-top:50px;
      padding-bottom:1px !important;
      margin-left: 20px;
      color: #000;
      
    }
    .icon-black-box-img img{
      font-size: 20px;
      width: 60px !important;
      padding-top:10px;
      padding-bottom: 10px;
      /* margin-right: 10px; */
      margin-left: 0px;
      margin-top: 25px;
    }
    .icon-black-box img{
      font-size: 20px;
      width: 80px;
      padding-top:10px;
      padding-bottom: 10px;
      /* margin-right: 10px; */
      margin-top: 25px;
      margin-right:-18px;
    }
    .icon-black-box-1 img{
      font-size: 20px;
      width: 70px;
      padding-top:20px;
      padding-bottom:10px;
      margin-right: -7px;
      margin-top: 20px;
      
    }
    .box-bg-color{
      background-color: var(--white-color);
      padding-left: 60px;
      padding-bottom: 40px;
    
    }
  }
/* =================================================about page==================================================== */
#about-img{
    padding-top: 100px;
    padding-bottom: 50px;
    text-align: center;
    
}
#about-img img{
  width:70%;
  height: 100%;
  padding-bottom: 50px;
  object-fit:cover;
  /* border-radius: 10px; */
    
}
.about-img{
   border-radius: 10px;
}
.about-text{
    padding-top:100px !important;
    z-index: 2;
    position: relative;
    padding-bottom: 100px !important;
    padding: 20px;
}
.about-text a{
    text-decoration: none;
    color:var(--white-color);
}
.about-text h6{
  font-size: 30px;
  font-weight: 500;
    color:var(--white-color);
    padding-bottom: 20px;
}
.about-text h1{
    font-size: 45px;
    font-weight: 600;
    color: var(--balck-color);
}
.about-text p{
    font-size: 15px;
  

}
.bg-color-about{
    background-color: var(--safran-color);
    
}

/* From Uiverse.io by mrhyddenn */ 
.about-button {
    position: relative;
    padding: 10px 40px;
    border-radius: 3px;
    border:none;
    background-color:var(--white-color);
    /* color: var(--white-color); */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 20px;
  }
  
  .about-button:hover {
    background:var(--balck-color);
    box-shadow: 0 0 30px 5px  rgb(147, 147, 150);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: white;
  }
  
  .about-button:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
  }
  
  .about-button::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  @keyframes sh02 {
    from {
      opacity: 0;
      left: 0%;
    }
  
    50% {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      left: 100%;
    }
  }
  
.about-button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
.about-icon img{
    width: 50px;
}
/* ========================================= mobile screen ================================== */
@media (max-width:768px){
  .about-text{
    padding-top:40px !important;
    z-index: 2;
    position: relative;
    padding-bottom: 30px;
    padding: 20px;
}
.about-text a{
    text-decoration: none;
    color:var(--white-color);
}
.about-text h6{
    color:var(--white-color);
    font-size: 20px;
}
.about-text h1{
    font-size: 25px !important;
    font-weight: 600;
    color: var(--balck-color);
}
.about-text p{
    font-size: 13px;
  

}
#about-img{
  padding-top:5px;
  padding-bottom: 50px;
  text-align: center;
  
}
.about-button {
  position: relative;
  padding:8px 30px;
  border-radius: 3px;
  border:none;
  background-color:var(--white-color);
  /* color: var(--white-color); */
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin-top: 20px;
}
}
/* ===================================================laptop screen=================================================== */
@media (min-width: 768px) and (max-width: 1023px){
  .about-text{
    padding-top:60px !important;
    z-index: 2;
    position: relative;
    padding-bottom: 50px;
    padding: 20px;
}
.about-text a{
    text-decoration: none;
    color:var(--white-color);
}
.about-text h6{
    color:var(--white-color);
}
.about-text h1{
    font-size: 35px;
    font-weight: 600;
    color: var(--balck-color);
}
.about-text p{
    font-size: 15px;
  

}
#about-img{
  /* padding-top: 100px; */
  padding-bottom: 50px;
  text-align: center;
  
}

}
/*----------------------------product page-------------------*/
.bg-img-product{
  background-color: var(--white-color);
  /* box-shadow: var(--box-shadow); */
  border-radius: 10px;
  padding: 50px !important;
  position: relative;
}
.blog-head-padd{
  padding-bottom: 100px;
  padding-top: 50px;
  background-image: url(/assets/img/background-img/about-bg-img.png);

}
#blog-head{
  font-size: 70px;
}
.blog-head h5{
  font-size: 30px;
  color: var(--main-color);
  text-align: center;
  padding-bottom: 50px;
}

/* -----------------------
product 6
------------------------------ */
.nav-pills{
  padding-bottom:20px;
  align-items: center;
  border-bottom: 1px solid rgb(221, 218, 218);
  /* margin-bottom: 50px; */
  
}
.padd-product-row{
  padding-top: 60px;
}
.nav{
  justify-content: center;
}
.nav-item .active{
  background-color: var(--main-color);
  color: var(--white-color) !important;
  border-radius: 10px;

}
.nav-link-1{
  margin: 10px;
  padding: 10px 10px;
  color: var(--black-color) !important;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 500;
}
.nav-link-1:hover{
  margin: 10px;
  padding: 10px;
  background-color: var(--main-color);
  color: var(--white-color) !important;
}
.product-img img{
  width: 90%;
  height: 95%;
  /* padding-left: 30px; */
}
/* .product-img-text{
  padding-left: 30px;
} */
.product-img-text p{
  padding-top: 10px;
  font-size: 15px;
}
.product-img-text{
  padding: 10px;
}
.list-product li{
  font-size: 14px;
}

.product-img-text h3{
  color: var(--main-color);
  font-size: 30px;
  font-weight: 600;

}
.product-img img{
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}
/* ************************************* mobile screen*************************************************************************************** */
@media (max-width:768px){
  .bg-img-product{
    background-color: var(--white-color);
    /* box-shadow: var(--box-shadow); */
    border-radius: 10px;
    padding: 50px !important;
    position: relative;
  }
  .blog-head-padd{
    padding-bottom: 100px;
    padding-top: 50px;
    background-image: url(/assets/img/background-img/about-bg-img.png);
  
  }

  .blog-head h5{
    font-size: 20px;
    color: var(--main-color);
    text-align: center;
    padding-bottom: 30px;
  }
  
  /* -----------------------
  product 6
  ------------------------------ */
  .nav-pills{
    padding-bottom:20px;
    align-items: center;
    border-bottom: 1px solid rgb(221, 218, 218);
    /* margin-bottom: 50px; */
    
  }
  .padd-product-row{
    padding-top: 60px;
  }
  .nav{
    justify-content: center;
  }
  .nav-item .active{
    background-color: var(--main-color);
    color: var(--white-color) !important;
    border-radius: 10px;
  
  }
  .nav-link-1{
    margin: 10px;
    padding: 10px 10px;
    color: var(--black-color) !important;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
  }
  .nav-link-1:hover{
    margin: 10px;
    padding: 10px;
    background-color: var(--main-color);
    color: var(--white-color) !important;
  }
  .product-img img{
    width: 90%;
    height: 95%;
    /* padding-left: 30px; */
  }
  /* .product-img-text{
    padding-left: 30px;
  } */
  .product-img-text p{
    padding-top: 10px;
    font-size: 13px;
  }
  .product-img-text{
    padding: 10px;
  }
  .list-product li{
    font-size: 12px;
  }
  
  .product-img-text h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
  
  }
  .product-img img{
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }
}
 /* <!-- =================================================power supply page========================================================= --> */
    .power-padd{
      padding-top: 100px;
      padding-bottom: 100px;
    }
    .power-text-1{
      padding: 30px;
    }
    .power-text-1 h2{
      font-size: 70px;
      padding-top: 50px;
    }
    .power-text-1 button{
      margin-top: 50px !important;
    }
    .power-box-2 h4{
      font-size: 22px;
      margin-left: 50px;

    }
    .power-box-2 img{
      padding-bottom: 20px;
      margin-left: 50px;

    }
    .power-box-2{
      padding: 50px 12px;
      border-bottom:1px dotted var(--main-color);
      border-right:1px dotted var(--main-color);
      border-width: 1px;
      
      

    }
 
  /*------------------------------------------form page------------------------------------*/
  .form{
    background-image:url(/assets/img/background-img/about-bg-img.png);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50PX;
  
    
  }
  .form-input{
    margin-left: 55px;

  }
  .form-control{
    width: 80% !important;
    font-size:14px !important;

  }
  #form-container{
   
    padding: 30px 50px;

  }
  .form h3{
    padding-bottom: 10px;
    font-size: 35px;
    color: var(--main-color);
  }
  .form p{
    padding-bottom: 15px;
  }
  .contact-head h2{
    font-weight: 600;
    font-size: 30px;
    padding-bottom:20px;
    padding-top: 50px;
    color: var(--white-color);
    /* text-align: center; */
  }
  .contact-head img{
    position: absolute;
    bottom: -403px;
    left: -110px;
   }
   .contact-head{
    position:relative;
   }
  .contact-head h1{
    font-weight: 600;
    font-size: 34px;
    padding-bottom:10px;
    /* text-align: center; */
  }
  .contact-head p{
    display: flex;
    /* width: 550px; */
    color: rgb(0, 0, 0);
    font-size:60px;
    padding-bottom:15px;
    /* text-align: center; */
  }
  .icon-contact-padd{
    padding-right: 10px;
    color: #ffffff;
    
  }
.contact-box p{
  font-size: 15px;
}
  .contact-box{
    text-align: center;
    border: 1px solid rgb(233, 231, 231);
    /* background-color: var(--main-color); */
    border-radius: 10px;
    height: 200px;

  
  }
  .contact-box i{
   width: 50px;
   font-size: 25px;
   padding: 5px;
   padding-top: 50px;
   /* border: 1px solid var(--main-color); */
   border-radius: 50%;
   /* margin-bottom: 20px; */
   color: var(--safran-color);
  }
  .contact-box h4{
   font-size: 20px;
   padding-top: 20px;
   color: var(--safran-color);
  }
.bg-contact{
    background-color:var(--main-color);
    color: black;
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .contact-head h5{
    font-size: 90px;
  }
  #form-main{
    padding-top:50px ;
    background-color: white;
    box-shadow:0px 8px 30px 0px rgba(0, 0, 0, 0.1);
    padding:50px 20px 40px;
  }
  #form-message{
    padding-top:20px ;
  
  }
  .button{
    text-align: center;
    padding-top: 10px;
  }
  .button button{
    position: relative;
    padding: 10px 40px;
    border-radius: 3px;
    border:none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background:var(--main-color);
    color:var(--balck-color);
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 20px;
  }
  
  .button button:hover {
    background-color:var(--balck-color) !important;
    box-shadow: 0 0 30px 5px  rgb(88, 88, 88);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: var(--white-color);
    background: none;
  }
  
  .button button:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
  }
  
  .button button::before {
    content: '';
    display: block;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  @keyframes sh02 {
    from {
      opacity: 0;
      left: 0%;
    }
  
    50% {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      left: 100%;
    }
  }
  /* ========================================= mobile screen ================================== */
@media (max-width:768px){
  .contact-head p{
    font-size: 30px;
    padding-top: 30px;
  }
  .contact-head img{
    position: absolute;
    bottom:50px;
    left:-130px;
    width: 350px;
   }
   .contact-head{
    position:relative;
    padding-bottom: 250px;
   }
  .bg-contact{
    background-color:var(--main-color);
    color: black;
    padding-top: 10px !important;
    padding-bottom: 50px;
    padding: 20px;
  }
  .form-input{
    margin-left:35px;

  }
  .form-control{
    width: 80% !important;
    font-size: 13px !important;

  }
  .form h3{
    font-size: 20px;
  }
  .form p{
    font-size: 12px;
  }
  .button button{
    position: relative;
    padding: 8px 30px;
    border-radius: 3px;
    border:none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background:var(--main-color);
    color:var(--balck-color);
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 20px;
  }
}
/* ===================================================laptop screen=================================================== */
@media (min-width: 768px) and (max-width: 1023px){
  .contact-head h5{
    font-size: 70px;
  }
  .form-input{
    margin-left:28px;

  }
  .form-control{
    width: 80% !important;

  }
  .contact-head img{
    position: absolute;
    bottom:30px;
    left:-130px;
    width: 400px;
   }
   .contact-head{
    position:relative;
    padding-bottom: 250px;
   }
   .contact-head h2{
    font-weight: 600;
    font-size: 24px;
    color: var(--white-color);
    /* text-align: center; */
  }
  .bg-contact{
    background-color:var(--main-color);
    color: black;
    padding-top: 10px !important;
    padding-bottom: 50px;
    padding: 20px;
  }
}
  
   /*----------------------------Testimonial-------------------*/

  #blog-head h1{
    text-align: center;
    color: var(--main-color);
    padding-bottom: 50px;
    font-size: 30px;

  }
  .test-mon-text.test-img{
    text-align: center;
  }
  .test-mon-text h3{
    font-size: 20px;
    color: var(--main-color);
  }
  .test-mon-text p{
    font-size: 14px;
  }
   #test-padd{
    padding-top: 100px;
    padding-bottom: 100px;
    background-image:url(/assets/img/background-img/about-bg-img.png);
   }
  .test-mon-box{
    border: 1px solid rgb(209, 209, 209);
    background-color: white;
    /* width: 520px; */
    height:400px !important;
    padding: 50px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
  }
  .test-mon-img{
    padding-bottom: 20px;
    padding-left: 190px;
    text-align: center !important;
  }
  .test-i{
    position: absolute;
    top:20px;
    left: 20px;
    font-size: 40px;
    color: var(--main-color);
  }
  .test-img{
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    
  }
  .test-mon-text h4{
    text-align: center;
    font-size: 20px;
  
  
  }
  .test-mon-text h6{
    text-align: center;
   
  
  
  }
  /* ========================================= mobile screen ================================== */
  @media (max-width:768px){
    .test-mon-img{
      padding-bottom: 20px;
      padding-left: 100px;
      text-align: center !important;
    }
    
  #blog-head h1{
    text-align: center;
    color: var(--main-color);
    padding-bottom: 40px;
    font-size: 20px;

  }
  .test-mon-text h3{
    font-size: 18px;
    color: var(--main-color);
  }
  .test-mon-text p{
    font-size: 12px;
  }
  .test-mon-text h4{
    text-align: center;
    font-size: 20px;
    font-size: 15px;
  
  
  }
  .test-mon-text h6{
    text-align: center;
    font-size: 13px;
    padding-bottom: 20px;
   
  
  
  }
  #test-padd{
    padding-top:50px;
    padding-bottom: 50px;
    background-image:url(/assets/img/background-img/about-bg-img.png);
   }
   .test-mon-box{
    border: 1px solid rgb(209, 209, 209);
    background-color: white;
    /* width: 520px; */
    height:90%;
    padding: 30px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
   
  }

  }
  /* ===================================================laptop screen=================================================== */
@media (min-width: 768px) and (max-width: 1023px){
  .test-mon-img{
    padding-bottom: 20px;
    padding-left: 80px;
    text-align: center !important;
  }
}
  
  
   /*---------------------------------------fooder pageeee-------------------------------------*/
.footer-padd{
  padding-bottom: 50px;
}
.last-box-icon h6{
  font-size: 16px !important;
  font-weight: 400 !important;
}
   .text-home-fooder a{
    color:white;
    text-decoration: none;
   }
   /* .text-home-fooder {
    text-align: center;
   } */
   .text-home-fooder a:hover{
    color: var(--balck-color);
    /* transition-duration: 1s; */
    
   }
  .fooder-bg-img{
    /* background-image: url(/assets/img/blog-2-bg/blog-1.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
    z-index: 1;
    background-color:var(--safran-color);
    background-image: url(/assets/img/shapes/shape-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    

  }
  .fooder-logo{
    width: 220px;
  }
  .fooder-bg-img::before{
    content: '';
    /* background: #000; */
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0.8;
    z-index: -1; 
  }
  .f-p{
    margin-top: 30px;
  }
  .img-bg-fooder img{
    width:130px !important;
    margin-top:20px;
    padding-bottom: 20px;
  }
  .img-bg-fooder p{
    width:400px !important;
    
  }
  #fooder-last-box{
    padding-top: 100px;
    padding-bottom:50px;
  }
  #fooder-last-box input{
    width:300px;
  }
  #fooder-h3-heading{
    margin-bottom:30px;
    

  }
  #fooder-h3-heading{
    margin-bottom:30px;
    

  }
  #fooder-h3-heading h6{
    margin-bottom:30px;
    font-weight: 400 !important;
    

  }
  #fooder-h3-heading{
    margin-bottom:30px;
    font-size: 30px;
    font-weight: 600px;

  }

  #fooder-last-one{
    margin-top:85px;
  }
  
  .img-bg-fooder{
    padding-top: 80px;
   
  }
  .img-bg-fooder p{
    padding-top: 20px;
   
  }
  
  .fooder-date{
    width: 100%;
    display: flex;
    text-align: center;
    position: relative;
    top: 10px; 
  }
  .fooder-date h5{
    font-size: 15px;
   padding-left: 20px;
  }
  .fooder-date h4{
    font-size: 13px;
    padding-left: 10px;
    padding:10px;
    margin-top:5px;
    align-items:left;
  }
  .hr hr{
    position: relative;
    bottom: 30px;
  }
  .fooder-button{
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 50%;
    margin:5px;
    margin-top: 30px;
    border-color: white;
  }
  .fooder-button:hover{
    background-color: blue;
    border: none;
  }
  
  .line-gap h6{
    padding-bottom: 10px;
    color:rgb(20, 20, 20);
  }
  .last-box-icon{
    margin: 15px;
    font-size: 20px;
    font-weight: 800 !important;
  }
  .fooder-icon button{
    position:absolute;
    right:0;
    bottom:0;
    padding: 10px 20px; 
    border: none;
    border-radius:0px 6px 6px 0px;
  
  }
  .end-pag{
    color: white;
    position: relative;
    
  }
  .end-text h5{
    color: white;
    font-size: 30px;
  }
  .end-text p{
    color: white;
    font-weight: 500;
  }
  #fooder-h3-heading{
    color:var(--white-color);
    font-weight: 800;
  
  }
  .fooder-span-num{
    padding-left: 55px;
    position: relative;
    bottom: 10px;
  }
  /* .fooder-text-color:hover{
    color: var(--main-color);
  } */
  .fooder-text-color{
    color:white;
  }
  .fooder-text-color a{
    color:white;
    text-decoration: none;

  }
  .footer-last-num-padd{
    margin-left: 55px;
    margin-bottom: 10px;
  }

  /* ========================================= mobile screen ================================== */
    @media (max-width:768px){

      #fooder-last-box{
        padding-top: 70px !important;
        padding-bottom: 10px !important;
      }
      .fooder-bg-img{
        /* background-image: url(/assets/img/blog-2-bg/blog-1.jpg); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom center;
        position: relative;
        z-index: 1;
        background-color:var(--safran-color);
        background-image: url(/assets/img/shapes/shape-2.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        width: 100% !important;
        height: 100% !important
        
    
      }
      .img-bg-fooder p{
        width: 350px !important;
        font-size: 16px;
      }
      .img-bg-fooder{
        padding-top: 50px;
      }
      #fooder-h3-heading{
        font-size: 20px !important;
      }
      .text-home-fooder h6{
        font-size: 16px;
      }
      .fooder-last-box{
        background-color: var(--safran-color);
      }
      .text-home-fooder{
        background-color: var(--safran-color);
      }
      .copy-iamonin h6{
        font-weight: 600;
        font-size: 12px !important;
        /* color: var(--white-color) !important; */
      }
    }
  /* ==============================================location page==================================================== */
.location-head h3{
  color: var(--main-color);
  font-size: 30px;
  font-weight: 600px;
  

}

/* .loc-text:hover{
  color: var(--main-color);
  cursor: pointer;
  
} */
.location-head p{
  font-size: 17px;
  padding-top: 20px;
  font-weight: 600px;
  padding-bottom: 20px;

}
.map iframe{
  width: 100%;
  height: 100%;
}
.location-2{
  padding:80px !important;
}
.location-head{
  padding-top: 10px;


}
.location-icon{
  display: flex;
  
}
.number-con{
  text-decoration: none;
  color: #000;
}
.number-con:hover{
  text-decoration: none;
  color:var(--main-color);
}
.location-icon span{
  font-size: 20px;
  color: var(--white-color);
  background-color: var(--main-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  padding-top: 17px;
  padding-left: 15px;
  margin-right: 20px;
  position: relative;



}
/* .location-icon span:hover{
  font-size: 20px;
  color: var(--black-color);
  background-color: var(--white-color);
  border: 1px solid rgb(212, 212, 212);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  padding-top: 17px;
  padding-left: 15px;
  margin-right: 20px;
  cursor: pointer;
  bottom: 5px;
  transition-duration: 1s;
  


} */
.loc-icon-num{
  position: absolute;
  bottom: 14px;
}
.loc-icon-email{
  position: absolute;
  bottom: 14px;
}
.loc-icon-loca{
  position: absolute;
  bottom: 14px;
  right:18px;
}
.loc-icon-hour{
  position: absolute;
  bottom: 14px;
}
.loc-text{
  padding-bottom: 20px;
}
/* ===============================================mobile page==================================== */
@media (max-width:768px){
  .location-head h3{
    color: var(--main-color);
    font-size: 40px;
    font-weight: 600px;
    
  
  }
  .loc-text:hover{
    color: var(--main-color);
    cursor: pointer;
    
  }
  .location-head p{
    font-size: 17px;
    padding-top: 20px;
    font-weight: 600px;
    padding-bottom: 10px;
  
  }
  .map iframe{
    width: 100%;
    height: 100%;
  }
  .location-2{
    padding:40px !important;
  }
  .location-head{
    padding-top: 10px;
  
  
  }
  .location-icon{
    display: flex;
  }
  .icon-loc-color{
    font-size: 15px !important;
    color: var(--white-color);
    background-color: var(--main-color);
    border-radius: 50%;
    height: 40px !important;
    width: 40px !important;
    padding: 14px !important;
    position: relative;
    padding-top: 10px !important;
  }
  .loc-icon-num{
    position: absolute;
    top: 13px;
    right: 12px;
  }
  .loc-icon-hour{
    position: absolute;
    top: 13px;
    right: 12px;
  }

  .icon-loc-color-lock{
    color: var(--white-color);
    background-color: var(--main-color);
    border-radius: 50%;
    padding: 20px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 17px !important;
    position: relative;
  
  
  }
  .loc-icon-loca{
    position: absolute;
    top:12px;
    right: 14px;
  }
  .loc-icon-num{
    position: absolute;
    bottom: 14px;
  }
  .loc-icon-email{
    position: absolute;
    bottom: 14px;
    
 
    
  }
  .icon-loc-color-email{
    padding: 5px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 17px !important;
    padding-left: 12px !important;
    padding-bottom:20px !important;
    position: relative;
  }
  .loc-icon-email{
    position: absolute;
    top: 11px;
  }
  .loc-icon-hour{
    position: absolute;
    bottom: 14px;
  }
  .loc-text{
    padding-bottom: 20px;
  }
  .map iframe{
    width: 100%;
    height: 80vh;
  }
  .location-head h3{
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600px;
    
  
  }
  
  /* .loc-text:hover{
    color: var(--main-color);
    cursor: pointer;
    
  } */
  .location-head p{
    font-size: 13px;
    padding-top: 20px;
    font-weight: 600px;
    padding-bottom: 20px;
  
  }
  .loc-text h5{
    font-size: 13px;
  }
  .loc-text p{
    font-size: 13px;
  }
}
  /* ----------------------------------------------icon------------------------------------*/
.icon-whatsapp-green{
  font-size: 25px;
  
}

.icon a{
  text-decoration: none !important;
  color: #000;
  color: var(--balck-color);
  margin-TOP: 5PX;

}

.icon:hover.behance a{
  text-decoration: none;
  color:var(--white-color);
 

}
.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content:start;
  }
  .wrapper{
    padding-left:0 !important;
  }
  
  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
  
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .facebook:hover,
  .wrapper .facebook:hover .tooltip,
  .wrapper .facebook:hover .tooltip::before {
    background: #1877f2;
    color: #fff;
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  .wrapper .behance:hover,
  .wrapper .behance:hover .tooltip,
  .wrapper .behance:hover .tooltip::before {
    background: green;
    color: #fff !important;
    

  }
  
  /* -----------------------------copy-right---------------------------------------- */
  .copy-right{
    padding-top: 20px;
    padding-bottom: 10px;
    background-color:var(--safran-color);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border-top: 2px solid var(--white-color);
  }
  .copy-iamonin a{
    text-decoration: none;
    color:orangered;
  }
  .copy-iamonin a:hover{
    text-decoration: none;
    color:black;
  }
  .end-text h5{
    font-weight: 800;
    /* color: var(--white-color) !important; */
  }
  /* -----------------------------------------------------arrow--------------------------------------- */
  .up-arrow-1 button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid black;
    background:none;
    position:absolute;
    bottom: 5px;
    right: 30px;
    position:fixed;
    z-index: 10;
    transition-duration: 1s;
   
  
    
  }
  .arrow-home-icon{
    font-size: 25px;
    color: black;
    padding-top: 5px;
  }
  .up-arrow-1 button:hover{
  
    /* background-color: var(--main-color); */
    box-shadow: 0 0 5px 0px black;
  
  }
  /* ========================================= arroe screen ================================== */
  @media (min-width:320px) and (max-width:480px){
    .up-arrow-1 button{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 3px solid #000000;
      background:none;
      position:absolute;
      bottom: 20px;
      right: 20px;
      position:fixed;
      z-index: 10;
      transition-duration: 1s;
      /* display: none; */
     
    
      
    }
    .arrow-home-icon{
      font-size: 25px;
      color: #000000;
      padding-top: 5px;
      /* display: none; */
    }
  
  }
  /* ******************************************** error psge**************************************************** */
  .error-main{
    text-align: center;
    align-items: center;
    
 
    

  }
  .error-main img{
    text-align: center;
    width: 400px;
  


  }
  .error-main-content h1{
    text-align: center;
    font-size: 120px;
    font-weight: 700;
    color: var(--white-color);
    


  }
  .error-main-content{
    padding-top: 12%;
    padding-bottom: 15%;




  }
  .error-main-content h2{
    text-align: center;
    font-size: 50px;
    color: var(--white-color);


  }
  .error-main-content p{
    text-align: center;
    font-size: 20px;
    color: var(--white-color);


  }
  .error-main-content button{
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--safran-color);
    color: var(--white-color);
    border-radius: 10px;
    border: 1px solid rgb(255, 255, 255);
    font-weight: 500;


  }
  .error-main-content button:hover{
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--white-color);
    color: var(--balck-color);
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0);
    font-weight: 500;
    


  }
  .error-bg-img{
    background-image: url(/assets/img/errer-page/error-page-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position:bottom center;
    z-index:5;

    
  }
  .error-bg-img::before{
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.7;

  }
  .button-error-page{
    color: var(--white-color);
    text-decoration: none;
  }
  .button-error-page:hover{
    color: var(--black-color);
    text-decoration: none;
  }
    /* ****************************************************** mobile screen************************************************************** */
    @media (max-width:768px){
      .error-main{
        text-align: center;
        align-items: center;
        
     
        
    
      }
      .error-main img{
        text-align: center;
        width: 400px;
      
    
    
      }
      .error-main-content h1{
        text-align: center;
        font-weight: 700;
        font-size:80px !important;
  
        color: var(--white-color);
        
    
    
      }
      .error-main-content{
        padding-top: 12%;
        padding-bottom: 15%;
    
    
    
    
      }
      .error-main-content h2{
        text-align: center;
        font-size: 30px;
        color: var(--white-color);
    
    
      }
      .error-main-content p{
        text-align: center;
        font-size: 15px;
        color: var(--white-color);
    
    
      }
      .error-main-content button{
        text-align: center;
        padding: 8px 10px;
        margin-top: 20px;
        background-color: var(--safran-color);
        color: var(--white-color);
        border-radius: 10px;
        border: 1px solid rgb(255, 255, 255);
        font-weight: 500;
    
    
      }
      .error-main-content button:hover{
        text-align: center;
        padding: 10px 20px;
        margin-top: 20px;
        background-color: var(--white-color);
        color: var(--balck-color);
        border-radius: 10px;
        border: 1px solid rgb(0, 0, 0);
        font-weight: 500;
        
    
    
      }
      .error-bg-img{
        background-image: url(/assets/img/errer-page/errer-page.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index:5;
    
        
      }
      .error-bg-img::before{
        content: '';
        background-color: #000;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0.7;
    
      }
      .button-error-page{
        color: var(--white-color);
        text-decoration: none;
      }
      .button-error-page:hover{
        color: var(--black-color);
        text-decoration: none;
      }
      /* arrow */
      .up-arrow-1 button{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid black;
        background:none;
        position:absolute;
        bottom: 5px;
        right: 30px;
        position:fixed;
        z-index: 10;
        transition-duration: 1s;
        display: none !important;
       
      
        
      }
      .arrow-home-icon{
        font-size: 25px;
        color: black;
        padding-top: 5px;
        display: none !important;
      }
      .up-arrow-1 button:hover{
      
        /* background-color: var(--main-color); */
        box-shadow: 0 0 5px 0px black;
        display: none !important;
      
      }
    }
  /* ********************************************** thankyou******************************************** */
  .thankyou-page{
    text-align: center;
  }
  .thankyou-main-content{
    padding-top: 12%;
    padding-bottom: 15%;




  }
  .thankyou-icon{
    font-size: 200px !important;
    color: var(--safran-color);
    position:relative;
    bottom: 20px;
  }
  /* .thankyou-bg-img{
    background-color:var(--white-color);
  } */
  .thankyou-main-content h2{
    text-align: center;
    font-size: 40px !important;
    color: var(--black-color);


  }
  .thankyou-main-content p{
    text-align: center;
    font-size: 20px;
    color: var(--balck-color);

  }
  .thankyou-bg-img{
    /* background-image: url(/assets/img/errer-page/errer-page.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index:5;
    height:70%;

    
  }
  /* .thankyou-bg-img::before{
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.7;

     z-index: -1;
 } */
  .thankyou-main-content button{
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--safran-color);
    color: var(--white-color);
    border-radius: 10px;
    border: 1px solid rgb(255, 255, 255);
    font-weight: 500;


  }
  .thankyou-main-content button:hover{
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--white-color);
    color: var(--balck-color);
    border-radius: 10px;
    border: 1px solid rgb(0, 0, 0);
    font-weight: 500;
    


  }
  /* ****************************************************** mobile screen************************************************************** */
  @media (max-width:768px){
    .thankyou-page{
      text-align: center;
      padding-top:100px;
    }
    .thankyou-main-content{
      padding-top: 12%;
      padding-bottom: 15%;
  
  
  
  
    }
    .thankyou-icon{
      font-size: 200px !important;
      color: var(--safran-color);
      position:relative;
      bottom: 30px;
    }
    /* .thankyou-bg-img{
      background-color:var(--white-color);
    } */
    .thankyou-main-content h2{
      text-align: center;
      font-size: 30px !important;
      color: var(--black-color);
  
  
    }
    .thankyou-main-content p{
      text-align: center;
      font-size: 20px;
      color: var(--balck-color);
  
    }
    .thankyou-bg-img{
      /* background-image: url(/assets/img/errer-page/errer-page.jpg); */
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
      z-index:5;
      height:50%;
  
      
    }
    /* .thankyou-bg-img::before{
      content: '';
      background-color: #000;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      opacity: 0.7;
  
       z-index: -1;
   } */
    .thankyou-main-content button{
      text-align: center;
      padding: 10px 20px;
      margin-top: 20px;
      background-color: var(--safran-color);
      color: var(--white-color);
      border-radius: 10px;
      border: 1px solid rgb(255, 255, 255);
      font-weight: 500;
  
  
    }
    .thankyou-main-content button:hover{
      text-align: center;
      padding: 10px 20px;
      margin-top: 20px;
      background-color: var(--white-color);
      color: var(--balck-color);
      border-radius: 10px;
      border: 1px solid rgb(0, 0, 0);
      font-weight: 500;
      
  
  }
  
}