content.home {
  width: 100%;
  height: auto;
  display: initial;
}

.top-full-banner {
  background: url('../img/home/home-header.jpg') center center;
  background-size: cover;
  width: 100%;
  height: 85vh;
  background-color: #ededed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.top-full-banner .detail-title {
  width: 60%;
  height: 100%;
  padding: 56px 80px 56px 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(to right, rgba(240, 134, 36, 1), rgba(240, 134, 36, 0.7), rgba(240, 134, 36, 0));
}
.top-full-banner .detail-title h1 {
  font-size: 64px;
  line-height: 64px;
  margin: 0 0 24px;
  color: var(--color-white);
}
.top-full-banner .detail-title h2 {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 24px;
  color: var(--color-white);
}
.top-full-banner .detail-title .cta-primary {
  margin: 0;
}

.home-partners {
  background-color: var(--color-orange);
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.home-partners .partner-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 80px;
}

.home-partners .partner-item img {
  max-width: 160px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-fleet {
  background: url('../img/home/home-fleet.jpg') center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.home-fleet .content-fleet {
  background-color: var(--color-white);
  width: 40%;
  height: auto;
  padding: 80px;
}
.home-fleet .content-fleet h3 {
  color: var(--color-orange);
  font-size: 32px;
  line-height: 32px;
}

.home-subscribe {
  background: url('../img/home/home-subscribe.jpg') center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-subscribe .content-subscribe {
  background-color: var(--color-white);
  width: 40%;
  height: auto;
  padding: 80px;
}
.home-subscribe .content-subscribe h3 {
  color: var(--color-orange);
  font-size: 32px;
  line-height: 32px;
}

.home-mobile {
  display: none;
}

@media (max-width: 900px) {
  .top-full-banner {
    background: none;
    min-height: auto;
    -webkit-box-align: flex-end;
    -moz-box-align: flex-end;
    -ms-flex-align: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    height: auto;
  }
  .top-full-banner .detail-title {
    width: 100%;
    padding: 24px;
    height: auto;
    position: absolute;
  }
  .top-full-banner .detail-title h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .home-fleet {
    height: auto;
    background: none;
    padding: 0;
    flex-wrap: wrap;
  }
  .home-fleet .content-fleet {
    width: 100%;
    padding: 10%;
  }

  .home-subscribe {
    height: auto;
    background: none;
    padding: 0;
    flex-wrap: wrap;
  }
  .home-subscribe .content-subscribe {
    width: 100%;
    padding: 40px;
  }

  .home-mobile {
    width: 100%;
    display: block;
  }

  .home-partners {
    padding: 24px 0;
  }

  .home-partners .partner-item {
    padding: 0 16px;
    height: 64px;
  }

  .home-partners .partner-item img {
    max-width: 120px;
    max-height: 48px;
  }
}