/* Navbar Styling */
.navbar {
  padding: 1rem 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  width: 80px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 60px;
  }
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #0056b3;
  font-size: 1.1rem;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.navbar-nav .nav-item.active .nav-link {
  color: #0056b3;
  font-weight: 600;
}

/* Toggler Icon */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 51, 102, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section Styling */
.hero-section {
  background-color: #003366;
  color: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  margin-top: 120px;
  display: flex;
  align-items: center;

  margin-left: auto;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}

/* Style for the main content section */
.hero {
  font-family: "poppins";
  padding: 20px;

  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading style */
.hero h1 {
  font-family: "poppins";
  font-size: 39px;
  color: white;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Paragraph style */
.hero p {
  font-family: "poppins";
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info a {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  margin-right: 10px;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .col-md-6 h1 {
    font-size: 28px;
  }

  .col-md-6 p {
    font-size: 14px;
  }
}

.contact-info {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.hero-image {
  height: auto;
  object-fit: cover;
  /* max-height: 400px;  */
}

@media (max-width: 767px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .elevator-image {
    width: 45%;
  }
}

#aboutCarousel .carousel-item.about-carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 50px;
}

#aboutCarousel .carousel-item p {
  background: rgba(0, 0, 0, 0.718);
  padding: 70px;
  text-align: center;
  line-height: 2rem;
  font-size: 22px;
  color: white;
  border-radius: 5px;
}

.carousel-item p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
}

.carousel-control-next {
  right: -20px !important;
}

.carousel-control-prev {
  left: -20px !important;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute !important;
  /* width: 7% !important; */
  padding: 17px;
  width: 4% !important;
  top: 50% !important;
  height: 38px;
  background-color: #0056b3;
  border-color: #0056b3;
  border-radius: 50%;
  opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* background-color: #0056b3; */
  border-radius: 50%;
  padding: 10px;
}

.contact-section {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.background-image {
  background-image: url("../images/Screenshot_2024-10-19_130626-removebg-preview\ 1.png");
  background-size: cover;
  width: 100%;
  height: 400px;
  opacity: 1;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .background-image {
    display: none;
  }
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a3e72;
  margin-bottom: 2rem;
}

.contact-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a3e72;
}

.contact-section p {
  font-size: 1.5rem;
  color: #1a3e72;
}

.contact-section i {
  color: #1a3e72;
  margin-right: 0.5rem;
}

/* -------------------------service-----------------Additional Styling -------------------------------*/

/* Container and Title Styling */
.services-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.services-title {
  text-align: center;
  color: #2d4a91;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Service Item Styling */
.service-item {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item p {
  margin: 0;
  line-height: 1.8rem;
  color: #333;
}

/* Image Styling */
.elevator-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* Responsive Layout Adjustments */
@media (max-width: 992px) {
  .services-title {
    font-size: 1.8rem;
  }

  .service-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col-md-4,
  .col-md-7 {
    width: 100%;
    max-width: 600px;
  }

  .service-item {
    padding: 20px;
    margin-bottom: 25px;
  }

  .elevator-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 1.5rem;
  }

  .service-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .service-item p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }

  .elevator-image {
    max-width: 90%;
    margin: 0 auto 20px auto;
  }
}

/* ---------producct----------- */

.product {
  margin: 50px auto;
  text-align: center;
}

.product_cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-top: 20px;
  position: relative;
}

.product_cart1 {
  flex: 1 1 30%; /* Flexible box for dynamic sizing */
  max-width: 300px; /* Limiting the maximum width */
  text-align: center;
  margin: 10px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */
  border-radius: 8px;
  overflow: hidden;
}

.product_cart1 img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image scales properly */
}

@media (min-width: 1801px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 13%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }


  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }


}

@media (min-width: 1601px) and (max-width: 1800px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 14%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 1401px) and (max-width: 1600px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 14%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }
 
  
}

@media (min-width: 1301px) and (max-width: 1400px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 16.5%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 1250px) and (max-width: 1300px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 17%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }
  
}

@media (min-width: 1200px) and (max-width: 1251px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 18%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 1101px) and (max-width: 1200px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 19.5%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  
  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 1050px) and (max-width: 1100px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 20%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 900px) and (max-width: 1049px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 21%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }
  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }
}

@media (min-width: 850px) and (max-width: 899px) {
  .product_p {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgb(22, 22, 170);
    text-transform: capitalize;

    position: absolute;
    top: 22%;
    margin-left: 22%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
  }

  p.three1,
  p.six1 ,   p.two1, p.four1 , p.five1 {
    display: none;
  }

}

