* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.nav1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  height: 25px;
  width: 20px;
}

.search {
  display: flex;
  position: relative;
}

.search-bar {
  margin-top: 7px;
  height: 35px;
  min-width: 500px;
  padding-left: 35px;
}

.search i {
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: 3px;
  transform: translateY(-50%);
  color: gray;
}

.nav1-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav1-right button {
  background-color: red;
  color: white;
  width: 80px;
  height: 30px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
}

.nav1-right i {
  font-size: 24px;
}

.nav2 {
  margin-top: 10px;
  background-color: #f5f5f5;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  align-items: center;
}

.nav2-left a,
.nav2-right a {
  text-decoration: none;
  color: black;
  padding: 10px;
}

.slider {
  width: 95%;
  height: 320px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cards1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.cards1 img {
  height: 430px;
  width: 230px;
  border-radius: 10px;
}
.cards1 h2{
  font-size: 20px;
}
.card1 h2,
.card1 h5 {
  width: 230px;
}

.card1 h5 {
  opacity: 0.5;
}

.mid img {
  margin-top: 120px;
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.live-events {
  width: 100%;
  min-height: 220px;
  background-color: white;
  margin-top: 100px;
}
.live-event-lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0px 20px;
}
.live-event-lower img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  margin: 4px;
  margin-left: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.live-event-lower img:hover{
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}
.live-event-upper h2 {
  margin-left: 115px;
}

.headd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 65px;
}

.headd a {
  text-decoration: none;
  color: red;
  font-size: 20px;
}

.headd i {
  font-size: 10px;
}

.headd2,
.headd3,
.headd4,
.headd5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 95px;
  margin-top: 70px;
  width: 100%;
}

.headd2 a,
.headd3 a,
.headd4 a,
.headd5 a {
  text-decoration: none;
  color: red;
  font-size: 20px;
}

.headd2 i,
.headd3 i,
.headd4 i,
.headd5 i {
  font-size: 10px;
}

.premire {
  margin-top: 80px;
  width: 100%;
  min-height: 600px;
  background-color: #2b3148;
  padding: 40px 0;
}

.premire-upper {
  width: 85%;
  margin: auto;
}

.premire-upper img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.premire-lower {
  margin-top: 80px;
}

.premire-lower h1,
.premire-lower p {
  color: white;
  margin: 20px;
  padding-left: 100px;
  line-height: 6px;
}

.premire-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0 50px;
}

.premire-card {
  width: 190px;
}

.premire-cards img {
  width: 190px;
  height: 250px;
  border-radius: 10px;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.premire-cards img:hover{
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}

.premire-card h2,
.premire-card h5 {
  color: white;
  text-align: left;
  padding: 5px;
}
.cards2,
.cards3,
.cards4,
.cards5 {
  width: 100%;
  padding: 5px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.card1 img {
  height: 430px;
  width: 230px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact {
  margin-top: 50px;
  align-items: center;
  display: flex;
  background-color: #2b3148;
  min-width: 100%;
  height: 60px;
  justify-content: space-between;
  padding: 0 20px;
  
}
.contact-text h2 {
  font-size: 18px;
  margin-left: 60px;
  color: white;
  word-spacing: 3px;
}

.contact img {
  height: 40px;
  width: 40px;
  margin-left: 20px;
}
.contact button {
  background-color: red;
  color: white;
  height: 40px;
  width: 120px;
  border-radius: 8px;
  align-items: center;
  transition: all 0.3s ease;
}
.customer-service {
  width: 100%;
  height: 120px;
}
.footerpart {
  width: 100%;
  background: #333;
}
.footer-links {
  width: 100%;
  color: #aaa;
  padding: 40px 80px;
  font-size: 13px;
  line-height: 1.8;
}
.footerpart {
  width: 100%;
}
.footer-links p {
  opacity: 0.6;
  margin-bottom: 20px;
}


.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin: 20px auto;
}

.footer-line hr {
  flex: 1;
  border: none;
  height: 1px;
  background: #666;
}

.footer-line img {
  height: 25px;
  width: 100px;
}
.social-media-logo {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.social-media-logo a {
  text-decoration: none;
  color: white;
  padding: 5px;
  opacity: 0.5;
}
.social-media-logo i {
  font-size: 20px;
}
.copyright {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 20px 100px;
}
.customer-service img {
  height: 100%;
  width: 100%;
  border-radius: 0%;
  object-fit: cover;
  object-position: center;
}
.footer-links strong:hover {
  opacity: 1;
}
.footer-links p:hover {
  opacity: 1;
  transform: scale(1.01);
}

.social-media-logo a:hover {
  opacity: 1;
  transform: scale(1.3);
}
.card1 img:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

button:hover{
      transform: scale(1.04);
      cursor: pointer;
      
}

@keyframes slide {
  0%,
  25% {
    transform: translateX(0);
  }

  30%,
  55% {
    transform: translateX(-100%);
  }

  60%,
  85% {
    transform: translateX(-200%);
  }

  90%,
  100% {
    transform: translateX(0);
  }
}

html {
  scroll-behavior: smooth;
}


* {
  transition: all 0.2s ease-in-out;
}

@media (max-width: 768px) {

  .nav1 {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .search-bar {
    min-width: 100%;
  }

  .nav1-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav2 {
    flex-direction: column;
    height: auto;
    gap: 5px;
    padding: 10px;
  }

  .slider {
    height: 200px;
  }

  .cards1 img,
  .card1 img {
    width: 45%;
    height: auto;
  }

  .headd,
  .headd2,
  .headd3,
  .headd4,
  .headd5 {
    padding: 0 20px;
  }

  .premire-lower h1,
  .premire-lower p {
    padding-left: 20px;
    line-height: normal;
  }

  .premire-cards img {
    width: 45%;
    height: auto;
  }

  .contact {
    flex-direction: column;
    height: auto;
    gap: 10px;
    text-align: center;
  }

  .contact-text h2 {
    margin-left: 0;
  }

  .footer-links {
    padding: 20px;
  }

  .copyright {
    padding: 10px;
  }
}


@media (max-width: 1024px) {

  .search-bar {
    min-width: 300px;
  }

  .cards1 img,
  .card1 img {
    width: 30%;
    height: auto;
  }

  .premire-cards img {
    width: 30%;
  }

  .headd,
  .headd2,
  .headd3,
  .headd4,
  .headd5 {
    padding: 0 40px;
  }
}