/* slc_main */

.slc_main {
    display: flex;
    padding: 30px 0;
    gap: 20px;
}

.slc_main-img {
    width: 40%;
}

.slc_main-cont {
    width: 60%;
}

.slc_main-h {
    line-height: 36px;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #333;
    border-bottom: 3px solid #333;
}

.slc_main-cont > p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.slc_main-features {
    row-gap: 20px;
    display: grid;
    margin: 20px 0;
    column-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.slc_main-feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;

}

.slc_main-feature img {
    width: 100px;
    height: 100px;
}

.slc_main-feature h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.slc_main-price {
    background: #E6E6E6;
    padding: 20px;
    max-width: max-content;
    border-radius: 10px;
    margin: 20px;
}

.slc_main-price h3 {
    color: var(--color-main);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

/* slc_form */

.slc_form h3 {
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #333;
    text-align: center;
}

.slc_form-tel {
    line-height: 24px;
    font-size: 20px;
    letter-spacing: 1px;
    color: #333;
    text-align: center;
}

.slc_form-tel a {
    font-weight: 600;
    color: var(--color-main);
}

.slc_form-tel a:hover {
    color: var(--color-dark);
}


/* slc_slider */

.slc_main-slider {
    position: relative;
}

.slc_slider {
    width: 100%;
    position: relative;
}

.slc_slider-next,
.slc_slider-prev {
    position: absolute;
    width: 72px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 101;
    background: none !important;
}

.slc_slider-next span,
.slc_slider-prev span {
    transition: background-color .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #f2f2f2;
}

.slc_slider-prev {
    left: 0;
}

.slc_slider-next {
    right: 0;
}

.slc_slider-next svg,
.slc_slider-prev svg {
    display: block;
    fill: #000;
    width: 16px;
    height: 16px;
}

.slc_slider-next.swiper-button-disabled span,
.slc_slider-prev.swiper-button-disabled span {
    opacity: .48;
    background-color: #fff !important;
}

.slc_slider-next:hover span,
.slc_slider-prev:hover span {
    background-color: #f2f2f2;
    transform: scale(1.2);
}

.slc_thumbs {
    flex-grow: 1;
    margin: 0;
}

.slc_thumbs .swiper-slide-thumb-active .p10::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-light);

}

.slc_thumbs .swiper-slide-thumb-active .p10:hover::after {
    background-color: rgba(0, 0, 0, 0);
}

.slc_main-item a {
    display: block;
    overflow: hidden;
}

.slc_main-item img {
    background-position: center center;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
}

.slc_main-thumbs {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 12px;
}

@media only screen and (max-width: 767px) {
    .p9 {
        flex-wrap: wrap;
    }
}

.slc_thumbs .swiper-slide-thumb-active .slc_main-thumbs-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-light);

}

.slc_thumbs .swiper-slide-thumb-active .slc_main-thumbs-img:hover::after {
    background-color: rgba(0, 0, 0, 0);
}

.slc_main-thumbs-img {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.slc_main-thumbs-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .25s;
    box-shadow: 0 0 0 5px #fff inset;
    border-radius: 4px;
}

.slc_main-thumbs-img:hover::after {
    background-color: rgba(0, 0, 0, .48)
}

.slc_main-thumbs-img img {
    width: 100%;
    height: 100%;
}


