h1.page-title {
    margin-left: 50px !important;
    margin-right: 50px !important;
}
.good {
    position: relative;
}
.good-next-link, .good-prev-link {
    position: absolute;
    top: -62px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.good-next-link img, .good-prev-link img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    opacity: 0.5;
}
.good-next-link:hover img, .good-prev-link:hover img {
    opacity: 1;
}
.good-prev-link {
    left: 0;
}
.good-next-link {
    right: 0;
}
.good-prev-link img {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    h1.page-title {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }
    .good-next-link, .good-prev-link {
        height: 30px;
        width: 30px;
    }
}