.page-title {
    text-align: center;
    font-size: 2.5em;
    text-transform: uppercase;
    padding: 1em 0;
    background: var(--subscription-background-color);
    color: var(--blue-dba-color);
    /*clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);*/
}

.coaching-container {
    font-size: 1.2em;
    line-height: 2;
    letter-spacing: 1.2px;
}

.coaching-brief-explanation {
    margin-top: 2em;
}

.coaching-content {
    
}

.coaching-item {
    background-color: white;
    color: var(--subscription-text-color);
    /* padding: 1em 1em; */
    padding-top: 0;
    padding-bottom: 30px;
    margin: 3em auto;
    text-align: center;
    font-size: 1.2em;
    /* width: 330px; */
    min-height: 400px;
    position: relative;

    border-bottom: solid 8px var(--yellow-dba-color);
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.coaching-item .item-title {
    position: relative;
    padding: 10px 2px;
    background-color: var(--yellow-dba-color);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    color: white;
    margin-bottom: 0;
}

.coaching-item .item-title::before {
    content: "#"attr(data-order);
    position: absolute;
    top: 0;
    left: 10px;
    color: var(--blue-dba-color);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coaching-item .item-metadata {
    background-color: var(--subscription-background-color);
    padding: 5px 10px;
    text-align: left;
    margin-bottom: 50px;
}

.coaching-item .item-description {
    margin: 10px;
    text-align: left;
}

.coaching-item .coaching-link {
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    color: var(--blue-dba-color);
    margin: 10px auto;
    display: block;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.coaching-item .coaching-link:hover {
    text-decoration: underline;
}

.coaching-faq {
    margin: 2em auto;
}

.coaching-faq-container {
    margin-bottom: 3em;
}

.faq-content-title {
    font-size: 1.5em;
}

.faq-content {

}

.coaching-detail-header {
    overflow-x: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.coaching-detail-title {
    font-size: 3em;
}

.coaching-detail-header .coaching-detail-title-block {
    min-height: 350px;
    height: 100%;
    background-color: white;
    padding: 2%;
}

.coaching-detail-metadata .location, .coaching-detail-metadata .price {
    border: solid 1px var(--yellow-dba-color);
    border-radius: 8px;
    padding: 5px 15px;
}

.coaching-detail-header .coaching-detail-video-block {
    min-height: 230px;
    height: 100%;
    background-color: white;
    position: relative;
}

.coaching-detail-video-block video {
    width: 100%;
    height: 200px;
    background-color: var(--blue-new-user-text-color);
    object-fit: fill;
}

.coaching-detail-header .coaching-detail-title,
.coaching-detail-header .coaching-detail-metadata,
.coaching-detail-header .coaching-detail-subjects{
    margin-bottom: 5%;
}

.coaching-detail-description {
    padding: 2%;
}

.btn-buy-coaching {
    background-color: var(--yellow-dba-color);
    color: white;
}

form[name=coaching_request] {
    min-width: 90%;
    position: relative;
}

@media only screen and (min-width: 768px) {
    .coaching-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .coaching-item {
        width: 320px;
    }

    .coaching-detail-header .coaching-detail-video-block {
        min-height: 320px;
    }

    .coaching-detail-video-block video {
        height: 320px;
    }
}

@media only screen and (min-width: 992px) {
    .page-title {
        padding: 2em 0;
    }

    .coaching-item {
        width: 380px;
    }

    .coaching-detail-header {
        margin-top: -60px;
        /* min-height: 350px; */
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .coaching-detail-title {
        font-size: 3.4em;
    }

    .coaching-detail-header .coaching-detail-title-block {
        flex: 2;
        padding: 2% 5%;
    }

    .coaching-detail-header .coaching-detail-subjects {
        max-width: 38vw;
    }

    .coaching-detail-header .coaching-detail-video-block {
        flex: 1;
        /* min-height: 350px;
        height: 100%; */
        padding: 2%;
        background-color: white;
        position: relative;
        min-height: 430px;
    }

    .coaching-detail-video-block video {
        /* width: 560px;
        height: 340px; */
        width: 35vw;
        height: 300px;
        position: absolute;
        right: -1px;
        bottom: 5px;
        /* position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-80%, 0%); */
    }

    .coaching-detail-description {
        padding: 2% 5%;
    }

    form[name=coaching_request] {
        min-width: 70%;
    }
}