
.color-1{color: #0080cc;}
.color-1{color: #00802b;}
.color-1{color: #003366;}
.color-1{color: #26dd9a;}
.color-1{color: #0080fe;}
/* font */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');
/* Basic styles for html body */
body{
  background-color: #f2faff;
  margin: 0;
  padding: 0;
  font-family: 'poppins',-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1, h2, h3{
  margin: 0;
}
p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 00;
}
.left{
  float: left;
}
.right{
  float: right;
}
.justify{
  text-align: justify;
}
.center{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.margin-wide{
  margin: 50px 0;
}

.section-head{
  text-align: center;
  position: relative;
  margin-bottom: 4rem; 
  font-size: 34px;
}

.section-head::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Adjust distance of the underline from text */
  left: 50%;
  width: 50px; /* Adjust underline width */
  height: 2px; /* Adjust underline height */
  background-color: #26dd9a; /* Adjust underline color */
  transform: translateX(-50%);
}

.highlighted-h1{
  color: #0080fe;
}

.section{
  padding: 5rem 4rem;
}

/* Register button */
.button-style-1 {
  display: inline-block;
  position: absolute;
  border: 1px solid #0080fe;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  
}

.button-style-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #26dd9a;
  z-index: -1;
  transition: all 0.2s ease;
}

.button-style-1:hover {
  color: #fff;
  border: 1px solid #26dd9a;
}

.button-style-1:hover::before {
  width: 100%;
}

.button-big{
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
}

/* whatsapp button */
.wap-icon {
  position: fixed;
  z-index: 1000;
  bottom: 3rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wap-icon i {
  font-size: 40px;
  color: #25D366;
}

@keyframes wave {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.wap-icon {
  /* ... */
  animation: wave 2s ease-in-out infinite;
}

.button-style-2 {
  display: inline-block;
  position: relative;
  background-color: rgb(255, 255, 255);
  color: #000;
  border: 2px solid #0080fe;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  margin-right: 20px;
  cursor: pointer;
}

.button-style-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0080fe;
  z-index: -1;
  transition: all 0.2s ease;
}

.button-style-2:hover {
  color: #fff;
}

.button-style-2:hover::before {
  width: 100%;
}

.centered-button {
 
}

/* Header style strats here */
header{
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 100px;
  transition: background-color 0.3s ease-in-out;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
}


.header {  
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: space-between;
  position: relative;
}

.hambergur {
  width: 1.6rem;
  right: 2rem;
  top: 2.5rem;
  position: absolute;
  cursor: pointer;
}
.hambergur div {
  width: 30px;
  height: 2px;
  background: #0080fe;
  margin-bottom: 7px;
  
}
.hambergur div:nth-child(2) {
  width: 23px;
  background: #26dd9a;
}
.fullscreen {
  display: flex;
  -webkit-clip-path: circle(0% at 96.5% 4%);
          clip-path: circle(0% at 96.5% 4%);
  position: absolute;
  background: rgba(255, 255, 255);
  width: 100%;
  height: 100vh;
  align-items: center;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen .close {
  position: absolute;
  top: 2.7rem;
  cursor: pointer;
  right: 2.5rem;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}
.fullscreen .close div {
  width: 32px;
  height: 32px;
  overflow: hidden;
}
.fullscreen .close div:before, .fullscreen .close div:after {
  content: "";
  width: 2rem;
  height: 2px;
  background: #26dd9a;
  position: absolute;
  
}
.fullscreen .close div:after {
  transform: rotate(90deg);
  background: #0080fe;
}
.fullscreen.active {
  -webkit-clip-path: circle(140% at 96.5% 4%);
          clip-path: circle(140% at 96.5% 4%);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen.active ul > li {
  -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
          animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}
.fullscreen.reverse_anim {
  -webkit-clip-path: circle(0% at 96.5% 4%);
          clip-path: circle(0% at 96.5% 4%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

.fullscreen .left-column,
.fullscreen .right-column {
  height: 100vh;
}

.fullscreen .left-column {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullscreen .left-column .menu-logo{
  max-width: 100%;
}
.fullscreen .left-column .menu-logo img{
  max-width: 100%;
  width: 350px;
  height: auto;
}
.fullscreen .right-column {
  width: 60%;
  height: 70vh;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
}

.right-column .logo a{
  display: none;
}

.vertical-divider {
  width: 1px;
  height: 70vh;
  background-color: #e0e0d7;
}

.fullscreen .right-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fullscreen .right-column ul li {
  margin-bottom: 1rem;
  white-space: nowrap;
}

.menu-head{
  display: flex;
  width: 100%;
}
.menu{
  padding: 1rem 3rem;
}

.menu a, .menu-footer a{
  text-decoration: none;
  color: #1f1f29;
  font-weight: 400;
}
.menu-footer{
  display: flex;
}
.menu-short{
  padding: 1rem 3rem;
}
.menu-short p, .menu-short h3{
  color: #1f1f29;
  font-weight: 400;
}

.fullscreen .right-column .menu-footer-faq ul{
  padding-left: 3rem;
  display: flex;
}
.fullscreen .right-column .menu-footer-faq ul li{
  margin-bottom: 0;
  font-size: 14px;
  margin-right: 20px;
}
.fullscreen .right-column .menu-footer-faq ul li a{
  color: #26dd9a;
  text-decoration: none;
}

.social{
  padding: 1rem 3rem;
}

.main-social{
  bottom: 2rem;
  margin: 0 auto;
  max-height: 100px;
  position: absolute;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}

.main-social .effect a {
  color: #f9f4f4;
  border: none;
}
.main-social .effect.varrius a:hover {
  color: #fff;
  border: none;
}

.effect .buttons {
	display: flex;
}

.logo{
left: 2rem;
top: 10px;
position: absolute;
cursor: pointer;

}

.logo img{
  width: 200px;
  padding: 0;
  margin: 0;
}

/* Header style ends here */


		  /* styles for a common effect  */
      .effect {
        /*display: flex; */
        }
        .effect a {
        text-decoration: none !important;
        width: 45px;
        height: 45px;
        display: flex;  
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin: 0 5px;
        font-size: 25px;
        overflow: hidden;
        position: relative;
        color: #26dd9a;
        border: #e4dfcc 1px solid;
        }
        .effect a i {
        position: relative;
        z-index: 3;
        }
        .effect a:last-child {
        margin-right: 0px;
        }
        .effect a:before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0080fe;
        transition: .5s;
        z-index: 2;
        }
        .effect a:hover:before {
        top: 0;
        }
        .effect a i {
        display: inline-block;
        vertical-align: middle;
        }
        a .icon {
        transition: .5s;
        z-index: 3;
        }
        a:hover .icon {
        transform: rotateY(360deg);
        }
        /* varrius effect */
        .effect.varrius a {
        transition: all 0.2s linear 0s;
        }
        .effect.varrius a:after {
        content: "";
        display: block;
        width: 90%;
        height: 90%;
        top: -110%;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
        border-radius: 50%;
        }
        .effect.varrius a:hover {
        color: #fff;
        border: solid 1px #dac4bc;
        }
        .effect.varrius a:hover:after {
        top: 5%;
        transition: all 0.2s linear 0s;
        }
/* effect-shine */
a.a-shine:hover {
  -webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, rgba(38, 221, 154, 0.9) 50%, #000 70%);
  -webkit-mask-size: 200%;
  animation: shine 1s infinite;
  color: rgb(0, 0, 0)
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
  }
}

/* Banner style */
.main-banner {
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}


#bg-video::-webkit-media-controls {
  display: none !important;
}


.main-banner img{
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  padding: 0 3rem;
  transform: translate(-50%, -50%);
  text-align: left; /* Align the text to the left */
  
}

.hero-text h1 {
  font-size: 55px;
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
  color: #26dd9a;
  
}

.hero-text h1 span{
  color: #0080fe;
}

.hero-text p {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s 0.5s ease-in-out forwards;
  color: #003366;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10000;
}

.banner .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
}

.banner .owl-nav .owl-next {
  position: absolute;
  right: 10px;
}

.banner .owl-carousel .owl-nav .owl-prev,
.banner .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    opacity: 0.5;
    transform: translateY(-50%);
    color: #f2f2f8;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
}

/* About us Styles */

.about{
  background: #FFF;
}

.about h2{
  font-size: 28px;
}
.about-section {
  display: flex;
  width: 100%;
  cursor: pointer;
  margin: 0 auto;
  align-content: space-between;
  
}

.image-column {
  flex-basis: 50%;
  padding-right: 60px;
  box-sizing: border-box;
  flex: 1;
  width: auto;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.content-column {
  flex-basis: 50%;
}
.about-section p{
  margin: 2rem 0;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Change button color as needed */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3; /* Change hover color */
}

/* Product Styles */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.product{
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 50%; 
  height: 50%; 
  min-height: 85%;
  border-radius: 50%;
  background-color: rgb(38, 221, 154, 0.2); /* Circle color */
  transform: translate(-50%, 50%);
}

.product-column{
  flex: 30%;
  max-width: 30%;
  margin-bottom: 2rem;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
  max-height: 300px;
  min-height: 250px;
}

.product-image {
  position: relative;
  
}

.product-image img {
  width: 100%;
  height: auto; 
  object-fit: cover;
  display: block;
}


.product-details {
  padding: 1rem;
}

.product-details a{
  text-decoration: none;
  color: #000;
}
.product-details h2 {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.product-details h4 {
  font-weight: 500;
  padding: 0;
  margin-top: 0 ;
}

.product-details p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.button-bottom {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: solid 1px #ddd;
  text-align: center;
  color: #000;
  padding: 15px 5px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  z-index: 1;
  }

  .button-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #26dd9a;
  z-index: -1;
  transition: all 0.2s ease;  
}


.button-bottom:hover {
  color: #fff;

}

.button-bottom:hover::before {
  width: 100%;
}

/* products page style */

.prod-section {
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 1rem 4rem;
  background: #fff;
}

.products{
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 20px; 
}

.prod-card {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    
}

.prod-head{
  text-align: center;
  position: relative;
  margin: 3rem 0; 
  width: 100%;
}

.prod-subhead{
  text-align: center;
  position: relative;
  margin: 2rem 0 3rem 0; 
  width: 100%;
}.prod-subhead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 50px; /* Adjust underline width */
  height: 3px; /* Adjust underline height */
  background-color: #0080fe; /* Adjust underline color */
  transform: translateX(-50%);
}

.prod-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100px; /* Adjust underline width */
  height: 2px; /* Adjust underline height */
  background-color: #ccc; /* Adjust underline color */
  transform: translateX(-50%);
}

.products a{
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border: solid 1px #26dd9a;
  padding: 0 1rem;
}

/* product details style */

.prod-details {
  display: flex;
  width: 100%;
  cursor: pointer;
  margin: 0 auto;
  align-content: space-between;
  
}

.Prod-column {
  flex-basis: 50%;
  padding-right: 60px;
  box-sizing: border-box;
  flex: 1;
  width: auto;
}

.Prod-column h3{
  font-weight: 500;
  color: #777;
  line-height: 30px;
}
.Prod-order {
  background: #26dd9a;
  border-radius: 20px;
  padding: 2rem 3rem;
  flex-basis: 50%;
  height: auto;
}
/* industry section style */

.industries{
  background: rgb(133, 108, 254, 0.1);
}
.industry-section {
  display: flex;
}

.industry-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 items in a row */
  gap: 20px; /* Adjust spacing */
  align-items: center;
}

.industry {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust spacing between icon and text */
}

.industry i {
  font-size: 55px; 
  color: #0080fe;
  border: 2px solid #26dd9a;
  border-radius: 50%;
  margin: 10px 0;
  padding: 10px;
  background: rgb(255, 255, 255, 0.4);
}

.industry-content {
  flex: 1;
  padding: 20px; /* Adjust padding as needed */
}

.content-image img {
  width: 100%; 
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
}

.content-text h2 {
  font-size: 24px; /* Adjust title size */
  margin-bottom: 10px; /* Adjust spacing */
  font-weight: 600;
}

.content-text p {
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Main styles for the order now section */

.content-left {
  flex: 1; 
  text-align: left;
}

.button-right {
  margin-left: 20px; 
}

.order-now{
  background: #26dd9a;
}
.order-now-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  color: #fff;
}

.order-now-content {
  max-width: 800px;
  margin: 0 auto;
}

.order-now-content h2 {
  font-size: 36px; /* Adjust heading font size */
  margin-bottom: 10px; /* Adjust margin as needed */
}

.order-now-content p {
  font-size: 18px; /* Adjust paragraph font size */
  color: #666; /* Adjust color as needed */
  margin-bottom: 20px; /* Adjust margin as needed */
}





 /* Owl Carousel SErvices Styles */

.wfl-service{
  background: #000;
  padding-bottom: 4rem;  
}

.service-carousel{
  width: 100%;
  justify-content: center;
  align-items: center; /* added property */
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.service-carousel .item{
  position: relative;
  margin: 10px auto; 
  height: 450px;
  width: 330px;
  max-width: 400px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-out;
  display: block;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  border-radius: 10px;
}

.service-item-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}
.item:hover .service-item-image{
  transform: scale(1.2);
}
 .service-carousel .service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-carousel .service-item-content {
  text-align: center;
}

.service-carousel .service-item-content h3 {
  font-size: 16px;
  position: absolute; 
  bottom: 20px; 
  left: 0;
  right: 0;
  opacity: 0.8;
  height: 50px;
  color: #fff; 
  transform-origin: bottom;
  transform: translateY(0);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.service-carousel .item:hover h3 {
  transform: translateY(-100px);
  opacity: 1;
}
.service-carousel .service-item-content p{
  position: absolute;
  font-weight: 400;
  bottom: -40px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  height: 130px; /* Added fixed height */
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.service-carousel .item:hover .service-item-content p{
  bottom: 0;
  opacity: 1;
}

.service-carousel .service-item-content a{
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  height: 50px; /* Added fixed height */
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.service-carousel .item:hover .service-item-content a{
  bottom: 0;
  opacity: 1;
}




.readmore {
  display: block;
  font-weight: 400;
  color: #0080fe;
  text-decoration: none;
  margin-top: 25px;
  max-width: 200px;
}

.readmore:hover {
  color: #000;
  transition: .5s;
}

.readmore span {
  padding-left: 5px;
  position: relative;
  left: 0;
  transition: 0.5s;
  animation: move 2s linear infinite;
}

@keyframes move {
  0% { left: 0; }
  50% { left: 5px; }
  100% { left: 0; }
}

.readmore:hover span {
  animation: none;
  left: 5px;
}

/* Blog style starts here */
.blog{
  padding: 4rem 3rem;
  background-color: #fff;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  
}

.blog-column {
  flex: 30%;
  max-width: 33%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.blog-card {
  position: relative;
  border: 1px solid #e0e0d7;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 2rem;
  min-height: 500px;
  height: 700px;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-summary {
  margin-bottom: 20px;
}

.blog-details {
  display: flex;
  margin-bottom: 10px;
  justify-content: left;
  flex-direction: row;
}

.blog-author img {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-name {
  font-weight: 500;
  width: 100%;
  max-width: 100%;
}

.post-date {
  margin-left: 3px;
  font-weight: 400;
}

.blog-date{
  margin-left: 10px;
}

/* Logo carousel style is starting here */
.client-logos {
  max-width: 100%;
  margin: 20px auto; /* Adjust margin as needed */
}

/* Styles for the logo items */
.logo-item {
  text-align: center;
  padding: 10px; /* Adjust padding as needed */
}

.logo-item img {
  height: auto;
  width: 150px;
  max-width: 150px;
  display: block;
  margin: 0 auto; /* Center the images */
}

/* Footer style is starting here */

.footer-parallax {
  background-color: #26dd9a;
  display: flex;
  z-index: 1;
  color: #000;
  font-weight: 400;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 2;
  padding: 4rem 3rem 1rem;
  margin: 0 auto;
}

.footer-1{
  display: flex;
  width: 40%;
  flex: 1;
  float: left;
  flex-direction: column;
}

.footer-2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 60%;
  float: right;
}

.footer-about{
  padding-right: 3rem;
}

.footer-col {
  flex: 0 0 calc(33.33% - 20px);
  height: 100%;
}

.footer-row:after {
  content: "";
  display: table;
  clear: both;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li i{
 padding-right: 10px;
 
}

.footer-col ul li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.footer-col p,li{
  font-size: 16px;
}

.footer-logo{
  margin-bottom: 1.5rem;
  width: 300px;
  height: auto;
}

.footer-applink{
  margin-top: 2rem;
  font-weight: 400;
}

.footer a:hover{
  text-decoration: none;
}

/* Parallax effect */
.footer-parallax:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3);
  z-index: -1;
  }

.footer-parallax:hover:before {
  transform: translateY(0);
}

.footer-credit {
  border-top: 1px solid #5b5b5b;
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-col-credit {
  width: 50%;
}

.footer-col-credit p{
  font-weight: 200;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-links li {
  margin: 0 10px;
}

.footer-links li a {
  text-decoration: none;
  color: #5b5b5b;
  transition: color 0.3s;
}

.footer-social{
  display: flex;
  margin-top: 1rem;
}

.footer-social .effect a {
  color: #000;
  border: solid 1px #00802b;
}
.main-social .effect.varrius a:hover {
  color: #26dd9a;
  border: none;
}

/* Footer style is ends here */

 /* Scrollbar Styling */
 ::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: #26dd9a;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #0080fe; 
}

/* page style is starts here */
.page{
  margin: 0;
  padding: 0 0 3rem 0;
  background: #fff;
}

.page-banner{
    position: relative;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.page-banner img{

  width: 100%;
 height: 300px;
  object-fit: cover;
}

/* Reset default list styles */
.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Breadcrumb styling */
.breadcrumb {
  text-align: right;
  font-size: 14px;
  padding: 0 3rem;
  font-weight: 300;
  
}

.breadcrumb ul li {
  display: inline;
  margin-right: 5px;
}

.breadcrumb ul li a {
  text-decoration: none;
  color: #777;
  
}

.breadcrumb ul li:last-child {
  font-weight: 400;
  color: #555;
}

.page-content {
  flex: 1;
  
  /* Adjust content area styles */
}

.sidebar {
  flex: 0 0 350px; 
  padding: 0 1rem;
  border-left: 1px solid #ccc;
  margin: 5rem 0;
  
}

.sidebar h3{
  font-weight: 600;
}

.sidebar ul{
  margin: 0;
  padding: 0;
}
.sidebar ul li{
  list-style: none;
  line-height: 30px;
  
}

.sidebar a{
  text-decoration: none;
  color: #003366;
  
}

.form-outline-style-v1 .form-group {
	margin-bottom: 50px;
	padding-right: 5px;
  }
  
  .form-outline-style-v1 .form-group label {
	position: absolute;
	top: 5px;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
  }
  
  .form-outline-style-v1 .form-group .form-control {
	border: none;
	background: none;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	color: #000;
	border-bottom: 1px solid #0080fe;
  }
  
  .form-outline-style-v1 .form-group .form-control:active, .form-outline-style-v1 .form-group .form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #000;
  background: #f2faff;
  padding: 6px 10px;
  }
  
  
  .form-outline-style-v1 .form-group.focus {
	background: rgb(227, 227, 227);
  }
  
  .form-outline-style-v1 .form-group.field--not-empty label {
	margin-top: -25px;
  }
  
  .contact {
    width: 50%;
    margin-bottom: 4rem;
  }

.contact-sec{
  display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}
  .form-control {
	border: none;
  width: 100%;
	background: none;
	padding-left: 0;
	padding-right: 0;
	border-radius: 0;
	color: #000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .form-control:active, .form-control:focus {
	background: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-bottom: 1px solid #0080fe;
  }
  
  
  .portfolio-single-inner .heading-portfolio-single-h2 {
	margin-bottom: 40px;
	font-size: 50px;
	font-weight: 900;
  }

  span.error {
	color: rgba(255, 255, 255, 0.5);
  }
  
  #message {
	resize: vertical;
  }
  
  #form-message-warning, #form-message-success {
	display: none;
  }
  
  #form-message-warning {
	color: #f64b3c;
  }
  
  #form-message-success {
	color: #8cba51;
	font-size: 18px;
	font-weight: bold;
  }
  
  .submit{
    display: inline-block;
    position: absolute;
    border: 1px solid #0080fe;
    color: #fff;
    background: #0080fe;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
    cursor: pointer;
  }

  .submit:hover {
    color: #fff;
    background: #26dd9a;
    border: 1px solid #26dd9a;
  }

  .submitting {
	float: left;
	width: 100%;
	padding: 10px 0;
	display: none;
	font-weight: bold;
	font-size: 13px;
	letter-spacing: .1rem;
	color: rgba(255, 255, 255, 0.5);
  }


  ::selection {
    background: #212129;
 }
 
 .search-wrapper {
     position: absolute;
    
     top:1rem;
     right:4rem;
 }
 .search-wrapper.active {}
 
 .search-wrapper .input-holder {    
     height: 70px;
     width:70px;
     overflow: hidden;
     background: rgba(255,255,255,0);
     border-radius:6px;
     position: relative;
     transition: all 0.3s ease-in-out;
 }
 .search-wrapper.active .input-holder {
     width:450px;
     border-radius: 50px;
     background: rgba(0,0,0,0.7);
     transition: all .5s cubic-bezier(0.000, 0.105, 0.035, 1.570);
 }
 .search-wrapper .input-holder .search-input {
     width:100%;
     height: 50px;
     padding:0px 70px 0 20px;
     opacity: 0;
     position: absolute;
     top:0px;
     left:0px;
     background: transparent;
     box-sizing: border-box;
     border:none;
     outline:none;
     font-family:"Open Sans", Arial, Verdana;
     font-size: 16px;
     font-weight: 400;
     line-height: 20px;
     color:#FFF;
     transform: translate(0, 60px);
     transition: all .3s cubic-bezier(0.000, 0.105, 0.035, 1.570);
     transition-delay: 0.3s;
 }
 .search-wrapper.active .input-holder .search-input {
     opacity: 1;
     transform: translate(0, 10px);
 }
 .search-wrapper .input-holder .search-icon {
     width:70px;
     height:70px;
     border:none;
     border-radius:6px;
     background: none;
     padding:0px;
     outline:none;
     position: relative;
     z-index: 2;
     float:right;
     cursor: pointer;
     transition: all 0.3s ease-in-out;
 }
 .search-wrapper.active .input-holder .search-icon {
     width: 50px;
     height:50px;
     margin: 10px;
     border-radius: 30px;
 }
 .search-wrapper .input-holder .search-icon span {
     width:22px;
     height:22px;
     display: inline-block;
     vertical-align: middle;
     position:relative;
     transform: rotate(45deg);
     transition: all .4s cubic-bezier(0.650, -0.600, 0.240, 1.650);
 }
 .search-wrapper.active .input-holder .search-icon span {
     transform: rotate(-45deg);
 }
 .search-wrapper .input-holder .search-icon span::before, .search-wrapper .input-holder .search-icon span::after {
     position: absolute; 
     content:'';
 }
 .search-wrapper .input-holder .search-icon span::before {
     width: 4px;
     height: 11px;
     left: 9px;
     top: 18px;
     border-radius: 2px;
     background: #0080fe;
 }
 .search-wrapper .input-holder .search-icon span::after {
     width: 14px;
     height: 14px;
     left: 0px;
     top: 0px;
     border-radius: 16px;
     border: 4px solid #26dd9a;
 }
 