.ts-slider {
    position: relative;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.ts-slide {
    display: none;
    font-size: 26px;
    padding: 50px 30px;
}

.ts-slide.active {
    display: block;
}

/* RIGHT aligned arrows */
.ts-nav {
    position: absolute;
    right: 20px;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
}

.ts-prev { top: 90%; }
.ts-next { top: 90%; }

/* Hide arrow */
.ts-nav.hidden {
    display: none;
}

/* Tabs */
.ts-tabs {
    margin-top: 20px;
}

.ts-tab {
    margin: 0 10px;
    cursor: pointer;
    padding-bottom: 5px;
}

.ts-tab.active {
    border-bottom: 2px solid #000;
    font-weight: bold;
}
.ts-slide h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.ts-slide p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ts-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.ts-btn:hover {
    background: #444;
}
