@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, Arial, Helvetica;
  color: white;
  background-image: linear-gradient(to left, #fddb98, #30c4ff);
}

.navbar {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 7rem;
  height: auto;
  margin: 1rem;
}

.upper {
  margin: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 680px) {
  .upper {
    flex-direction: column;
    align-items: center;
  }
}

.slideshow-container {
  position: relative;
  width: 40%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.slideshow {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  object-fit: cover;
}

.about-us {
  padding: 0.8rem;
  margin: 10px 0px 0px 0px;
  width: 40%;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (max-width: 680px) {
  .slideshow-container,
  .about-us {
    width: 85%;
  }
}

.middle {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.offers {
  margin: 2rem 0rem 0rem 0rem;
  padding: 0.5rem;
}

.out-card {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.80rem;
}


.card {
  margin: 1rem;
  width: 10rem;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pic {
  width: 10rem;
  border-radius: 12px;
  margin: auto;
}

.card a {
  text-align: center;
}

@media (max-width: 768px) {
  .card {
    width: 45%;
    margin: 1rem 2.5%;
  }
}

p {
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .foot {
    font-size: 10px;
  }
}

.footer {
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left,
.right {
  width: 45%;
}
