.content_header {
    text-align: center;
    color: #333333;
}
.content_header_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 6rem;
    margin-bottom: 3rem;
}
.content_header_buttons button{
    background-color: #F1F1F1;
    color: #333333;
    border-radius: 0;
    border: none;
    font-size: 1.25em;
    font-weight: 200;
    width: 332px;
    height: 68px;
    transition: all 0.3s;
}
.content_header_buttons button:hover {
    background-color: #D71900;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.content_header_buttons button.active {
    background:#D71900;
    color: white;
}
.active {
    background-color: #D71900;
    color: white;
}
.content_header_buttons button.is_active {
    background-color: #D71900;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}
/* .content_header_buttons button.is_active:hover {
    background-color: #F1F1F1;
    color: #D71900;
    cursor: pointer;
    transition: all 0.3s;
} */
.content_header_buttons button.last_button {
    margin-left: 1.5rem;
    width: 183px;
    height: 68px;
    background-color: transparent;
    color: #D71900;
    border: 2px solid #D71900;
    font-weight: 600;
}
.content_header_buttons button.last_button.active {
    background-color: #D71900;
    color: white;
}
.content_header_buttons button.last_button:hover {
    background-color: #D71900;
    color: white;
}

.item_container_one {
    background-color: #F1F1F1;
    padding-bottom: 2rem;
}
.item_container_one h2 {
    text-align: center;
    padding: 4rem 0;
    margin: 0;
}
.item_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    width: 80%;
    margin: auto;
    grid-gap: 3rem;
    margin-bottom: 6rem;
}
.item_row img {
    margin-bottom: 2rem;
}
.item_container_one .item_one, .item_container_one .item_two {
    text-align: center;
    background-color: white;
    padding: 2rem 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}
p.name {
    font-size: 1.125em;
    font-weight: 600;
}
p.description {
    font-size: 1.125em;
    font-weight: 200;
}
p.model {
    font-size: 1.125em;
    font-weight: 600;
}
p.item_red_text {
    font-size: 1.25em;
    font-weight: 300;
    color: #D71900;
}
p.item_red_text a {
    color: #D71900;
}
p.item_red_text a:hover {
    color: #333333;
}
.item_container_two {
    background-color: white;
    padding-bottom: 2rem;
}
.item_container_two h2 {
    text-align: center;
    padding: 4rem 0;
}
.item_container_two .item_one, .item_container_two .item_two {
    background-color: #F1F1F1;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.item_container_three {
    background-color: #F1F1F1;
    padding-bottom: 2rem;
}
.item_container_three h2 {
    text-align: center;
    padding: 4rem 0;
}
.item_container_three .item_one, .item_container_three .item_two {
    text-align: center;
    background-color: white;
    width: 100%;
    padding: 2rem 0;
}
@media only screen and (max-width: 600px) {
    #slide-show {
        margin-bottom: 1rem;
    }
    .content_header h1 {
        padding: 0 10px;
    }
    .content_header p {
        padding: 0 10px;
    }
    .content_header_buttons {
        margin: 1rem;
        display: grid;
        grid-template-columns: 1fr;


    }
    .content_header_buttons button {
        font-size: 1em;
        flex: 1;
        width: 100%;
        order: 2;
    }
    .content_header_buttons button.last_button {
        margin-left: 0;
        width: 100%;
        order: 1;
        margin-bottom: 2rem;
    }
    .item_row {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
    }
    .item_row img {
        object-fit: contain;
        width: 90%;
    }
    .item_container_one .item_one, .item_container_one .item_two,
    .item_container_two .item_one, .item_container_two .item_two,
    .item_container_three .item_one, .item_container_three .item_two {
        margin: 0.75rem;
        padding: 0 10px;
        padding-bottom: 1rem;
        width: 90%;
    }
    .item_container_one, .item_container_two, .item_container_three {
        padding-bottom: 0;
    }
    .item_container_one h2, .item_container_two h2, .item_container_three h2 {
        padding: 2rem 10px;
        margin: 0;
    }
    .item_row img {
        margin-top: 10px;
    }
}