@media only screen and (max-width: 768px)
{
    .my-custom-slider-wrapper ul.services li .section-content .inner
    {
            position: unset !important;
                    margin-top: 55px;
    }
    .my-custom-slider-wrapper ul.services li .section-content .inner h2
    {
            font-size: 18px !important;
    }
    .my-custom-slider-wrapper ul.services li .section-content .inner p
    {
            font-size: 25px !important;
    }
    .my-custom-slider-wrapper ul.services li .section-content .inner p
    {
            margin: 0px 0px !important;
    }
    .btn-two-slider
    {
            padding: 8px 8px 8px 12px !important;
    }
    .btn-one-slider
    {
         padding: 5px 10px !important;   
    }
}
.my-custom-slider-wrapper {
    height: 100vh;
}

/* The slider UL container */
.my-custom-slider-wrapper ul.services {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    width: 100%;
    min-width: 100%;
    flex-direction: column;
}

@media only screen and (min-width: 1280px) {
    .my-custom-slider-wrapper ul.services {
        flex-direction: row;
    }
}

/* Each LI item */
.my-custom-slider-wrapper ul.services li {
    flex: 1;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    overflow: hidden;
}

.my-custom-slider-wrapper ul.services li.active {
    flex: 6;
    cursor: default;
}

.my-custom-slider-wrapper ul.services li:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(15, 15, 15, 0.75);*/
}
/*
.my-custom-slider-wrapper ul.services li.active:before {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
}
*/
/* Smaller heading (H3) */
.my-custom-slider-wrapper ul.services li h3 {
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    z-index: 30;
    opacity: 1;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    text-transform: uppercase;
    transition: top 0.35s, opacity 0.15s;
    color:white;
}

.my-custom-slider-wrapper ul.services li.active h3 {
    opacity: 0;
    top: 200%;
}

@media only screen and (min-width: 1280px) {
    .my-custom-slider-wrapper ul.services li h3 {
        top: 80%;
        left: 20%;
        font-size: 32px;
        transform: translate(-20px, -50%) rotate(-90deg);
    }
}

/* The section content container */
.my-custom-slider-wrapper ul.services li .section-content {
    position: relative;
    z-index: 0;
    opacity: 0;
    align-self: center;
    width: 100%;
    transition: all 0.35s 0.1s ease-out;
}

.my-custom-slider-wrapper ul.services li.active .section-content {
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .my-custom-slider-wrapper ul.services li .section-content .inner {
        grid-auto-flow: column;
        grid-template-columns: calc(100% - 340px) 300px;
        grid-column-gap: 40px;
        padding: 40px;
    }
}

.my-custom-slider-wrapper ul.services li .section-content .inner {
    position: absolute;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    align-items: flex-end;
    right: 40px;
    bottom: -75px;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.my-custom-slider-wrapper ul.services li.active .section-content .inner {
    opacity: 1;
}

/*
.my-custom-slider-wrapper ul.services li .section-content .inner .bio {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: min-content;
    grid-gap: 0px;
}
*/

/* Subheading (H2) */
@media only screen and (min-width: 768px) {
    .my-custom-slider-wrapper ul.services li .section-content .inner h2 {
        font-size: 48px;
        line-height: 48px;
    }
}

.my-custom-slider-wrapper ul.services li .section-content .inner h2 {
    line-height: 36px;
    color: #102239;
    font-size: 28px;
    font-weight: 600;
}

.my-custom-slider-wrapper ul.services li .section-content .inner p {
   font-size: 60px;
    font-weight: 800;
    color: #094A86;
    margin: 15px 0px;
}

.my-custom-slider-wrapper ul.services li .section-content .inner .artist-profile-link {
    pointer-events: none;
}

/* Only clickable on active slide */
.my-custom-slider-wrapper ul.services li.active .section-content .inner .artist-profile-link {
    pointer-events: all;
}

.my-custom-slider-wrapper ul.services li:not(.active)::before
{
        background: #0082FA80 !important;
            border: solid 1px white;
}
.title-three
{
        font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #10223980;
    margin: 10px 0px;
}