@media (min-width: 769px) and (max-width: 849px) {
  .product_p {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: rgb(22, 22, 170);
    text-transform: capitalize !important;

    position: absolute;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
    white-space: nowrap;

    top: 14%;
    margin-left: 23%;
  }

  .one {
    position: absolute;
    top: 14%;
    left: 25%;
  }

  .two {
    position: absolute;
    top: 14%;
    left: 23%;
  }

  .product_p .three,   .two1,  .four1,  .five1,
  .product_p .six {
    display: none;
  }

  .three1,
  .six1 {
    position: absolute;
    top: 64%;
    left: 59%;
    font-weight: bolder;
    color: rgb(22, 22, 170);
    writing-mode: vertical-lr;
    white-space: nowrap;
  }
}




@media (min-width: 701px) and (max-width: 768px) {

  .product_p {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: rgb(22, 22, 170);
    text-transform: capitalize !important;

    position: absolute;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
    white-space: nowrap;

    top: 10%;
    margin-left: 65%;
}


.one
{
    font-weight: bolder;
    color: rgb(22, 22, 170);
    writing-mode: vertical-lr;
    white-space: nowrap;
    font-size: 45px;
}

.product_p .two,
.product_p .three,
.product_p .four,
.product_p .five,
.product_p .six {
    display: none;
}

.one1, .two1, .three1, .four1, .five1, .six1 {
    position: absolute;
    font-weight: bolder;
    color: rgb(22, 22, 170);
    writing-mode: vertical-lr;
    white-space: nowrap;
    font-size: 45px;
    left: 73%;
}


.two1 {
    top:43%;
}

.three1 {
    top:73%;
}

.four1 {
    bottom: 80%;
}

.five1 {
    bottom:47%;
}

.six1 {
    bottom: 11%;
}



}



@media (min-width: 601px) and (max-width: 700px) {

    .product_p {
      font-size: 1.2rem !important;
      font-weight: bold !important;
      color: rgb(22, 22, 170);
      text-transform: capitalize !important;
  
      position: absolute;
      font-size: x-large;
      font-weight: 800;
      writing-mode: vertical-lr;
      white-space: nowrap;
  
      top: 10%;
   left: 73%;
  }
  
  
  .one
  {
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 35px;
  }
  
  .product_p .two,
  .product_p .three,
  .product_p .four,
  .product_p .five,
  .product_p .six {
      display: none;
  }
  
  .one1, .two1, .three1, .four1, .five1, .six1 {
      position: absolute;
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 35px;
      left: 73%;
  }
  
  
  .two1 {
      top:43%;
  }
  
  .three1 {
      top:73%;
  }
  
  .four1 {
      bottom: 80%;
  }
  
  .five1 {
      bottom:47%;
  }
  
  .six1 {
      bottom: 11%;
  }
  
  
  
  }



  @media (min-width: 401px) and (max-width: 600px) {

    .product_p {
      font-size: 1.2rem !important;
      font-weight: bold !important;
      color: rgb(22, 22, 170);
      text-transform: capitalize !important;
  
      position: absolute;
      font-size: x-large;
      font-weight: 800;
      writing-mode: vertical-lr;
      white-space: nowrap;
  
      top: 10%;
     left: 73%;
  }
  
  
  .one
  {
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 30px;
  }
  
  .product_p .two,
  .product_p .three,
  .product_p .four,
  .product_p .five,
  .product_p .six {
      display: none;
  }
  
  .one1, .two1, .three1, .four1, .five1, .six1 {
      position: absolute;
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 30px;
      left: 73%;
  }
  
  
  .two1 {
      top:43%;
  }
  
  .three1 {
      top:73%;
  }
  
  .four1 {
      bottom: 80%;
  }
  
  .five1 {
      bottom:47%;
  }
  
  .six1 {
      bottom: 11%;
  }
  
  
  
  }




  @media (min-width: 05px) and (max-width: 400px) {

    .product_p {
      font-size: 1.2rem !important;
      font-weight: bold !important;
      color: rgb(22, 22, 170);
      text-transform: capitalize !important;
  
      position: absolute;
      font-size: x-large;
      font-weight: 800;
      writing-mode: vertical-lr;
      white-space: nowrap;
  
      top: 10%;
    left: 73%;
  }
  
  
  .one
  {
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 30px;
  }
  
  .product_p .two,
  .product_p .three,
  .product_p .four,
  .product_p .five,
  .product_p .six {
      display: none;
  }
  
  .one1, .two1, .three1, .four1, .five1, .six1 {
      position: absolute;
      font-weight: bolder;
      color: rgb(22, 22, 170);
      writing-mode: vertical-lr;
      white-space: nowrap;
      font-size: 30px;
      left: 73%;
  }
  
  
  .two1 {
      top:43%;
  }
  
  .three1 {
      top:73%;
  }
  
  .four1 {
      bottom: 80%;
  }
  
  .five1 {
      bottom:47%;
  }
  
  .six1 {
      bottom: 11%;
  }
  
  
  
  }


/* Responsive Styles */
@media (max-width: 992px) {
  .product_cart1 {
    flex: 1 1 45%;
    max-width: 250px;
  }
  .product_p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .product_cart {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .product_cart1 {
    max-width: 90%;
  }
  .product_p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 1.5rem;
  }
  .product_cart1 {
    max-width: 100%;
  }
  .product_p {
    font-size: 0.8rem;
  }
}

