 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f8f3e7;
      overflow-x: hidden;
    }
   
    /* Main Section */
    .main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 40px;
    }

    .yellow-background {
      background-color: #fffb38;
      width: 70%;
      height: 700px; /* Increased height to cover the navbar */
      /* border-top-right-radius: 200px; */
      border-bottom-right-radius: 0px;
      border-bottom-left-radius: 200px;
      position: absolute;
      left: 8%;
      top: -40%; /* Start from the very top */
      z-index: 1; /* Ensures background stays behind content */    }

    /* .content {
      position: relative;
      z-index: 2;
      padding-left: 30px;
      color: #4a024c;
      margin-left: 5%;
      margin-bottom: 30%;
      bottom:60%;
    }

    .content h1 {
      font-size: 2rem;
      margin: 0;
    }

    .content p {
      font-size: 1.2rem;
      margin-top: 10px;
    } */


    .content {
  position: relative;
  z-index: 2;
  padding-left: 10px; /* Reduced padding */
  color: #4a024c;
  margin-left: 10%; /* Reduced margin */
  margin-bottom: 30%;
  bottom: 60%;
  max-width: 90%; /* Ensures content can spread wider */
}

.content h1 {
  font-size: 3.0rem; /* Increased font size for better visibility */
  margin: 0;
  line-height: 1.4; /* Added line-height for better spacing */
  text-align: left;
}

.content p {
  font-size: 1.5rem; /* Increased font size */
  line-height: 1.6; /* Better readability for longer text */
  text-align: left;

}


    .image-container {
      position: relative;
      z-index: 2;
    }

    .image-container img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Styling for the search container */
.search-container {
  margin-top: 20px;
  margin-right: 25%;
  text-align: left; /* Center the search bar */
}

/* Styling for the search bar */
.search-bar {
  width: 80%; /* Adjust width */
  max-width: 500px; /* Set max width */
  padding: 10px 20px; /* Add padding for better spacing */
  border-radius: 30px; /* Make the corners rounded */
  border: 2px solid #4a024c; /* Add a light border */
  font-size: 16px; /* Set font size */
  outline: none; /* Remove outline on focus */
  transition: border-color 0.3s ease; /* Smooth transition for border color */
  background-color: #4a024c;
  color: #f8f3e7;
}

/* On focus, change border color */
.search-bar:focus {
  border-color: #ffb400; /* Change border color on focus */
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main {
    padding: 20px;
  }

  .yellow-background {
    height: 500px;
    width: 90%;
    border-bottom-right-radius: 0px;
      border-bottom-left-radius: 100px;
      margin-bottom: 20px;
  }

  .content {
    padding: 20px;
  }

  .image-container {
    position: absolute;
    top: 60%;
    
    width: 80%;
    max-width: 300px;
  }

  .image-container img {
    width: 100%;
    border-radius: 6px;
  
  }

  .content h1 {
    font-size: 1.4rem;
  }

  .content p {
    font-size: 1.0rem;
  }

  /* Adjust the search bar */
  .search-container {
    margin-top: 15px;
  }

  .search-bar {
    width: 80%;
  }
}

/* @media (max-width: 480px) {
  .content h1 {
    font-size: 1.2rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .image-container {
    width: 90%;
    max-width: 250px;
    left: 5%;
  }

  .search-bar {
    width: 100%;
  }
} */

  /* Navbar styles */
/* .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
} */

/* .navbar .logo {
  color: #fff;
  font-size: 24px;
} */

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;

  position: relative;
  z-index: 2;
}


#menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#menu li {
  margin: 0 15px;
}


.menu-icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}




body{
    overflow-x: hidden;
}
.about-us {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.about-us-container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px; /* Adjust gap between image and content */
}

.image-container1 {
  flex: 1;
}

.image-container1 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.content-container1 {
  flex: 1;
  text-align: left;
}

.content-container1 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-container1 p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  background-color:#dde02b;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color:#9da00e;
}
/* Media Queries for devices smaller than 567px */
@media (max-width: 567px) {
  .about-us-container1 {
    flex-direction: column; /* Stack image and content vertically */
    gap: 20px; /* Reduce gap between image and content */
    text-align: center; /* Center text for smaller screens */
  }

  .image-container1 img {
    max-width: 100%; /* Ensure image fits within the container */
    height: auto;
    margin-top: 10px;
    
  }

  .image-container1 {
    order: 2; /* Ensure the image comes second */
  }

  .content-container1 {
    padding: 15px; /* Add some padding for content */
    order: 1; /* Ensure the content comes first */
  }

  .content-container1 h2 {
    font-size: 1.5rem; /* Reduce font size for headings */
  
  }
  .content-container1{
    margin-top: 30%;
  }
  .content-container1 p {
    font-size: 0.9rem; /* Adjust font size of paragraph for smaller screens */
  }

  .btn {
    padding: 8px 16px; /* Reduce button size */
    font-size: 0.9rem; /* Reduce font size for button */
  }
  .how-to-order h2{
    margin-top: 80px;
  }
}

