@import url('https://fonts.googleapis.com/css2?family=Gupter:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #000;
    color: white;
    font-family: "Gupter", serif;
    width: 100vw !important;
    width: 100%;
}
/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  backdrop-filter: blur(5px);
}

.preloader-content {
  text-align: center;
  color: #fff;
}

.spinner {
  border: 8px solid rgba(255, 255, 255, 0.1);
  border-left: 8px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}


header {
    width: 100%;
    height: 7rem;
    background-color: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.096);
    box-sizing: border-box;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000; /* Ensure it's above the menu */
    margin-right: 1rem; /* Add right margin */
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Icon Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menucontainer {
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);

}

.menucontainer ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.menucontainer ul li {
    margin: 0;
}

.menucontainer ul a {
    color: white;
    text-decoration: none;
    padding: 10px 30px;
    border: solid 1px #fff;
    border-radius: 5px; 
    transition: 0.3s ease-in-out;
}

.menucontainer ul a:hover {
    background-color: white;
    color: black;
}

.cta-text, .logo {
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 1rem 2rem;
    transition: 0.3s ease-in-out;
}

.cta-text:hover {
    background-color: white;
    color: black;
}

/* Hamburger Icon Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.herocontainer {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 3rem;
    text-align: center;
    position: relative;
}
.rightbgimg{
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;

}

.leftbgimg{
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;

}

.heroheading {
    font-size: 4rem;
    text-align: center;
    font-weight: 400;
    padding: 1rem 0;
}
.heading{
    font-size: 2rem;
    padding: 4rem 0rem;
    font-weight: 300;
}

.heading-small{
    font-size: 1rem;
    padding: 4rem 0rem;
    font-weight: 300;
}
.herotext {
    margin-top: 1rem;
}

.herotext-bold {
    font-weight: bold;
    margin-top: 1rem;
}
.images-wrapper{
    position: relative; /* Add this line */
    overflow: hidden;
    height: 70vh;
    width: 100%;
    border-radius: 10px;

    
}

.images-wrapper img{
    object-fit:cover;
    object-position: top;
}

.imagescontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0rem 3rem;
    position: relative;
}

.images-wrapper{
    overflow: hidden;
    height: 70vh;
    width: 100%;
    border-radius: 10px;
    
    
}

.images-wrapper img{
    object-fit:cover;
        object-position: top;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlayimage {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}

.scrollcontainer {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.scrollcontainer img {
    width: 80%;
    animation: scrollUpDown 2s infinite;
}

@keyframes scrollUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.compress-form-container {
    width: 100%;
    height: auto;
    padding: 0rem 3rem;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box; /* Added box-sizing */
}

.centerleft, .centerright {
    width: 50%;
    height: auto;
    padding: 0rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.centerleft form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: baseline;
}


.newstag{
    padding: 0.2rem 0.5rem;
    background-color: #00b95b;
    background-image: linear-gradient(to right, #eb903b 0%, #ceaa63 100%);
    color: white;
    width: 150px;
    border-radius: 20px;
    animation: gradientShift 3s ease infinite;

}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.center-container{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.center-container2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0rem 2rem;
}

.inputfieldcontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    gap: 0.5rem;
}

.inputfieldcontainer label {
    margin-bottom: 0.5rem;
}

.inputfieldcontainer input {
    background-color: #0C0C0C;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.096);
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    color: white;
}

.inputfieldcontainer input::placeholder {
    color: rgba(255, 255, 255, 0.267);
}

.upload-area {
    width: 100%;
    height: 200px;
    border: 2px dashed #8d99ae;
    border-radius: 5px;
    background-color: #0C0C0C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.upload-area p {
    margin: 0;
}

.upload-area.dragover {
    background-color: #1a1a1a;
}

.preview-container {
    width: 100%; /* Match the height of the upload area */
    height: 450px;
    border: 2px solid #8d99ae;
    border-radius: 5px;
    background-color: #0C0C0C;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    margin-top: 9rem;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.remove-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: #ef233c; /* Red color for the cross icon */
    cursor: pointer;
}

input[type="file"] {
    display: none; /* Hide the file input */
}


button {
    background-color: #0c0c0c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    /* position: absolute;
    bottom: 10px;
    left: 24px;
    width: 90%;
    margin: auto auto;
    text-align: center; */
}

button:hover {
    background-color: #d2a86b;
}



/* Lightbox styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
        border-radius: 0.5rem;
        border: 5px solid white;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}


/* Compression Overlay Styles */
.compression-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.compression-overlay-content {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  backdrop-filter: blur(10px); /* Glass frost effect */
  border-radius: 12px; /* Slightly more rounded corners for the glass effect */
  padding: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  color: #fff; /* White text color for contrast */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for the glass effect */
}

.overlay-heading {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff; /* White text color for heading */
}

.overlay-progress {
  background: rgba(255, 255, 255, 0.2); /* Light translucent background */
  border-radius: 5px;
  height: 10px;
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}

.progress-fill {
  background: #4caf50;
  height: 100%;
  width: 0;
  border-radius: 5px;
}

#compressionProgressText {
  font-size: 14px;
  color: #fff; /* White text color for progress text */
}


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #747474;
    font-weight: bold;
    margin-left: 5px;
}

