@media screen and (min-width: 1537px){

  .carousel-item img{
    width: 100%;
  }

}


@media screen and (max-width: 1450px) {

/* Initially hide the content */
.hidden-content {
  display: none;
  width: 100%;

}

#content {
  font-size: 18px;
  background-color: #f0f0f0;
  width: 100%;
  
}

.carousel-container-copy {
  position: absolute;
  width: 57%;
  /* max-width: 800px; */
  overflow: hidden;
  /* border-radius: 10px; */
  text-align: left;
  background-color: white;
  /* animation-duration: 1s; */
  /* animation-name: lefts; */
  z-index: 10;
  left: 20%;
  top: 100%;
}

.carousel-slide-copy {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image-copy {
  min-width: 100%;
  height: auto;
}

.next1c {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  right: 10px;
}

.next1c:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Style for the close button */
.close-btn {
  top: 0;
  right: 0;
  font-size: 20px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 11;
}

.close-btn:hover {
  background-color: #f09a24;
}


}

@media screen and (max-width: 1030px){
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    z-index: 10;
    position: relative;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.10);
    animation-duration: 1s;
    animation-name: slidein;
}


.logo-left img {
  position: absolute;
  max-width: 109px;
  left: 74px;
  top: 0px;
  mix-blend-mode: multiply;
}


/* s1-slide */
.s1-image img {
  width: 90%;
}

.s1-content span {
  width: 50%;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: white;
}
/* s2-slide */

.slide2-content {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
  right: -103%;
}

.s2-image img {
  width: 90%;
}

.s2-content span {
  width: 50%;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: white;
}
/* s3-slide */
.s3-image img {
  width: 90%;
}

.s3-content span {
  width: 50%;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: white;
}
/* s4-slide */
.s4-image img {
  width: 90%;
}

.s4-content span {
  width: 50%;
  font-size: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: white;
}
 

.p1heading {
  font-size: 37px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 15px 0px;
}

.title {
  font-size: 16px;
  text-align: center;
  font-family: Inter;
  font-weight: 700;
}


.prev1 {
  left: 10px;
  top: 130px;
}
.next1 {
  right: 10px;
  top: 130px;
}

/* Initially hide the content */
.hidden-content {
  display: none;
  width: 100%;

}

#content {
  font-size: 18px;
  background-color: #f0f0f0;
  width: 100%;
  
}

.carousel-container-copy {
  position: absolute;
  width: 74%;
  /* max-width: 800px; */
  overflow: hidden;
  /* border-radius: 10px; */
  text-align: left;
  background-color: white;
  /* animation-duration: 1s; */
/* animation-name: lefts; */
z-index: 10;
left: 13%;
top: 100%;
}

.carousel-slide-copy {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image-copy {
  min-width: 100%;
  height: auto;
}

.next1c {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  right: 10px;
}

.next1c:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Style for the close button */
.close-btn {
  top: 0;
  right: 0;
  font-size: 20px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 11;
}

.close-btn:hover {
  background-color: #f09a24;
}


}

@media screen and (max-width: 770px){

  .nav-links {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    /* height: calc(100vh - 60px); */
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    font-family: Inter;
    display: none;
    gap: 30px;
}


.nav-links.active {
    right: 0;
    display: flex;
    transition: right 0.3s ease-in-out;
}

.hamburger {
    display: flex;
}

/* Hamburger icon transition */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

    #carousel-container {
      width: 100%;
      height: 81vh;
      max-height: 100%;
      overflow: hidden;
      position: relative;
  }

    /* slide1 */

    .slide1-content {
      display: flex;
      position: absolute;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 100%;
      height: 100%;
      flex-direction: column;
  }

  .s1-image {
    width: 100%;
}

.s1-image img {
  width: 60%;
}

.s1-content {
width: 100%;
text-align: center;
}

.s1-content span{
font-size: 40px;
font-family: "Inter", sans-serif;
font-weight: 600;
color: white;
}
    /* slide2 */

    .slide2-content {
      display: flex;
      position: absolute;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 100%;
      height: 100%;
      right: -100%;
      flex-direction: column;
  }

  .s2-image {
    width: 100%;
}

.s2-image img {
  width: 60%;
}

.s2-content {
width: 100%;
text-align: center;
}

.s2-content span{
font-size: 40px;
font-family: "Inter", sans-serif;
font-weight: 600;
color: white;
}
    /* slide3 */

    .slide3-content {
      display: flex;
      position: absolute;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 100%;
      height: 100%;
      right: -200%;
      flex-direction: column;
  }

  .s3-image {
    width: 100%;
}

