* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

.container {
  width: 100%;
  height: 100vh;
  background-color: #242628;
  background-image: url(./assets/tractor-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container2 {
  display: flex;
  justify-content: center;
  align-items: center;  
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.content {
  text-align: center;
  color: #ffffff;
  padding: 20px;
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  z-index: 1;
}

.content2 {
  width: 80vw;
  height: 200vh;
  z-index: 1;
  top: 1%;
  position: absolute;
}

.logo-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 25vw;
  height: 25vh;
}

.video-div {
  display: flex;
  justify-content: center;
}

.pdf-div {
  height: 80vh;
}

.title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  /* width: 100%;
  max-width: 600px; */
}

.info {
  width: 100%;
  max-width: 1024px;
  display: flex;
  justify-content: space-between;
  gap: 150px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.info-div {
  display: flex;
  justify-content: space-between;
  gap: 150px;
  padding: 50px 0;
}

.location-box {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  width: 400px;
  max-width: 400px;
  color: #ffffff; 
}

.contact-box {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  max-width: 300px;
  color: #ffffff; /
}

.location strong,
.contact strong {
  display: block;
  margin-bottom: 5px;
}

@media screen and (max-width: 1024px) {
  .container {
    background-size: contain;
  }
}

@media screen and (max-width: 600px) {
  .container {
    background-size: contain;
  }

  .title {
    font-size: 1.6rem;
  }

  .info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .location-box,
  .contact-box {
    max-width: 100%;
  }
}
