
@font-face {
    font-family: 'Neuzeit';
    src: url(/fonts/Neuzeit-Regular.ttf);
}

*, *::after , *::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Neuzeit' , 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
}

a{
  text-decoration: none;
}
textarea:focus, input:focus{
  outline: none;
}

#loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #222;
    border-top-color: #EFB330;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
    position: absolute;
    top: 40%;
    left: calc(50% - 37px);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#page-wrapper {
    width: 100%;
    height: auto;
}

/* start contuct support */
#contuct-support{
  position: absolute;
  /* background-color: rgba(0, 0, 0, 0.87); */
  background-color: rgba(0, 0, 0);
  right: 0;
  bottom: 5%;
  cursor: pointer;
  position: fixed !important;
  z-index: 16000160 !important;
  border-radius: 4px 0 0 4px;
}
#contuct-support a{
  text-decoration: none;
  color: wheat;
}

#contuct-support .item{
  font-size: 24px;
  padding: 15px;
  border: 1px solid #121212;
  transition: 0.38s;
}
#contuct-support .item.facebook{
  color: #FDB900;
  border-radius: 4px 0 0 0;
}
#contuct-support .item.facebook:hover {
  font-size: 25px;
  background-color: #00000099;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#contuct-support .item.whatsapp {
  color: #FDB900;
  border-radius: 0 0 0 4px;
}

#contuct-support .item.whatsapp:hover {
  font-size: 25px;
  background-color: #00000099;
    border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
/* end contuct support */

nav{
  padding-bottom: 59px;
}
.nav {
  width: 100vw;
  background-color: #000;
  position: relative;
  position: fixed;
  z-index: 9999999;
}

.nav > .nav-header {
  display: none;
}

.nav > .nav-header > .nav-title{
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 15px;
}
.nav .logo-name img{
  /* transform: translate(0px,10px) !important; */
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.nav .logo-name:hover{
  background-color: #000 !important;
}

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

.nav > .nav-links {
  text-align: center;
  font-size: 18px;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 20px 15px;
  text-decoration: none;
  color: #958f8b;
  font-size: 1.2rem;
  position: relative;
}
.nav > .nav-links > a:is(:active) {
  color: red;
}

.nav > .nav-links > a.active{
  color: #fff;
  border-bottom: 3px solid #FDB900;
}


.nav > .nav-links > a:hover {
  background-color: #FDB900;
  color: #fff;
}

.nav > #nav-check {
  display: none !important;
}

.download-link{
  position: relative;
  padding-left: 15px;
}

.download-icon{
    position: absolute;
    left: -3px;
    padding-top: 4px;
    font-size: 0.9em;
}

@media (max-width: 920px) {
  .nav {
    padding: 0;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .logo-name{
    display: none !important;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    padding: 20px 15px;
  }
  .nav > .nav-btn > label:hover,
  .nav #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-header {
    display: inline;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 5px;
    border-top: 2px solid #eee;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.034);
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
    text-align: left;
  }

  .nav .nav-title{
    display: flex !important;
    align-items: center !important;
  }

  .nav .nav-title span{
    padding-left: 8px;
  }
  
  .more-btn{
    border-bottom: 1px solid rgba(255, 255, 255, 0.034);
  }

}

/* end nav */

/* start header */
#header {
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: relative;
}
#header .header-title{
  position: absolute;
  padding: 1rem;
  display: flex;
  left: 10vw;
  top: 25vh;
  align-items: center;
  z-index: 4;
  background: rgba(255, 255, 255, 0.20);
border-radius: 4px;
box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
backdrop-filter: blur(7px);
-webkit-backdrop-filter: blur(7px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

#header .company{
  margin-left: 10px;
}
#header .company .name{
  font-weight: 600;
  font-size: 32px;
}
#header .company .desc{
  color: #f9bb0a;
  font-weight: 600;
  text-align: center;
}

 .slide-title{
   position: absolute;
   top: 55vh;
   left: 10vw;
   margin-right: 10vw;
   font-size: 18px;
   background-color:  rgba(0, 0, 0, 0.5);
   padding: 1rem !important;
   color: #fff;
   z-index: 76578;
   border-radius: 4px;
 }
  .mySlides{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  @-webkit-keyframes slide {
    100% { 
      transform: translateX(0);
    }
}

@keyframes slide {
    100% {
      transform: translateX(0);
    }
}
   .more-btn{
    margin-top: 44px;
    padding: 12px 32px;
    background: #fff;
    color: #121212;
    transition: 0.38s;
    cursor: pointer;
    text-decoration: none;
  }

   .more-btn:hover{
    color: #121212;
    background: #FDB900;
  }
  #header-news{
    position: absolute;
    left:10%;
    bottom: 5%;
    color: #6f6f6f;
    display: inline-flex;
    align-items: flex-end;
  }
  #header-news .title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  #header-news .title .dots{
    letter-spacing: 2px;
    line-height: 8px !important;
  }
  #header-news .cards{
    margin-left: 5px;
    display: flex;
  }
  #header-news .card{
    height: 100px;
    background-color: #000;
    width: 250px;
    padding: 10px 15px;
    margin-right: 10px;
  
  }
  
  #header-news .card .title{
    color: #cfbaa6;
    padding: 5px 0;
    font-weight: 500;
  }
  
  #header-news .card .desc{
    font-size: 16px;
  }

  .all-news{
    color: #FDB900;
  }

  #news-desktop{
    display: flex !important;
  }
  #news-mobile{
    display: none !important;
  }
