*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
}

.social {
    width: 100%;
    height: 8vh;
    background: rgb(38, 38, 38);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.socialrap {
    width: 100%;
    position: relative;
}

.name1 {
    display: flex;
    width: 200%;
    animation: scroll 20s linear infinite;
}

.scroll-text {
    color: white;
    font-size: 15px;
    white-space: nowrap;
    padding-right: 3cm; /* 3cm gap between the lines */
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* navigation bar */
.navi {
  background-color: black !important; /* Use the same color as banner */
}

.name {
  color: aliceblue !important;
  font-weight: bold !important;
  font-size: 15px !important;
}

.banner-container {
  background-color: rgb(31, 31, 31); /* Ensure this matches the navigation bar */
  padding: 55px 0; /* Adjust padding as needed to show more background color */
  text-align: center;
}

.carousel-inner .carousel-item img {
  max-width: 80%; /* Adjust as needed */
  margin: 0 auto;
  border-radius: 0.5%;
}

.rounded-image {
  border-radius: 25px; /* Adjust the value to round the sides as needed */
}

.name {
    margin-top: 12%;
    color: aliceblue !important; 
    font-weight: bold !important;
    font-size: 16px !important;
}
.banner-container {
    background-color: black;
    padding: 55px 0; 
    text-align: center;
  }
  .carousel-inner .carousel-item {
    position: relative;
  }
  .carousel-inner .carousel-item img {
    max-width: 80%;
    margin: 0 auto;
    border-radius: 0.5%;
  }
  .carousel-inner .carousel-item .caption1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: 900;
    max-width: 40%;
    text-align: center;
    opacity: 0; /* Initially hidden */
  }
  .carousel-inner .carousel-item .caption2 {
    position: absolute;
    top: 40%;
    left: 5%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 30px;
    font-weight: 900;
    max-width: 40%;
    text-align: center;
    opacity: 0; /* Initially hidden */
    width: 60%; /* Adjust width to fit your needs */
    white-space: normal; /* Allow text to wrap */
    line-height: 1.2; /* Adjust line height if needed */
}

  .carousel-inner .carousel-item .caption3 {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
    font-weight: 900;
    max-width: 70%;
    text-align: center;
    opacity: 0; /* Initially hidden */
  }


  .rounded-image {
    border-radius: 25px;
  }

  
.social2{
    margin-top: 20px;
    width: 100%;
    height: 20vh;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.socialrap2 {
    width: 100%;
    position: relative;
}

.name2{
    display: flex;
    width: 200%;
    animation: scroll 10s linear infinite;
}

.scroll2-text2 {
    color: black;
    font-size: 80px;
    white-space: nowrap;
    padding-right: 3cm; /* 3cm gap between the lines */
    font-family: "Bungee Outline", sans-serif;
    font-weight: 400;
    font-style: normal;
      
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* middle */
.mid {
    width: 100%;
    height: 70vh;
    background: white;
    position: relative;
}
.midrap {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto ;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 60px;
}
.midrap h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: normal;
}

/* navigation buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    display: none;
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}
.mid:hover .prev-btn, .mid:hover .next-btn {
    display: block;
}
.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* first row */
.shop-section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.box {
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    width: 30vh;
    margin: 10px;
}
.box:hover {
    transform: scale(1.05);
}
.product-img {
    height: 22vh;
    width: 22vh;
    transition: transform 0.3s;
    border-radius: 5%;
}
.box:hover .product-img {
    transform: scale(1.1);
}
.product-info {
    position: relative;
    margin-top: 10px;
}
.product-name {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 900;
    transition: transform 0.3s;
    display: inline-block;
    color: white;
    margin-top: 10%;
}
.box:hover .product-name {
    transform: translateX(-30px);
}
.buy-now {
    display: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}
.box:hover .buy-now {
    display: inline-block;
}


.video-section1 {
    position: relative;
    width: 100%;
    height: 73vh;
    background-image: url('./hrimg.webp'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ban-vid1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}

.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.play-button1 {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-circle1 {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
}

.inner-circle1 {
    position: relative;
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    background-color: white;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle1 i {
    font-size: 40px; 
    color: black;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.overlay-text1 {
    color: white;
    font-size: 24px;
    font-family: sans-serif;
    margin-top: 20px;
}





/* middle */
.mid2 {
    margin-top: 5%;
    width: 100%;
    height: 75vh;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  /* second row */
  .shop-section2 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(60vh * 6); /* Adjusted to fit all images in the container */
  }
  
  .box2 {
    position: relative;
    width: 60vh;
    height: 70vh;
    overflow: hidden;
    margin: 10px;
    border-radius: 7px;
    transition: transform 0.3s;
  }
  
  .box2:hover {
    transform: scale(1.05);
  }
  
  .star-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .box2:hover .star-img {
    transform: scale(1.1);
  }
  
  .star-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .box2:hover .star-info {
    opacity: 1;
  }
  
  .star-name,
  .star-title {
    font-size: 25px;
    font-family: sans-serif;
    font-weight: bold;
    margin: 10px 0;
    transition: transform 0.3s;
  }
  
  .buy-now2 {
    display: inline-block;
    border: none;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    background-color: black;
    margin-top: 10px;
  }
  
  .prev,
  .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: yellow;
    border:none;
    color: black;
    font-size: 25px;
    padding: 1px 16px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }



/* middle */
.mid3 {
    width: 100%;
    height: 75vh;
    background: white;
    position: relative;
    overflow: hidden;
}
.midrap3 {
    width: 100%;
    margin: auto;
    padding-top: 60px;
    text-align: center;
}
.midrap3 h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: bold; /* Make the h1 bolder */
}

/* navigation buttons */
.prevbutton, .nextbutton {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background-color:  rgb(186, 183, 183);
    color: black;
    border: none;
    font-size: 15px;
    font-weight: 900;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Make buttons circular */
}
.prevbutton{
    left: 10px;
}
.nextbutton {
    right: 10px;
}
.mid3:hover .prevbutton, .mid3:hover .nextbutton {
    display: block;
}
.prevbutton:hover, .nextbutton:hover {
    background-color: rgb(186, 183, 183);
}

/* first row */
.shop-section3 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 180%; /* Ensure the container width adjusts properly */
    height: 70vh;
}

.box3 {
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    width: 50%;
    margin: 10px; /* Adjust margin if needed */
    height: 100vh;
}
.box3:hover {
    transform: scale(1.05);
}
.product-img3 {
    height: 35vh;
    width: 95%;
    transition: transform 0.3s;
    border-radius: 5%;
}
.box3:hover .product-img3 {
    transform: scale(1.1);
}
.product-info3 {
    position: relative;
    margin-top: 20px;
}
.product-info3 h1 {
    margin-top: 10px;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: bold;
    color: white;
}
.product-name3 {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: lighter; /* Make the product name lighter */
    color: white;
}
.product-info3 p {
    margin: 0; /* Ensure no extra margin */
    color: white;
}
.product-info3 p3 {
    display: block; /* Ensure p3 is displayed in the next line */
    margin-top: 10px;
    font-weight: normal;
    color: white;
}





/* Container for the grid layout */
.grid-container {
    margin-top: 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5px; /* Gap between items */
    justify-content: space-between;
    overflow: hidden; /* Prevent content overflow */

}

/* Individual grid item */
.grid-item {
    position: relative;
    width: calc(25% - 2px); /* Adjust width to account for gap */
    padding-bottom: 25%; /* Maintain a square aspect ratio */
    box-sizing: border-box; /* Include padding and border in width */

}

/* Image styling */
.grid-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 95%;
    object-fit: cover; /* Ensure the image covers the container */
}

/* Overlay effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 95%;
    background: rgba(0, 0, 0, 0.5); /* Blackish layer with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay .buy-now2 {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.grid-item:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}



/* banner4 */
.ban{
  margin-top: 5%;
    width: 100%;
    height: 55vh;
    background-image: url(./bannerimg4.webp);
    background-size: 100%;
    background-repeat: no-repeat;
}
.banrap{
    width: 100%;
    height:  45%;

}
.banrap1{
    width: 50%;
    margin: auto;
    /* border: 2px solid white; */
    padding-top: 100px;
}
.midrap4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust height as needed */
    text-align: center;
}

.midrap4 h1 {
    font-size: 180px; /* Adjust font size as needed */
    margin: 0; /* Remove default margin */
    background: linear-gradient(gray, white); /* Standard syntax */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
}
.midrap4 p{
    font-weight: bolder;
    font-size: 23px;
}

/* banner5 */
.ban2 {
    width: 100%;
    height: 70vh;
    background-image: url(./banimg1.webp);
    background-size: cover; /* Ensure the image covers the whole area */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap2 {
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banrap3 {
    width: 50%;
    text-align: center;
    color: white; /* Ensure text is visible on the background image */
}

.banrap3 h1, .banrap3 p {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-family: Arial, sans-serif;
}

.banrap3 h1 {
    font-size: 36px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between h1 and p */
}

.banrap3 p {
    font-size: 18px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between p and button */
}

.guide-button {
    background-color: #333; /* Darkish grey */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: bolder;
}

.guide-button:hover {
    background-color: blue;
    border: 2px gray; /* Slightly lighter grey on hover */
}

.BornHS__Wrapper {
    margin-top: 5%;
    position: relative;
    
  
    .BornHS__Close {
      display: none;
    }
    .Content__Wrapper {
      position: relative;
    }
  
    .BornHS__Modal__Content {
      background: white;
      border-radius: 5px;
      box-shadow: 0 0 24px rgba(0, 0, 0, 0.22);
      color: black;
      opacity: 0;
      position: absolute;
      transition: all 0.3s ease-in-out;
      visibility: hidden;
      width: 200px;
      z-index: 4;
      padding: 20px;
      .BornHS__Title {
        font-size: 16px;
        text-transform: uppercase;
      }
      p {
        font-size: 13px;
        margin: 0;
        padding: 0;
      }
    }
  
    .BornHS__Input {
      height: 0;
      opacity: 0;
      overflow: hidden;
      position: absolute;
      text-indent: -9999px;
      width: 0;
      z-index: -1;
  
      + .BornHS__Label {
        background: white;
        border-radius: 50%;
        cursor: pointer;
        height: 40px; /* Increased size */
        position: absolute;
        transition: all 300ms ease;
        width: 40px; /* Increased size */
        z-index: 2;
  
        &:before,
        &:after {
          background: black;
          content: "";
          cursor: pointer;
          display: block;
          left: 50%;
          position: absolute;
          top: 50%;
          transform: translate(-50%, -50%);
        }
  
        &:before {
          height: 2px;
          width: 50%; /* Adjusted for larger size */
        }
        &:after {
          height: 50%; /* Adjusted for larger size */
          width: 2px;
        }
  
        /* Pulsating effect */
        .pulsating-effect {
          content: "";
          position: absolute;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.5);
          width: 60px; /* Slightly larger than the button */
          height: 60px; /* Slightly larger than the button */
          top: -10px;
          left: -10px;
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
          animation: pulse 1.5s infinite;
          z-index: 1; /* Behind the button */
        }
      }
  
      ~ .BornHS__Overlay {
        display: none;
        height: 100%;
        left: 0;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 3;
      }
  
      &:checked {
        + .BornHS__Label {
          transform: rotate(45deg);
        }
        ~ .BornHS__Modal__Content {
          opacity: 1;
          visibility: visible;
        }
        ~ .BornHS__Overlay {
          display: block;
        }
      }
    }
  
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      }
    }
  
    &.BornHS__Blur {
      figure {
        -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -o-filter: blur(2px);
        -ms-filter: blur(2px);
        filter: blur(2px);
      }
      .BornHS__Input {
        display: none;
        + .BornHS__Label {
          opacity: 0.5;
          pointer-events: none;
        }
        &:checked {
          display: inline-block;
          + .BornHS__Label {
            opacity: 1;
            pointer-events: auto;
          }
        }
      }
    }
  
    .BornHS__Modal {
      bottom: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      z-index: 1;
    }
  
    @media (max-width: 768px) {
      .BornHS__Wrapper {
        .BornHS__Modal__Content {
          bottom: auto !important;
          left: 50% !important;
          top: 50% !important;
          transform: translate(-50%, -50%) !important;
  
          .BornHS__Close {
            background: #ec2256;
            border-radius: 50%;
            cursor: pointer;
            display: block;
            height: 20px;
            right: -5px;
            position: absolute;
            top: -5px;
            transition: all 300ms ease;
            transform: rotate(45deg);
            width: 20px;
            z-index: 5;
  
            &:before,
            &:after {
              background: #fff;
              content: "";
              cursor: pointer;
              display: block;
              left: 50%;
              position: absolute;
              top: 50%;
              transform: translate(-50%, -50%);
            }
  
            &:before {
              height: 2px;
              width: 40%;
            }
            &:after {
              height: 40%;
              width: 2px;
            }
          }
        }
      }
    }
  }

  /* Pulsating effect outside the hotspot button */
  .BornHS__Label {
    position: relative;

  }
  .BornHS__Label .pulsating-effect {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 139, 139, 0.5);
    width: 60px; /* Slightly larger than the button */
    height: 60px; /* Slightly larger than the button */
    top: -10px;
    left: -10px;
     box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); 
    animation: pulse 1.5s infinite;
    z-index: 1; /* Behind the button */
  }


  .mid5 {
    width: 100%;
    height: 60vh;
    background: white;
    position: relative;
  }
  
  .midrap5 {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 60px;
  }
  
  .midrap5 h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: normal;
  }
  
  /* Container for the slider */
  .slider-container5 {
    position: relative;
    width: 95%;
    overflow: hidden;
    margin: 0 auto;
  }
  
  /* Slider wrapper to handle sliding effect */
  .rev-slider {
    display: flex;
    overflow: hidden;
  }
  
  /* Container for review items */
  .rev-container {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  /* Review item styles */
  .rev-item {
    flex: 0 0 33.333%; /* 3 items visible at a time */
    box-sizing: border-box;
    padding: 10px; /* Optional spacing around images */
  }
  
  /* Image styles */
  .rev-img {
    width: 90%;
    height: 95%;
    object-fit: cover;
    border-radius: 5px;
  }
  
  /* Navigation buttons */
  .previousbtn, .nextbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
  }
  
  .previousbtn {
    left: 10px;
  }
  
  .nextbtn {
    right: 10px;
  }
  



  
  .mid6 {
    width: 100%;
    height: 50vh;
    background: white;
    position: relative;
   
  }
  
  .midrap6 {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-top: 60px;
  }
  
  .midrap6 h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: normal;

  }

  .social6 {
    margin-top: 2%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .socialrap6 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .name6 {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .scroll6-img6 {
    display: flex;
    align-items: center;
    animation: scroll 10s linear infinite;
  }
  
  .scroll6-img6 img {
    height: 100px; /* Set your desired height */
    width: 180px;  /* Set your desired width */
    margin: 0 10px; /* Optional: Add spacing between images */
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  /* middle7 */
.mid7 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.midrap7 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.boxf {
  background-color: black;
  padding: 20px;
  border-radius: 15px;
  box-sizing: border-box;
  color: white;
}

.boxf h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.boxf p {
  font-size: 15px;
  margin: 10px 0; /* Add spacing between paragraphs */
}

/* middle11 */
.boxj img {
  margin: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 35vh;
  width: 100%;
  box-sizing: border-box;
}




/* footer */
.foot{
  margin-top: 3%;
  width: 100%;
  background-color: black;
}
.footrap{
  width: 100%;
  margin: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-section{
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 30px;
}
.lastimg p, .connect p{
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}

.connect ul{
  display: flex;
  list-style: none;
  padding: 20;
}
.connect ul li{
  margin-right: 50px;
      
}
.connect ul li a{
  color: white;
  font-size: 20px;
  text-decoration: none;
}
.bottom-section{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 80%;
  gap: 20px;
}
.boxz ul{
  margin-top: 10px;
}
.boxz ul p{
  color: white;
  font-size: 15px;
  margin-bottom: 10px;
}
.boxz ul a{
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}
.foot-panel2{
  margin-top: 20px;
  background-color: black;
  color: white;
  border-top: 1px solid white;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.copyright ul p{
  color: white;
  font-size: 12px;
  margin-right: 20px;
}
.copyright ul a{
  font-size: 12px;
  color: white;
  text-decoration: none;
}
