.plots-s {
    background-color: rgb(240, 243, 252) !important;
}
.plots-s .swiper {
    padding: 0 64px;
    overflow: visible;
}
.plots-s .swiper > .swiper-button-prev {
    transform: rotate(-90deg);
    left: 18px;
}
.plots-s .swiper > .swiper-button-next {
    transform: rotate(90deg);
    right: 18px;
}
.swiper-pagination-bullet-active {
    background-color: #317060;
}
.plots-s .swiper > .swiper-wrapper > .swiper-slide-active {
    transform: scale(1.1);
    box-shadow: 0 0 50px 0 #31706050;
}

.plot-card {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        padding: 0;
        margin: 0;
    }
}

.plot-card {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.plot-card > .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    gap: 12px;
    background-color: #317060;
}
.plot-card > .header > .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    background-color: white;
}
.plot-card > .header > .image-wrapper > img {
    height: 100px;
}
.plot-card > .header > h3 {
    color: white;
}

.plot-card > .footer {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 24px 32px;
    gap: 24px;
    background-color: white;
}

.plot-card > .footer button {
    border: 1px solid #333333;
    outline: none;
    background-color: white;
    padding: 12px;
    border-radius: 4px;
    color: black;
    cursor: pointer;
}
.plot-card > .footer button * {
    color: black;
}