/* end header */

/* start our-partners */
#our-partners{
  min-height: 90vh;
  height: auto;
  background-color: #f3f3f3;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 80px 2rem;
}
#our-partners .title{
  text-transform: capitalize;
  margin-bottom: 44px;
  font-size: 32px;
  color: #000;
  font-weight: bold;
}
#our-partners .cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#our-partners .card{
  width: 200px;
  height: auto;
  border-radius: 50%;
  /* padding: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
#our-partners .card img{
  width: 180px;
  height: 180px;  
  border-radius: 50%;
  border: 3px solid #22222254;
}
#our-partners .card .card-title{
  margin-top: 1rem;
  text-transform: capitalize;
}
/* end our partners */

/* start our news */
#our-news{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 120px 2rem;
  background-color: #f3f3f3;
}

#our-news .title{
  text-transform: capitalize;
  margin-bottom: 44px;
  font-size: 32px;
  color: #000;
  font-weight: bold;
}
#our-news .cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}
#our-news .card{
  height: 350px;
  width: 350px;
  position: relative;
  background-color: #E3E3E3;
  color: #262626;
  margin-bottom: 2rem;
  margin: 1rem;
transition: 0.3s all ease;
border-radius: 4px;
opacity: 1;
transform: translate(0) scale(1);
display: block;

}
#our-news .card:hover{
 transform: scale(1.03);
 box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-top: 0.1rem;
}

#our-news .card:hover .card-title{
  margin: 0;

}

#our-news .card .card-title{
  font-size: 16px;
  color: #121212;
  background-color: #fff;
  padding: 12px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.35s;
  margin-bottom: 12px;
  margin-right: 15px;
  text-transform: capitalize;
  border-left: 3px solid #FDB900;
  border-radius: 0 4px 4px 0;
}

#our-news .card:hover .card-title{
 border: none;   
}

#our-news .card .desc{
  line-height: 1.3rem;
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#our-news .more-btn{
  cursor: pointer;
  padding: 12px 32px;
  background-color: #222;
  color: #fff;
  border: none;
  transition: 0.25s;
  margin-top: 44px;
}

#our-news .more-btn:hover{
  background-color: #FDB900;
  color: #222;
}
/* end our news */

/* start our services */
#our-services{
  min-height: 60vh;
  height: auto;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
  url('/imgs/map-test.png');
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 2rem;
}
#our-services .title{
  color: #fff;
  letter-spacing: 2px;
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 44px;
}
#our-services .cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#our-services .card{
  height: 350px;
  width: 350px;
  background-color: #050507;
  color: #cfbaa6;
  margin-bottom: 2rem;
  margin: 1rem;
  border-radius: 4px;
  transition: 0.3s all ease;
}
#our-services .card:hover{
  margin-top: 0.1rem;
}

#our-services .card img{
  border-radius: 4px 4px 0  0;
  object-fit: cover;
}
#our-services .card .content{
  padding: 1rem;
}
#our-services .card .card-title{
  font-size: 1.4rem;
  font-weight: 500;
  color: #E3E3E3;
  position: relative;
  margin-bottom: 25px;
}

#our-services .card .desc{
  color: #6f6f6f;
  line-height: 1.3rem;
  font-size: 1.125rem;
}
/* end our services */

/* start clients */
#clients{
  min-height: 100vh;
  height: auto;
  background-color: #fff;
}
#clients .header{
  position: relative;
  height: 30vh;
  width: 100%;
  background-image: linear-gradient(to right,  rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.3)),
  url('/imgs/contact.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#clients .title{
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 10%;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #fff;
  padding:0.5rem 1rem;
  border-left: 2px solid rgb(255, 187, 0) ;
  transform: translateY(-50%);
}