.s3-image img {
  width: 60%;
}

.s3-content {
width: 100%;
text-align: center;
}

.s3-content span{
font-size: 40px;
font-family: "Inter", sans-serif;
font-weight: 600;
color: white;
}

/* slide4 */

.slide4-content {
display: flex;
position: absolute;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
height: 100%;
right: -300%;
flex-direction: column;
}

.s4-image {
width: 100%;
}

.s4-image img {
width: 60%;
}

.s4-content {
width: 90%;
text-align: center;
}

.s4-content span{
font-size: 40px;
font-family: "Inter", sans-serif;
font-weight: 600;
color: white;
}

.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 4px;
cursor: pointer;
border-radius: 209%;    
  z-index: 0;

}

.prev1 {
left: 10px;
top: 120px;
}
.next1 {
right: 10px;
top: 120px;
}

.logo-left img {
  position: absolute;
  max-width: 109px;
  left: 60px;
  top: 4px;
  mix-blend-mode: multiply;
}

.our-products{
width: 100%;
display: grid;
grid-template-columns: 100%;
justify-content: flex-end;
text-align: center;
align-items: center;
}

.carousel-container {
position: relative;
width: 90%;
overflow: hidden;
border-radius: 10px;
text-align: center;
left: 5%;
}

.carousel-image {
min-width: 100%;
height: auto;
}

.carousel-container1 {
position: relative;
width: 90%;
overflow: hidden;
border-radius: 10px;
text-align: center;
left: 5%;
}

.carousel-image1 {
min-width: 100%;
height: auto;
}

.carousel-container-copy {
  position: absolute;
  width: 100%;
  /* max-width: 800px; */
  overflow: hidden;
  /* border-radius: 10px; */
  text-align: left;
  background-color: white;
  /* animation-duration: 1s; */
  /* animation-name: lefts; */
  z-index: 10;
  left: 0%;
}

}

@media screen and (max-width: 426px){


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 46px;
    z-index: 10;
    position: relative;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.10);
    animation-duration: 1s;
    animation-name: slidein;
}

.logo-left img {
  position: absolute;
  max-width: 90px;
  left: 60px;
  top: 13px;
  mix-blend-mode: multiply;
}

/* s1-slider */

.s1-image img {
  width: 100%;
}

.s1-content span {
  font-size: 33px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
/* s2-slider */

.s2-image img {
  width: 92%
}

.s2-content span {
  font-size: 33px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
/* s3-slider */

.s3-image img {
  width: 100%;
}

.s3-content {
  width: 95%;
  text-align: center;
}

.s3-content span {
  font-size: 33px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
/* s4-slider */

.s4-image img {
  width: 100%;
}

.s4-content {
  width: 87%;
  text-align: center;
}

.s4-content span {
  font-size: 33px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #ffffff;
}


.our-products {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  text-align: center;
  align-items: center;
  position: relative;
  gap: 22px;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 10px;
  text-align: left;
  background-color: white;
}

.prev, .next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 209%;
  z-index: 0;
}

.carousel-container-copy {
  position: absolute;
  width: 100%;
  /* max-width: 800px; */
  overflow: hidden;
  /* border-radius: 10px; */
  text-align: left;
  background-color: white;
  /* animation-duration: 1s; */
  /* animation-name: lefts; */
  z-index: 10;
  left: 0%;
  top: 0%;
}

.close-btn {
  top: 0px;
  right: 0px;
  font-size: 20px;
  background-color: #ffffff3d;
  color: #000000;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  position: absolute;
  display: block;
  z-index: 11;
  /* width: 0%; */
}

}

@media screen and (max-width: 376px){

 /* s1-slider */
  
 .s1-content {
  width: 98%;
  text-align: center;
}

/* s2-slider */

.s2-content {
  width: 98%;
  text-align: center;
}
/* s3-slider */

.s3-content {
  width: 98%;
  text-align: center;
}
/* s4-slider */

.s4-content {
  width: 80%;
  text-align: center;
}

}


@media screen and (max-width: 321px){

  .logo-left img {
    position: absolute;
    max-width: 90px;
    left: 44px;
    top: 13px;
    mix-blend-mode: multiply;
}

/* s1-slider */
  
.s1-content {
  width: 93%;
  text-align: center;
}

/* s2-slider */

.s2-content {
  width: 93%;
  text-align: center;
}
/* s3-slider */

.s3-content {
  width: 93%;
  text-align: center;
}
/* s4-slider */

.s4-content {
  width: 87%;
  text-align: center;
}

.prev, .next {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 209%;
  z-index: 0;
}

}