/* Tooltip text */
.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    width: 300px; /* Fixed width */
    height: auto; /* Auto height based on content */
    white-space: normal; /* Allow text to wrap */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for better separation */
    font-weight: 300;
    font-size: 14px;
}

/* Show tooltip on hover */
.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Introduction Tooltip Styles */
.intro-tooltip {
    position: absolute;
    bottom: 68px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    width: 300px;
    height: auto;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 300;
    font-size: 14px;
    z-index: 2;
}

/* Show tooltip automatically */
.intro-tooltip.show {
    opacity: 1;
    visibility: visible;
}


/* Overlay style */
.upload-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: #fff;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    backdrop-filter: blur(10px); /* Frosted glass effect */

  }
  
  /* Progress bar style */
  .progress-bar {
    width: 80%;
    background: #555;
    border-radius: 25px;
    overflow: hidden;
    margin: 20px 0;
  }
  
  .progress-fill {
    height: 5px;
    background: #ffffff;
    width: 0; /* Start at 0% width */
    transition: width 0.4s;
  }
  
  /* Progress text style */
  #progressText {
    font-size: 1.2rem;
  }
  
 /* CSS for the .space class */
.space {
    /* Set a fixed height and width if needed */
    height: 100px; /* Adjust as needed */
    width: 100%; /* Full width, or adjust as needed */
    
    /* Optionally, set background color to visualize the space */
    background-color: transparent; /* or any color to visualize */
    
    /* Add space around the element */
    margin: 20px 0; /* Vertical space (top and bottom) */
    
    /* Or use padding if you want space inside the element */
    padding: 10px; /* Internal space (all sides) */
}



.compression-results{
    display: block;
    padding: 2rem 6rem;
    border-top: 1px solid #ffffff1c;
    margin-top: 4rem;
}

.color-pallete {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 5rem;
    /* Add wrap to handle overflow of swatches */
    flex-wrap: wrap;  
}

.swatches {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of swatches */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Adjust for a more polished look */
    padding: 1rem; /* Add padding to prevent clipping */
}


.results-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: auto auto;
    /* flex-direction: column; */
}

.leftcontainer{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: auto;
}

.leftcontainer img, .rightcontainer img{
    object-fit: cover;
    width: 100%; /* Ensure the images take up the full container */
}

.rightcontainer{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: auto;
    position:relative;
    gap: 10px;
    
}