.how-to-order {
  padding: 4rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.how-to-order h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #4a024c;
}

.steps {
  display: flex;
  align-items: center; /* Vertically align items */
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.step {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: calc(30% - 1rem); /* Adjust width to fit within the row */
  text-align: center;
}

.step img {
  width: 60px;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.step p {
  font-size: 1rem;
  color: #666;
}

.arrow {
  font-size: 2rem;
  color: #4a024c;
  margin: 0 1rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .steps {
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }

  .arrow {
    display: none; /* Hide arrows on smaller screens */
  }

  .step {
    width: 100%; /* Each card takes full width on small screens */
    margin-bottom: 1rem;
  }
}



    .testimonials-slider {
  padding: 4rem 1rem;
  background-color:#f8f8f7;
  text-align: center;
}

.testimonials-slider h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #4a024c;
}

.swiper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .customer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card .customer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-card .customer h3 {
  font-size: 1.2rem;
  color: #333;
}

.testimonial-card .customer span {
  font-size: 0.9rem;
  color: #666;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #4a024c;
}

/* Swiper pagination dots */
.swiper-pagination-bullet {
  background: #4a024c;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pagination {
    text-align: center;
    margin-top: 2rem;
}

.pagination a {
    color: #4a024c;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #4a024c;
    margin: 0 5px;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #4a024c;
    color: white;
}

.pagination .active {
    background-color: #4a024c;
    color: white;
}

.card-container1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding:40px 40px;
    
}

.card {
  border: 1px solid #ddd;
  padding: 15px; /* Reduced padding */
  border-radius: 30px;
  box-shadow: 0 2px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-align: center;
  margin-top: 10%; /* Adjust the margin top to avoid card being too high */
  max-height: 300px; /* Set a max height for the card */
  overflow:visible; /* Hide overflowing content */
}

.card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

h3 {
    font-size: 18px;
    text-transform: capitalize;
}

h1 {
    text-align: center;
    margin: 2rem;
}

p {
    font-size: 14px;
}

#page-numbers {
    margin-top: 20px;
    font-size: 16px;
}



 /* Media Queries for Mobile Screens */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .card-container1 {
        display: flex; /* Use flexbox for horizontal alignment */
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        gap: 10px;
        padding:40px 40px;
    }

    .card {
        flex: 0 0 auto; /* Prevent cards from shrinking or growing */
        width: 250px; /* Set a fixed width for cards */
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

}

@media (max-width: 480px) {
     h1 {
        font-size: 1.2rem;
    }

    .card-container1 {
        gap: 8px; /* Adjust spacing for smaller screens */
        padding:40px 40px;
    }

    .card {
        width: 200px; /* Slightly smaller cards for very small screens */
    }
}
.image-containers {
  position: relative;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; /* Circular container width */
  height: 200px; /* Circular container height */
  border-radius: 50%; /* Makes the container circular */
  overflow: hidden; /* Ensures content fits within the circular shape */
}

.image-containers img {
  width: 100%; /* Makes the image fill the width of the container */
  height: 100%; /* Ensures the image fills the height of the container */
  object-fit: cover; /* Ensures the image fits proportionally inside the circle */
}
.card-buttons {
  display: flex;
  justify-content: center;
  gap: 60px; /* Controls the spacing between the buttons */
  margin-top: 10px;
}

