.header {
    width: 100%;
    align-items: center;
    flex-direction: column;
    display: flex;
    height: 6.7vh;
}

.header-title {
    width: 100%;
    align-items: center;
    flex-direction: row;
    display: flex;
    justify-content: center;
    padding: 5px;
}

.header-title-text {
    font-style: italic;
    cursor: default;
}

.header-image {
    width: 100px;
    padding-right: 10px;
}

.header-navigation {
    width: 100%;
    background-color: #f8d614;
    justify-content: center;
    display: flex;
}

.header-link {
    padding-right: 15px;
    margin: 10px;
    border-right-width: 1px;
    border-right-color: dimgray;
}

.body {
    width: 100%;
    min-height: 93.3vh;
}

.hero {
    display: flex;
    background-image: url("https://redwood-rp.com/public/background.webp");
    width: 100%;
    height: 93.3vh;
    background-size: cover;
    background-position: center;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}

.hero-container{
    background-color: rgba(86, 86, 86, 0.566);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.title-container {
    display: flex;
    width: 100%;
    background-color: rgba(86, 86, 86, 0.566);
    height: 20px;
    height: 25vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title-text {
    color: #ffffff;
    font-size: 64px;
    padding-bottom: 10px;
    cursor: default;
}

.title-description {
    color: #ffffff;
    font-size: 24px;
    cursor: default;
}

.brands-container {
    display: flex;
    height: 25vh;
    justify-content: center;
    align-items: center;
}

.brands-logos {
    padding-left: 5vw;
    padding-right: 5vw;
    height: 20vh;
}

.page-selector-container {
    height: 50vh;
    display: flex;
    flex-direction: row;
}

.page-selector-left {
    background-color: #3f3f3f;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    font-size: 60px;
    cursor: pointer;
}

.page-selector-right {
    background-color: #f8d614;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    font-size: 60px;
    cursor: pointer;
}

.page-selector-left-text {
    color: #ffffff;
}

.info-container {
    height: 25vh;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.info-title {
    font-size: 50px;
    padding: 10px;
    margin-bottom: 10px;
    border-bottom-width: 3px;
    border-color: #f8d614;
    padding-bottom: 5px;
    padding-top:0px;
    cursor: default;
}
.info-text {
    font-size: 20px;
    cursor: default;
}

.vehicle-container {
    width: 100%;
    display: flex;
    padding: 10px;
    padding-left: 9vw;
    padding-right:9vw;
    padding-bottom: 0px;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.vehicle-row-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 2.5vw;
}

.vehicle-outer {
    width: 25vw;
    height: 45vh;
    background-color: #f8d614;
    min-width: 25vw;
    margin-left: 1.25vw;
    margin-right: 1.25vw;
}

.vehicle-center {
    width: 25vw;
    height: 45vh;
    background-color:#f8d614;
    margin-left: 2.5vw;
    margin-right: 2.5vw; 
    min-width: 25vw;
}

.vehicle-image {
    height: 32vh;
    width: 25vw;
    background-size: cover;
    background-position: center;
}

.vehicle-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 13vh;
    text-align: center;
}
.vehicle-title {
    font-size: 20px;
}

.mini-carousel-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.mini-carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.1);
  z-index: 0;
}
.mini-carousel-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.mini-carousel-prev, .mini-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  font-size: 14px;
}
.mini-carousel-prev {
  left: 5px;
}
.mini-carousel-next {
  right: 5px;
}

.button-container {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.button {
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    background-color:#f8d614;
}

.whyus-container {
    width: 100%;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(218, 218, 218, 0.21);
}

.whyus-title {
    font-size: 64px;
}

.whyus-divider {
    width: 10vw;
    border-width: 5px;
    border-color: #f8d614;
    margin: 30px;
}

.whyus-reasoning-container {
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.whyus-reasoning { 
    width: 15vw;
    height: 35vh;
    text-align: center;
    font-size: 20px;
}

.whyus-reasoning-image {
    width: 15vw;
}

.leasing {
    width: 100%;
    height: 30vh;
    background-color:#f8d614;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.leasing-title {
    font-size: 30px;
}

.leasing-button {
    margin-top: 20px;
    background-color:#3f3f3f;
    color: #ffffff;
    padding: 15px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;
    cursor: pointer;
}