.centercontainer{
    width: 10%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verticlehr {
    transform: rotate(90deg); /* Rotate to make it vertical */
    background-color: rgba(255, 255, 255, 0.2); /* 0.2% opacity white color */
    border: none; /* Remove any default border */
    width: 200px; /* Width becomes the height of the line due to rotation */
    height: 0.5px; /* Very thin line */
}

.resultimg{
    object-fit: cover;
}

.compressions-details{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.metadata-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.metadata-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 1rem;
}

.metadata-table td {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    width: 50%; /* Ensures equal width for both columns */
}

.metadata-table td:first-child {
    font-weight: bold;
}


.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    z-index: 1000;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
  }
  
  .success-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 10px;
  }
  
  .notification.hide {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  Footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 1rem 0rem;
    border-bottom: 1px solid #ffffff0a;
    border-top: 1px solid #ffffff0a;

    flex-direction: column;
    
  }

  .footer-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 1rem 3rem;
    border-bottom: 1px solid #ffffff18;
  }
  .footer-left ul a li, .footer-right ul a li{
    list-style-type: none;
    color: white;
    gap: 1rem;

    display: flex;
    flex-direction: column;
    
  }

  .footer-left ul a li, .footer-right ul a li{
    list-style-type: none;
    color: white;
    padding: 1rem 0rem;
    
  }
  .footer-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: 
    center;
    text-align: center;
    color: white;
    gap:0rem;
  }

  .footer-center img{
    width: 50%;
  }

  .text-logo{
    font-size: 1.5rem;
    padding: 1rem 0rem;
    font-weight: 300;
  }

  .footer-bottom{
    width: 100%;
    height: 50px;
    /* background-color: red; */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  a{
    color: white;
    text-decoration: none;

  }
  
  .checkbox {
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
padding-bottom: 1rem;}


.offline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.offline-message {
    background: rgb(14 13 13);
    color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.online-message {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 128, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: none;
    align-items: center;
}

.online-message img {
    margin-left: 10px;
    vertical-align: middle;
    width:16px;
    height:16px;
}

.donate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(14 14 14 / 60%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.donate-overlay.show {
  opacity: 1;
  visibility: visible;
}

.donate-content {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  margin: auto;
}

.donate-content h2 {
  margin-bottom: 1rem;
}

.donate-content p {
  margin-bottom: 1rem;
}

.donate-button {
  background: linear-gradient(to right, #eb903b 0%, #ceaa63 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 1rem;
margin-bottom: 10px;
}

.dismiss-button {
  background: none;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-decoration: underline;
}

body.no-scroll {
  overflow: hidden; /* Prevent scrolling */
}




  /* Mobile Styles */
@media (max-width: 768px) {
    .menucontainer {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 300px;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 999; /* Ensure it's below the hamburger icon */
    }

    .menucontainer ul {
        flex-direction: column;
        gap: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .menucontainer.active {
        right: 0;
    }

    header {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .cta-text {
        display: none;
    }

    .herocontainer {
        flex-direction: column;
        padding: 1rem;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
    
    .images-wrapper {
    overflow: hidden;
    height: auto;
    width: 100%;
    border-radius: 10px;
}

    .left-container, .right-container {
        display: none;
    }

    .center-container {
        text-align: center;
    }

    .heroheading {
        font-size: 2rem;
    }

    .herotext {
        font-size: 1rem;
    }

    .herotext-bold {
        font-size: 1.2rem;
    }

    .compress-form-container {
        flex-direction: column;
        padding: 0rem 1rem;
    }

    .centerleft, .centerright {
        width: 100%;
        padding: 0rem;
        align-items: center;
    }

    .center-container2 {
        display: flex;
        flex-direction: column;
      }

      .centerright, .centerleft {
        width: 100%;
      }
    
      .desktop-upload {
        display: none;
      }
    
      .mobile-upload {
        display: block;
        margin: 20px 0rem;
      }

      .upload-area{
        width:80%;
      }
      .preview-container {
        height: auto;
        margin-top: 2rem;
        width: 80%;
    }

    .lightbox {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translate(0%, 0%);
    }

    .preview-container {
        height: auto;
        margin-top: 2rem;
    }

    .results-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .leftcontainer, .rightcontainer {
        width: 80%;
    }

    .centercontainer {
        width: 100%;
        margin: 1rem 0;
    }

    .verticlehr {
        display: none;
    }

    button {
        width: 100%;
    }

    .upload-desktop-heading{
        display: none;
        margin: auto auto;
        padding: 1rem 2rem;
        width: 80%;
    }

    .upload-mobile-heading{
        display: block;
    }

    .centerright{
        display: flex;
        flex-direction: column;
        
    }

    .desktop-upload{
        display: none;
    }

    .heading-small{
        padding: 1rem;
    }

    .leftcontainer, .rightcontainer {
        width: 100% !important
        ;
    }


    /* Footer */

    
  Footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 2rem 0rem;
    border-bottom: 1px solid #ffffff25;
    border-top: 1px solid #ffffff11;
    flex-direction: column;
    
  }

  .footer-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: white;
    padding: 2rem;
    border-bottom: 1px solid #ffffff18;
  }
  .footer-left ul a li, .footer-right ul a li{
    list-style-type: none;
    color: white;
    gap: 1rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    
  }

  .footer-left ul a li, .footer-right ul a li{
    list-style-type: none;
    color: white;
    padding: 1rem 0rem;
    
  }
  .footer-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: 
    center;
    text-align: center;
    color: white;
    gap:0rem;
  }

  .footer-center img{
    width: 30%;
  }

  .text-logo{
    font-size: 1.5rem;
    padding: 1rem 0rem;
    font-weight: 300;
  }

  .footer-bottom{
    width: 100%;
    height: 50px;
    /* background-color: red; */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom p{
    font-size: 1rem;
    
  }
}

@media (min-width: 769px) {
    .mobile-upload {
      display: none;
    }
  
    .desktop-upload {
      display: block;
    }
  }
  
  
  
  

  
  
