.body_3 {
    background-color: #FFFFFF;
}

.main_3 {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;

}

/*===============  acc-text ===============*/

.acc-text {
    margin: 5rem 0 3.5rem 0;
    line-height: 2.8rem;
    text-align: center;
}

.acc-text p {
    font-family: orta;
    letter-spacing: 1px;
    letter-spacing: 0.075rem;
    font-size: .8rem;
}

.acc-text h1 {
    font-family: semibold;
    letter-spacing: 1px;
}

/*===============  acc-box-container ===============*/


.acc-box-container {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: .5rem;
}

.acc-box {
    position: relative;
    height: 300px;
    width: 325px;
}

.acc-box p {
    font-family: semibold;
    font-size: .8rem;
    margin: .3rem 0;

}

.acc-box span {
    font-family: light;
    font-size: .7rem;

}

.acc-box-btn {
    padding: 0.3rem .5rem;
    border-radius: 1rem;
    background-color: #FFFFFF;
    border: 2px solid #394E73;
    font-family: orta;
    color: #394E73;
    transition: all .3s linear;
    letter-spacing: 1px;
    position: absolute;
    bottom: 120px;
    left: 10px;
    display: none;
    font-size: .7rem;
}

.acc-box:hover .acc-box-btn {
    display: block;
}

.acc-box-img {

    width: 100%;
    height: 190px;
    object-fit: cover;
}


.acc-box-btn:hover {
    background-color: #394E73;
    color: #FFFFFF;
}

.acc-select-btn {

    position: relative;
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.5625rem;
    margin-top: 0.5625rem;
    border-radius: 50%;
    transform: translateZ(0px);
    cursor: pointer;
    transition: all 0.3s linear;

}

.acc-select-btn:hover {

    transform: scale(1.1);
    border: 1px solid lightgray;
}

.cream {

    background: rgb(197, 193, 182);
}

.dark_blue {

    background: rgb(59, 65, 81);
}

.white {

    background: rgb(255, 255, 255);
    border: 1px solid lightgray;
}


.brown {

    background: rgb(168, 101, 89);
}

.green {

    background: rgb(108, 100, 69);
}


.gray {

    background: rgb(159, 156, 153);
}


.pink {

    background: rgb(201, 161, 141);
}