#clients .cards{
  display: flex;
  margin-left: 10%;
  flex-wrap: wrap;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}

#clients .card{
  height: 210px;
  width: 210px;
  color: #121212;
  margin-right: 2rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #2333;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
#clients .card img{
  border: 1px solid #22222254;
  margin-top: -28px;
  min-width: 80%;
  min-height: 80%;
}
#clients .card .card-title{
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
/* end clients */

/* start contact */
#contact{
  min-height: 90vh;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  color: #444;
  background-color: #F3F3F3;
  font-size: 18px;
  flex-direction: column;
  align-items: center;
}
#contact .header{
  position: relative;
  height: 30vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#contact .header .title{
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 10%;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #fff;
  padding:0.5rem 1rem;
  border-left: 2px solid #FDB900 ;
  transform: translateY(-50%);
}
#contact .content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}
#contact .contact-content{
  border: 2px solid #FDB900;
  width: 70%;
  position: relative;
  padding: 2rem;
  margin: 3rem 0;
  height: 80vh;
}
#contact .content .title{
  color: #000;
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 2px;
  background: transparent;
  padding: 0.5rem;
  text-align: center;
  text-transform: capitalize;
}

#contact .content .form .row{
  margin: 1rem;
  display: flex;
}
#contact .content .form label{
  width: 20%;
  display: flex;
  align-items: center;
}
#contact .content .form input{
  height: 42px;
}

#contact .content .form input, textarea{
  width: 80%;
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #2333 !important;
  font-size: 16px;
}

#contact .content .form input:focus, textarea:focus{
  border: 1px solid rgba(34, 51, 51, 0.772) !important;
}

#contact .message{
  align-self: self-start;
  margin-top: 1rem;
}

#contact .more-btn{
  font-size: 16px;
  margin-top: 12px;
  cursor: pointer;
  padding: 12px 32px;
  background-color: #222;
  color: #fff;
  position: absolute;
  border: none;
  transition: 0.25s;
}

#contact .more-btn:hover{
  background-color: #FDB900;
  color: #222;
}

#contact .subscription{
  display: flex;
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
#contact .subscription .title{
  color: #000;
  font-size: 1.5em;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: capitalize;
}

#contact .subscription .row{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

#contact .subscription .map-img{
  width: 80%;
  height: 70vh;
  background-image: url('/imgs/map.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #2333;
}
/* end contact */

/* start footer */
#footer{
  min-height: 35vh;
  height: auto;
  background-color: #121212;
  color: #6f6f6f;
  position: relative;
  bottom: absolute;
}

#footer .row{
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 2rem;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}

#footer .title{
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 1px;
  font-weight: 400;
  padding-right: 10px;
  /* margin-bottom: 1rem; */
  position: relative;
}
#footer .title::after{
  content:'';
  height: 1px;
  /* width:20%; */
  background:#FDB900;
  position:absolute;
  left:0;
  bottom:-10px;
}
#footer .contact-info .line{
  margin: 10px 0;
  font-size: 18px;

}
#footer .contact-info .line .font-bold{
  color: #fff;
}

#footer .contact-info .line a{
  margin: 15px 0;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: #eeb23130;
  cursor: pointer;
  color: #6f6f6f;
}
#footer .contact-info .line a:hover{
  color: #fff;
  text-decoration-color: #FDB900;
}
#footer .icon{
  width: 0.8rem !important;
  height: 0.8rem !important;
}
.subscribe .form{
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe .form label{
  width: 80px;
  display: inline-block;
}
.subscribe .form input{
  height: 42px;
  width: 300px;
  display: inline-block;
  font-size: 16px;
  padding: 5px 10px ;
  background-color: #fff;
  border: none;
  border-radius:  4px 0 0 4px;
}
 .subscribe .form input:focus, textarea:focus{
  border: none;
  background-color: #fff;
}
 .subscribe .form .send-btn{
  height: 42px;
  display: inline-block;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 600;
  background-color: #FDB900;
  color: #000000e8;
  border: none;
  border-radius: 0 4px 4px 0;
  margin: 0;
}
.subscribe .form .send-btn:hover{
  color: #000;
}

#footer .copy-right{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}

#footer .copy-right a{
  text-decoration: none;
  color: #FDB900;
}
/* end footer */

/* animation */
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* start icons */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.icon-whatsapp{
  width: 1.2em;
  height: 1.2em;
}