.btn-know-more,
.btn-add-to-cart {
  padding: 6px 10px;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-know-more {
  background-color: #4a024c;
  color: white;
}

.btn-add-to-cart {
  background-color: #f3f731;
  color: #4a024c;
}

.btn-know-more:hover {
  background-color: #4a024c;
}

.btn-add-to-cart:hover {
  background-color: #f3f731;
}
/* Footer Styles */
.food-footer {
  background-color: #4a024c;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.food-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #f3f731;
}

.footer-section p,
.footer-section ul {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #f3f731;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f3f731;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .food-footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
  }

  .social-icons {
    margin-top: 1rem;
  }
}


  /* Navbar Styles */
  .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            /* background-color: #333; */
            color: white;
            position: relative;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
  .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
           
            /* margin-inline-start: 20px; */
            transform: translate(calc(100px), calc(-5px)); /* Moves button right by 20px and up by 5px */
       
        }
 
        .navbar .nav-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
        }

        .navbar .nav-links a {
            text-decoration: none;
            color:#4a024c;
            padding: 10px 15px;
            margin: 0 5px;
            transition: background 0.3s ease;
            font-size: 1rem;
        }

        .navbar .nav-links a:hover {
            background-color: #ffffff;
            border-radius: 5px;
        }
        .navbar .cart-icon {
            font-size: 1.5rem;
            color:#4a024c;
            cursor: pointer;
            transition: color 0.3s ease;
            margin-right: 70px;
            
        }

        .navbar .cart-icon:hover {
            color:#f3f731;
        }
        /* .navbar .cart-btn {
            padding: 10px 20px;
            background-color: #04aa6d;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-right: 70px;
        }

        .navbar .cart-btn:hover {
            background-color: #038c56;
        } */

        .navbar .toggle-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (min-width: 1200px) {
          .nav-links a span {
              display: none; /* Hide the text */
          }
      
          .nav-links a i {
              display: inline-block; /* Ensure the icon stays visible */
              font-size: 35px;
          }
      }
 
       /* For Screens 567px or Smaller */
  /* For Screens 567px or Smaller */
  @media (max-width: 567px) {
    body, html {
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Prevent horizontal scrolling */
      width: 100%; /* Ensure full viewport width */
  }
  
  .navbar {
      flex-direction: row; /* Stack items horizontally for smaller screens */
  }
  
  .nav-links {
      position: fixed;
      bottom: 0; /* Stick the menu to the bottom of the screen */
      left: 0;
      width: 100%; /* Full width */
      background-color: #fffb38; /* Background color */
      display: flex; /* Horizontal layout for links */
      justify-content: space-around; /* Evenly space out the links */
      padding: 0px 0;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
      z-index: 1000; /* Ensure the menu is on top */
  }
  
  .nav-links a {
      font-size: 20px; /* Adjust font size for mobile screens */
      display: flex; /* Keep icon and text in flex container */
      justify-content: center;
      align-items: center;
      color: #4a024c; /* Adjust text color */
      flex-direction: column; /* Stack icon and text vertically */
      text-decoration: none; /* Remove underlines */
      width: 100%; /* Prevent overflow */
      position: relative; /* For pseudo-elements */
  }
  
  .nav-links a::after {
      content: ''; /* Add a vertical line */
      width: 1px; /* Line width */
      height: 25px; /* Line height */
      background-color: #4a024c; /* Line color */
      position: absolute;
      right: 0; /* Position the line to the right of each link */
      top: 50%; /* Center the line vertically */
      transform: translateY(-50%);
  }
  
  .nav-links a:last-child::after {
      content: none; /* Remove the line after the last link */
  }
  
  .fa-concierge-bell {
      font-size: 35px;
  }
  
  .cart-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
  }
  
  .cart-icon::before {
      content: ''; /* Add a vertical line before the cart icon */
      width: 1px;
      height: 25px;
      background-color: #4a024c;
      position: absolute;
      left: -10px; /* Adjust spacing from the cart icon */
      top: 50%;
      transform: translateY(-50%);
  }
  .nav-links a span {
    display: none; /* Hide text for each link (optional) */
}  
    .logo {
        font-size: 1rem; /* Smaller logo text size */
        margin-bottom: 0;
        width: auto; /* Remove fixed width for flexibility */
        height: auto; /* Remove fixed height for flexibility */
        align-self: flex-start; /* Push the logo to the left (start of navbar) */
        transform: translate(calc(-10px), calc(-5px)); /* Moves button right by 20px and up by 5px */
        margin-left: 30px;
    }

    /* Ensure that no child elements cause overflow */
    * {
        box-sizing: border-box; /* Include padding and border in width calculation */
    }
}


        .containert {
      max-width: 1000px;
      min-width: 600px;
      margin: 0 auto;
      text-align: center;
      height: 500px;
      border-radius: 35px;
    }

   .containert h2 {
      margin-bottom: 20px;
      color: #333;
    }

    .slider {
      position: relative;
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
    }

    .testimonial {
      min-width: 90%;
      padding: 30px;
      background: #fff;
   
      border-radius: 35px;
 
      text-align: center;
    }

    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .testimonial h5 {
      margin: 10px 0;
      font-size: 18px;
      color: #4a024c;
    }

    .testimonial p {
      font-size: 14px;
      color: #000000;
    }

    .controls {
      margin-top: 10px;
    }

    .controls button {
      background: #4a024c;
      color: #fff;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      margin: 5px;
      border-radius: 15px;
      font-size: 14px;
    }

    .controls button:hover {
      background: #fffb38;
    }
    @media (max-width: 567px) {
  .testimonial {
    max-width: 200px; /* Reduce the card width */
    margin: 0 auto; /* Center the card */
    padding: 15px; /* Adjust padding for smaller screens */
  }
  .containert{
    max-width: 1000px;
    min-width: 390px;
  }
}


