main {
    padding-top: 10vh;
}
@media screen and (min-width: 960px){
    main {
        padding-top: 20vh;
    }
}

.highlight-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.highlight-section .cover-image {
    width: 100%;
    z-index: -1;
}
.highlight-section .flex-column {
    align-items: center;
    position: absolute;
}
.highlight-section span {
    color: white;
    display: block;
    font-size: calc(2em + 3vw);
    text-shadow: 1px 1px black;
}
.highlight-section span:nth-of-type(1) {
    animation-delay: 0.2s;
}
.highlight-section span:nth-of-type(2) {
    animation-delay: 0.4s;
}
.highlight-section span:nth-of-type(3) {
    animation-delay: 0.6s;
}
.highlight-section span:nth-of-type(4) {
    animation-delay: 0.8s;
}


.showcase-section {
    padding-left: 1em;
    padding-right: 1em;
}
.showcase-section h2 {
    margin-bottom: 2em;
}
.showcase-section .flex-row {
    gap: 2em;
    justify-content: space-evenly;
}
.showcase-section .flex-row > div {
    animation-delay: 0.1s;
    max-width: 400px;
}
@media screen and (min-width: 960px){
    .showcase-section .flex-row > div:nth-of-type(2) {
        animation-delay: 0.4s;
        max-width: 400px;
    }
    .showcase-section .flex-row > div:nth-of-type(3) {
        animation-delay: 0.8s;
        max-width: 400px;
    }
}
.showcase-section .flex-row > div img {
    border-radius: 40px;
    width: 100%;
}
.showcase-section .flex-row > div p {
    text-align: justify;
}

.eyecandy-section {
    min-height: 600px;
    padding-top: 0;
    width: 100%;
}
.eyecandy-section .eyecandy-button {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.eyecandy-button button {
    font-size: 1.5em;
    min-width: 20vw;
}
.eyecandy-section .eyecandy-gallery {
    position: relative;
}
.eyecandy-section .eyecandy-gallery picture {
    width: 100%;
}
.eyecandy-section .eyecandy-gallery img {
    width: 100%;
}
@media screen and (max-width: 600px){
    .eyecandy-section .eyecandy-gallery {
        flex-wrap: wrap;
    }
    .eyecandy-button button {
        font-size: 1em;
        min-width: 20vw;
    }
}

.market-section .flex-row, .wholesale-section .flex-row {
    justify-content: space-evenly;
}
.market-section .flex-row > div, .wholesale-section .flex-row > div {
    padding: calc(1em + 2vw);
    text-align: center;
}
.market-section p, .wholesale-section p {
    max-width: calc(400px + 10vw);
}
.market-section img, .wholesale-section img {
    z-index: 5;
}
.market-section picture > img, .wholesale-section picture > img {
    border-radius: 40px;
    width: 100%;
}
.wholesale-section {
    overflow: hidden;
    padding-bottom: 0;
}
.wholesale-section .dotted-trail {
    background-image: url("../images/dotted-trail.webp");
    background-position: top;
    background-repeat: no-repeat;
    display: block;
    height: 100%;
    opacity: 0.6;
    position: absolute;
    width: 100%;
}
.wholesale-section .driving-truck {
    transform: translateX(-40vw);
    z-index: 3;
}
@media screen and (min-width: 960px){
    .wholesale-section .dotted-trail {
        transform: rotate(35deg);
    }
}

.logo-bar {
    animation: bgScroll 40s linear infinite;
    background-color: white;
    background-image: url("../images/logo-markets.webp");
    background-position: center;
    background-repeat: repeat-x;
    height: 300px;
    overflow-x: hidden;
    padding: 4em 1em;
    position: relative;
}
@keyframes bgScroll {
  0% {
    background-position : 0px 50%;
  }
  100% {
    background-position : -2639px 50%;
  }
}
.logo-bar img {
    display: none;
    margin: 2em;
    width: 200px;
}

.review-section .flex-row {
    justify-content: center;
}
.review-section blockquote {
    max-width: 300px;
    text-align: center;
}
.review-section blockquote p:first-of-type {
    aspect-ratio: 3 / 2;
    background-color: white;
    border-radius: 12px;
    box-shadow: gray 2px 2px 10px;
    margin-bottom: 10px;
    min-height: 160px;
    min-width: 240px;
    padding: 1em 1em 0px 1em;
    text-align: left;
}
.review-section blockquote p:nth-of-type(2) {
    font-weight: bold;
}
.review-chat-border {
  width: 0;
  height: 0;
  border-left: 10px solid transparent; /* Adjust size as needed */
  border-right: 10px solid transparent; /* Adjust size as needed */
  border-top: 10px solid white; /* This creates the downward pointing arrow */
}

.contact-section {
    max-height: 66vh;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.contact-section .contact-panel {
    background-color: #f4f3e8AA;
    border-radius: 0 0 25px 0;
    max-width: 33vw;
    padding: 1em 2em;
    position: absolute;
    text-align: center;
}
.contact-section .contact-panel p {
    text-align: left;
}
@media screen and (max-width: 960px){
    .contact-section {
        max-height: 100vh;
    }
    .contact-section .contact-panel {
        max-width: 50vw;
    }
}