.icon-arrow_drop_down{
  color: #6f6f6f;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  pointer-events: none;
}
/* end icons */

.dropbtn {
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 20px 25px 20px 15px;
  text-decoration: none;
  color: #958f8b;
  font-size: 1.2rem;
}

.dropdown:hover .icon-arrow_drop_down {
  color: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 160px;
  width: auto;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-align: left;
}

.dropdown-content a {
  color: #958f8b;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #eeb23120;
  color: #fff;
}

.show {display: block;}


/* about page */
#about{
  min-height: 100vh;
  height: auto;
  background-color: #fff;
}
#about .header{
  position: relative;
  height: 30vh;
  width: 100%;
  background-position: left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#about .title{
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 10%;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #fff;
  padding:0.5rem 1rem;
  border-left: 2px solid #FDB900 ;
  transform: translateY(-50%);
}

#about .back{
  width: 30%;
  height: 50vh;
  justify-self: center;
  align-self: center;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

#about .back p{
  color: #fff;  
  border-right: 3px solid #fff;
  text-align: right;
  position: absolute;
  right: 10%;
  bottom: 10%;
  padding: 0.5rem 0.5rem;
  text-transform: uppercase;
}
#about .desc{
  padding: 3rem 10%;
}
#about .desc p{
  font-size: 1.2rem;
  line-height: 1.9rem;
  color: #333;
  text-align: justify;
}
#about .desc img{
  width: 60vw;
  height: 70vh;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* end about page */

/* start products */
#products{
  min-height: 90vh;
  height: auto;
  background-color: #f3f3f3;
  padding: 0 0 3rem 0;
}
#products .header{
  text-align: center;
  height: 230px;
  /* background-image:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.6) , rgba(0, 0, 0, 0.5) , rgb(0, 0, 0,0.2)),
  url('/imgs/map-test.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#products .header .title{
  font-size: 28px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 1.3rem;
  letter-spacing: 1px;
}
#products .header form{
  text-align: center;
}
#products .header form input{
  width: 330px;
  border-radius: 4px;
  font-size: 1.1rem;
  padding: 0.8rem;
  color: #555;
  transition: 0.25s;
  background: #fff;
  box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
}
#products .header form input:focus{
  width: 360px;
}
#products .cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 1rem 3rem 1rem;
}

#products .cards .card{
  width: 360px;
  min-height: 350px;
  height: auto;
  background-color: #fff;
  margin: 0 1rem 2rem 1rem; 
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.35s;
}

#products .cards .card:hover{
  transform: scale(1.03);
}

#products .cards .card img{
  width: 100%;
  border-radius: 4px 4px 0 0;
  height: 270px;
  object-fit: cover;
  border-bottom: 1px solid #cccccc;
}

#products .cards .card .content{
  padding: 1rem 1rem 2rem 1rem;
  text-align: justify;
}
#products .cards .card .content .title{
  font-weight: 600;
  color: #333;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
#products .cards .card .content .date{
  color: #6f6f6f;
  position: absolute;
  bottom: 1rem;
  right: 1rem; 
  font-size: 14px;
}

.no-data{
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #797979;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-data img{
  margin-bottom: 15px;
}

/* end products */

/* single item  */
#single-item{
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
#single-item .heading{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 3rem;
  gap: 1.5rem;
  min-height: 90vh;
  width: 100vw;
}
#single-item .text-side {
  width: 40vw;
}
#single-item .text-side .title{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0;
  text-transform: capitalize;
}
#single-item .text-side .caption{
  font-size: 18px;
  font-weight: 400 !important;
  color: #121212 !important;
  margin-bottom: 0.5rem;
  position: relative;
  line-height: 1.8rem !important;
}

#single-item .sliders{
  background-color: #e3e1e1;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  height: 70vh ;
  width: 45vw ;
}
#single-item img{
  object-fit: cover;
}

#single-item .content{
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 18px;
  line-height: 1.7rem;
  padding: 0 3rem;
}

#single-item .video{
  margin-top: 1rem;
  width: 65vw;
  height: 70vh;
}
#single-item .desc img{
  width: 60vw;
  height: 70vh;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.back-btn{
  color: #121212;
  position: absolute;
  text-decoration: none;
  left: 0;
  top: 5vh;
  display: flex;
  align-items: center;
}

