




.sec-single.single-web .thumbnail {
    position: relative;
    width: 100%;
    max-height: 900px;
    box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.1);
    overflow: hidden;

    @media only screen and (max-width: 768px) {
        max-height: 70vh;
        margin-bottom: 30px;
    }
}

.sec-single.single-web .thumbnail:hover img {
    cursor: pointer;
    transform: translate(0, calc(-100% + 890px));

    @media only screen and (max-width: 768px) {
        transform: translate(0, calc(-100% + 70vh));
    }
}

.sec-single.single-web .thumbnail img {
    width: 100%;
    position: relative;
    transition: all 8s ease-in-out;
}

.sec-single.single-web .content-wrap {
    position: sticky;
    top: 90px;
    box-shadow: 0 4px 20px 0 rgba(250, 132, 9, 0.40);
    padding: 25px 20px;
}


.sec-single.single-web .content-wrap .title {
    font-size: 25px;
    font-weight: 600;
    line-height: 120%;
    border-bottom: 1px solid #F3F3F3;
    padding-bottom: 30px;
}

.sec-single.single-web .content {
    margin: 25px 0;
}

.sec-single.single-web .content .content-item {
    margin-bottom: 13px;
}

.sec-single.single-web .content .content-item .content-label {
    font-weight: 400;
    line-height: 120%;
    color: #4A4B4C;
    width: 100px;
}

.sec-single.single-web .content .content-item .content-value {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    color: #000;
    flex: 1;
}

.sec-single.single-web .content .content-item .content-value.price {
    font-weight: 600;
    display: inline-block;
    background: var(--main-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.sec-single.single-web .content .content-item .content-value a {
    font-weight: 600;
    color: var(--fs-color-success);
}


.sec-single.single-web .btn-website {
    width: 100%;
    padding: 15px;
    border-radius: 999px;
    border: 2px solid #FFF;
    background: var(--main-color);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

.sec-single.single-web .btn-website span {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: #FFF;
    text-transform: capitalize;
}

