*{
  margin: 0;
  font-family: "Poppins",sans-serif;
  scroll-behavior: smooth;
 justify-content: space-evenly;
}
body{
  backdrop-filter: contrast(1);
  background: fixed;
  background-position-x: center;
  background-image: url(https://i.ibb.co/VH2Nm08/logo.jpg);
  min-height: 100vh;
  background-size: cover;
  animation: fly-in 1s ease-in-out;
  animation-delay: 1s; /* Adjust the delay time as needed */
  animation-fill-mode: both;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
  }
  
  button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #002fff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin: 0 10px;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  .red_text {
    background-color: black;
    color: red;
  }
  .First_Image img{
    width: 90%;
    height: 50vh;
  }

  
.container{
  position :relative;
  margin-top: 10%;
  height: 50vh;
  z-index: 7;
}
.slide-1{
  background: url(https://i.ibb.co/z8MQKQR/1.jpg);
}
.slide-2{
  background: url(https://i.ibb.co/ssnyMMw/2.jpg);
}
.slide-3{
  background: url(https://i.ibb.co/n6JqWHR/3.jpg);
}
.slide-4{
  background: url(https://i.ibb.co/L9LqwrV/4.jpg);
}
.slide-5{
  background: url(https://i.ibb.co/vD344YN/5.jpg);
}
.slide-6{
  background: url(https://i.ibb.co/thVd93G/6.jpg);
}
.slide-7{
  background: url(https://i.ibb.co/Xpcf4zN/7.jpg);
}


.slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  height: 50vh;
  overflow-x: hidden;
  border-radius:20px;
}


.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 100;
  background: rgba(0, 0, 0, .1);
  border-radius: 50%;
  transform: background 500ms;
}
.arrow img {
  width: 50px;
}
.arrow:hover {
  background: rgba(0, 0, 0, .4);
}
.l {
  left: 0;
}
.r {
  right: 0;
}
.logo img{
  margin-top: 15%;
  width: 90%;
  height: 50vh;
}