.containerp {
      max-width: 1200px;
      margin: 0 auto;
    }

    .cardp {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 35px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin: 20px 0;
    }

    .cardp img {
      width: 50%;
      object-fit: cover;
    }

    .cardp-content {
      padding: 20px;
      flex: 1;
    }

    .cardp-content h3 {
      color: #333;
      margin-bottom: 10px;
      font-size: 24px;
    }

    .cardp-content p {
      color: #666;
      margin-bottom: 20px;
    }

    .containerp .btn {
      display: inline-block;
      padding: 10px 20px;
      background: #4a024c;
      color: #fff;
      text-decoration: none;
      border-radius: 15px;
      transition: background 0.3s;
    }

    .containerp .btn:hover {
      background: #e68a00;
    }

    .cta {
      text-align: center;
      padding: 40px 20px;
      background: #fffb38;
      color: #4a024c;
      margin-top: 20px;
      border-radius: 30px;
    }

    .cta h2 {
      margin-bottom: 20px;
      font-size: 28px;
    }

    .cta a {
      text-decoration: none;
      background: #4a024c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      transition: background 0.3s;
    }

    .cta a:hover {
      background: #e68a00;
    }

    /* Change direction for the second cardp */
    .cardp:nth-child(2) {
      flex-direction: row-reverse;
    }

    @media (max-width: 768px) {
      .cardp {
        flex-direction: column;
      }

      .cardp img {
        width: 100%;
      }

      .cardp:nth-child(2) {
        flex-direction: column;
      }
    }


::placeholder{
  color: white;
}
  
.cart-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 300px;
      height: 100%;
      background-color: #f4f4f4;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
      padding: 20px;
      transition: right 0.3s ease;
      z-index: 1000;
  }

  .cart-sidebar h2 {
      margin-top: 0;
  }

  .cart-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
  }

  .cart-item-details {
      display: flex;
      align-items: center;
  }

  .cart-item-details img {
      width: 50px;
      height: 50px;
      margin-right: 10px;
  }

  .cart-item-controls {
      display: flex;
      align-items: center;
  }

  .cart-item-controls button {
      margin: 0 5px;
      padding: 5px;
      border: none;
      border-radius: 3px;
      background-color: #ddd;
      cursor: pointer;
  }

  .cart-item-controls .remove-btn {
      background-color: #e74c3c;
      color: #fff;
  }

  .cart-total {
      font-weight: bold;
      margin-top: 20px;
      text-align: center;
  }

  .checkout-btn {
      display: block;
      margin: 20px auto 0;
      padding: 10px 20px;
      background-color: #4a024c;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
  }

  .close-cart {
      display: block;
      margin: 20px auto 0;
      padding: 10px 20px;
      background-color: #ddd;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
  }




.checkout-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  display: none;
}


.checkout-modal h2 {
  margin-top: 0;
}

.checkout-modal form {
  display: flex;
  flex-direction: column;
}

.checkout-modal form label {
  margin: 10px 0 5px;
}

.checkout-modal form input,
.checkout-modal form select,
.checkout-modal form textarea {
  padding: 10px;
  margin-bottom: 10px;
}

.checkout-modal .checkout-btn {
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.checkout-modal .close-checkout {
  background-color: red;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}
.sign-in-btn {
            background: white;
            color: #4a024c;
            border: 2px solid #4a024c;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
            transform: translate(calc(-30px), calc(-5px)); /* Moves button right by 20px and up by 5px */
        }

        .sign-in-btn:hover {
            background: #4a024c;
            color: white;
        }
        @media (max-width: 567px) {

          .sign-in-btn{
            transform: translate(calc(-0px), calc(-5px)); /* Moves button right by 20px and up by 5px */

          }
        }