section.banner {
    max-width: 10rem;
    margin: 1rem;
    float: right;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 1rem;
    transition: filter 250ms;
    filter: none;
    animation: none;
}

section.banner:hover {
    filter: none;
    animation: none;
}

section.banner img {
    width: 100%;
    border-radius: 10px;
}

section.banner h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
}

section.banner p {
    text-align: center;
}

section.banner span {
    display: block;
    color: #315a02;
    text-align: center;
}

section.green-line {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 1rem;
    background-color: #03632d;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #e5e5e5;
}

section.green-line h3 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: #e5e5e5;
}

section.green-line p {
    text-align: center;
    color: #e5e5e5;
}

section.green-line span {
    display: block;
    color: #f4c920;
    text-align: center;
}

main section.comments a,
main section.comments a:visited {
    text-decoration: underline;
}

main section.comments a:before {
    content: 'link → ';
    transition: color 250ms;
}

main section.comments a:hover:before {
    color: #ffa500;
}

main section.comments div.comments h3 {
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

main section.comments input.name {
    margin-top: 1rem;
}

main section.comments input.name,
main section.comments textarea.comment {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font: inherit;
    resize: vertical;
}

main section.comments textarea.comment {
    height: 10rem;
}

main section.comments p.comment {
    font-style: italic;
}

main section.comments p.name {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
}

main section.comments button.send {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: #006b00;
    font: inherit;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: filter 250ms;
    filter: saturate(1);
}

main section.comments button.send:hover {
    filter: saturate(2);
}

section.catalog {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    height: 5rem;
    max-width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

section.catalog div.product {
    margin: 1rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
}