/* 
.product{
    margin: 100px;
}
.head{
    margin-top: 20px;
    color: rgb(22, 22, 170);
    text-align: center;
}

.product_cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 150px;
}
.product_cart1 img {
    height: 550px;
    width: 400px;
}
.product_p{
    margin-left: 80%;
    margin-top: -100%;
    font-size: x-large;
    font-weight: 800;
    writing-mode: vertical-lr;
}

@media (max-width: 992px) {
    .product_cart {
        justify-content: center;
    }

    .product_cart1 {
        max-width: 300px;
    }

    .product_p {
        font-size: medium;
    }
}

@media (max-width: 768px) {
    .product_cart {
        flex-direction: column;
        align-items: center;
    }

    .product_cart1 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .product_p {
        font-size: medium;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 1.5rem;
    }

    .product_cart1 {
        max-width: 90%;
    }

    .product_p {
        font-size: small;
    }
} */

.elevator-image {
  max-width: 100%;

  border-radius: 8px;
}

.contact-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background-color: #0a284a;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.contact-item i {
  font-size: 1.5em;
  margin-left: 10px;
  color: #fff;
}

.contact-item:hover {
  background-color: #007cba;
}

.contact-item.email {
  background-color: #0a284a;
}

.contact-item.whatsapp {
  background-color: #25d366;
}

.contact-item.phone {
  background-color: #34b7f1;
}

.contact-item span {
  display: none;
}

.contact-item:hover span {
  display: inline-block;
  margin-right: 10px;
}

/* ---------------------enquiry------------------------------------------ */

/* ----------------enquriry ------- */

#contactForm {
  display: none;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1;
}

#enquiry_frm {
  cursor: pointer;
}

.form-main {
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-main .main-wrapper {
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 0 5px 5px #00000020;
  /* backdrop-filter: blur(5px); */
  /* background-color: #ffffff85; */
  /* padding: 45px; */
  background-color: #42404085;
  padding: 15px 45px;
  backdrop-filter: blur(3px);

  color: #fff;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .form-main .main-wrapper {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .form-main .main-wrapper {
    width: 90%;
  }
}
.form-main .main-wrapper .form-head {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0px 0 25px;
}
.form-main .main-wrapper .form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.form-main .main-wrapper .form-wrapper .form-card {
  position: relative;
  width: 100%;
}
.form-main .main-wrapper .form-wrapper .form-card .form-input {
  padding: 20px 25px 15px;
  width: 100%;
  /* border: 1px solid #000; */
  border: 1px solid white;
  border-radius: 5px;
  background: transparent;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  box-sizing: border-box;
}
.form-main .main-wrapper .form-wrapper .form-card .form-input:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-input:focus {
  /* border: 1px solid #515151; */
  border: 1px solid #fff;
}
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input:valid
  ~ .form-label,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input:focus
  ~ .form-label {
  /* color: #515151; */
  color: #ffffffb8;
  top: 30%;
  transform: translateY(-70%);
  font-size: 13px;
  line-height: 23px;
}
.form-main .main-wrapper .form-wrapper .form-card .form-input:-webkit-autofill,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input:-webkit-autofill:hover,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input:-webkit-autofill:focus,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input::-webkit-outer-spin-button,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-main .main-wrapper .form-wrapper .form-card .form-label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.form-main .main-wrapper .form-wrapper .form-card .form-textarea {
  padding: 20px 25px 15px;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  resize: none;
  box-sizing: border-box;
}
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:valid,
.form-main .main-wrapper .form-wrapper .form-card .form-textarea:focus {
  /* border: 1px solid #515151; */
  border: 1px solid #fff;
}
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:valid
  ~ .form-textarea-label,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:focus
  ~ .form-textarea-label {
  /* color: #515151; */
  color: #ffffffb8;
  top: 18%;
  transform: translateY(-82%);
  font-size: 13px;
  line-height: 23px;
}
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:-webkit-autofill,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:-webkit-autofill:hover,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:-webkit-autofill:focus,
.form-main
  .main-wrapper
  .form-wrapper
  .form-card
  .form-textarea:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
}
.form-main .main-wrapper .form-wrapper .form-card .form-textarea-label {
  position: absolute;
  left: 25px;
  top: 30%;
  transform: translateY(-70%);
  pointer-events: none;
  transition: 0.3s;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 0;
}

.btn-wrap button {
  padding: 0 32px;
  font-size: 18px;
  line-height: 48px;
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.5s ease;
  cursor: pointer;
  box-shadow: 0 0 5px 5px #00000020;
}

.btn-wrap button:hover {
  border: 1px solid #000;
  background: transparent;
}

/* Default input field style */
.form-input,
.form-textarea {
  color: #fff;
}

/* ====================GALLERY-================================ */
