/*--main-container--*/

.main-banner-container {
  width: 100%;
  height: 100vh;
  background-image: url('/img/fats_banner.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  overflow-x: hidden;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 128, 0, 0.6);
  color: white;
  height: 100vh;
  justify-content: center;
  padding: 0 1em;
  text-align: center;
  width: 50%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-text h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  font-family: 'Industry', monospace;
}

/*--introduction-section--*/

.introduction-section {
  display: flex;
  font-size: 1.3rem;
  margin: 2em 4em;
}

.introduction-section img {
  width: 20em;
  border-radius: 20px;
}

.introduction-section .text {
  flex-direction: column;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-left: 4em;
}

.introduction-section .text p {
  font-size: 1.5em;
  text-align: justify;
}

/*--technology-section--*/

h2{
  font-family: 'Industry', monospace;
  font-size: 3rem;
  color: var(--dark-blue);
  margin: 2em 0 0 2em;
  text-transform: uppercase;
}

.technology-section{
  font-size: 1.3rem;
  margin: 0 4em;
}

.technology-section-step{
  display: flex;
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}

.technology-section-step img{
  width: 20em;
  border-radius: 20px;
}

.technology-section-step p{
  margin-left: 1em;
  text-align: justify;
}

/*--advantages-section--*/

.advantages-section {
  font-size: 1.3rem;
  padding: 2em 4em 0 4em;
}

.advantages-point {
  margin-bottom: 1em;
  padding: 1.5em;
  background-color: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #007BFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.5em;
  text-align: justify;
}


.advantages-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.advantages-point ul {
  padding-left: 2em;
  margin: 1em 0 0;
  list-style-type: none;
}

.advantages-point ul li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
}

.advantages-point ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bright-blue);
  font-size: 1.4em;
  line-height: 1.2;
}

.advantages-point ul li:hover {
  color: #007BFF;
  transition: color 0.3s ease;
}


@media (max-width: 768px) {

  /*--main-container--*/

  .main-banner-container {
    font-size: 2.5rem;
    height: 100vw;
  }

  .banner-text {
    height: 100vw;
    font-size: 1em;
    width: 50%;
  }

  /*--introduction-section--*/

  .introduction-section {
    font-size: 4rem;
    margin: 0 1em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .introduction-section img {
    height: 100%;
    border-radius: 0;
    transform: rotate(90deg);
  }

  .introduction-section .text {
    flex-direction: column;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-left: 0;
  }

  .introduction-section .text p {
    margin: 0;
  }

  /*--technology-section--*/

  h2{
    font-size: 8rem;
    margin: 2em 0 0 0.5em;
  }

  .technology-section{
    font-size: 4rem;
    margin: 0 1em;
  }

  .technology-section-step{
    display: flex;
    flex-direction: column;
    margin: 2em 0;
  }

  .technology-section-step img{
    width: 100%;
    border-radius: 0;
  }

  .technology-section-step p{
    margin-left: 0;
  }

  /*--advantages-section--*/

  .advantages-section {
    font-size: 4rem;
    padding: 2em 1em 0 1em;
  }

  .advantages-point {
    margin-bottom: 1em;
    padding: 1em;
  }

  .advantages-point ul {
    padding-left: 0;
    margin: 1em 0 0;
  }

  .advantages-point ul li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
  }
}