.normal-underline{
  font-size: 1.5em;
  letter-spacing: 2px;
  font-weight: 600;
  position:relative;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.normal-underline::after{
  content:'';
  height: 2px;
  width:30%;
  background:#EEB231;
  position:absolute;
  left:0;
  bottom:-10px;
}
/* end single item */

/* projects page  */
.projects .content{
  width: 50%;
  padding: 2rem;
  align-self: flex-start;
}

.projects .img{
  width: 50%;
  height: 100%;
}
.projects .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s;
}
.projects .projects-card{
  background-color: #fff;
  max-width: 80vw;
  width: 70vw;
  height: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #121212;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 4px;

  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2rem;
  transition: 0.35s;
}

.projects .projects-card .title{
  font-weight: 600;
  font-size: 1.5em;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  position: relative;
}
.projects .projects-card:hover{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.projects .projects-card:hover img{
  transform: scale(1.1);
}

.projects .projects-card .title::after{
  content:'';
  height: 2px;
  width:30%;
  background:#FDB900;
  position:absolute;
  left:0;
  bottom:-10px;
}

.projects .desc{
  font-size: 1.1rem;
    line-height: 1.5rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects .desc img{
  display: none;
}

.more-text{
  padding: 0 2rem;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #333;

}
/* end prjects page */

/* mobile */

@media (max-width: 780px) {
  #news-desktop{
    display: none !important;
  }
  #news-mobile{
    display: flex !important;
  }
  #header-news{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    left: 5%;
  }
  #header-news .cards{
    margin: 1rem 0;
  }
  #header{
    height: auto;
  }
  #header .header-title{
    padding: 0.7rem;
    top: 15vh;
  }

  #header .slide-title{
    top: 40vh;
  }
  #header .right-side {
    width: 20vw;
  }
  #header .company{
    margin: 0;
  }
  #header .company .name{
    font-size: 26px;
  }

  #contact .content{
    width: 90%;
  }
  #contact .subscription{
    width: 100%;
    height: 100vh;
  }
  #contact .subscription .map-img{
    width: 90%;
  }
  .subscribe .form{
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
  }
  .subscribe .form input{
    width: 200px;
  }
  #our-news{
    padding: 80px 2rem;
  }
  #our-news .card{
      width:310px;
  }
  #our-services .card{
      width: 310px;
  }
  #contact{
    text-align: center;
    justify-content: center;
  }
  #contact .contact-content{
    padding: 1rem;
    width: 100%;
  }
  #contact .content .form .row{
    display: block;
    text-align: left;
    margin: 1rem 0.5rem;
  }
  #contact .content .form label{
    width: 100%;
  }
  #contact .content .form input, textarea{
    width: 100%;
  }

  #footer .row{
    padding: 1.5rem;
  }
  #about{
    flex-direction: column-reverse;
  }

  #about .content{
    min-height: 80vh;
    width: 100% !important;
  }
  #about .desc{
    padding: 2rem 1.5rem;
  }
  #about .desc img{
    width: 100%;
    height: 50%;
  }
  #about .back{
    width: 100% !important;
    margin-top: 2rem;
    height: 30vh !important;
  }

  #news .cards{
    margin: 0% !important;
  }

  #news .header, #products .header{
    height: 30vh !important;
  }

  #news .cards .card{
    margin-right: 0 !important;
  }
  #single-item .heading{
    flex-direction: column-reverse;
    padding: 3rem 1rem;
  }
  #single-item .sliders{
    width: 95%;
    height: 50vh;
  }
  #single-item .text-side{
    width: 95%;
  }
  #products .cards{
    margin: 0 !important;
  }

  #products .header form input{
    width: 310px;
  }
  #products .header form input:hover{
    width: 330px;
  }
  .projects .projects-card{
    flex-direction: column-reverse;
    width: 90vw !important;
  }
  .projects .content{
    width: 100% !important;
    padding: 1rem !important;
    height: 50%;
  }
  .projects .desc{
    -webkit-line-clamp: 3 !important;
  }

  .projects .img{
    width: 100% !important;
    padding: 0 !important;
  }
  .projects .projects-card:hover img{
    transform: scale(1);
  }
  .back-btn{
    top: -2rem;
  }
  #clients .header{
    background-position: right;
  }
  #clients .cards{
    margin: 2rem 0 0 0;
  }
  #footer .copy-right{
      position: relative;
      text-align:center;
      padding: 0.5rem;
  }
}
/* end mobile */

/* The dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.alert-message{
  font-size: 1.3rem;
  position: absolute;
  color: green;
  z-index: 99999999;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  background: #ffffffe8;
  padding: 1rem;
  border-radius: 4px;
  transition: 0.35s;
}
.icon-world{
  width: 100vw;
  height: 100vh;
  color: red !important;
}

.home-sliders{
  width: 100vw;
}