* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.image-container {
  display: flex;
  justify-content: center;
}

/****Banner****/

.banner-container {
  position: relative;
}

.button-banner-container {
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-100%, -3%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-banner-container > * {
  padding: 5px 20px 5px 20px;
  background-color: rgb(184, 179, 179);
  border: solid white 1px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 300;
  color: white;
  cursor: pointer;
}

.imgMain {
  width: 100%;
  height: auto;
}

.slider-container {
  width: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
}

.active {
  display: block;
}

/****tractor****/

.section-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.title-text {
  color: #ff6600;
  font-size: 37px;
  font-weight: 500;
}

.tractor-section {
  width: 100vw;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.tractor-container img {
  width: 400px;
}

.tractor-tittle {
  color: #106baf;
  font-size: 22px;
}

.tractor-words {
  color: #7a7a7a;
  font-size: 15px;
}

.phrases-container {
  display: flex;
  flex-direction: column;
  width: 25%;
}

.falling-phrase1 {
  margin-top: 30px;
  width: 70%;
}

.falling-phrase2 {
  margin-top: 30px;
  text-align: right;
  width: 70%;
  align-self: flex-end;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .phrases-container {
    width: 100%;
  }

  .tractor-section {
    display: flex;
    flex-direction: column;
  }

  .tractor-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .tractor-image {
    max-width: 300px;
  }

  .falling-phrase1,
  .falling-phrase2 {
    align-self: center;
    width: 60%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .tractor-container {
    margin-top: 20px;
  }

  .title-text {
    font-size: 27px;
  }

  @media (max-width: 320px) {
    .title-text {
      text-align: center;
    }
  }
}
