.content-area {
    margin-top: 63px;;
}

.content-area-p1 {
    width: 100%;
    position: relative;
}

.provider-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.brand-img {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.content-area-p2 {
    width: 100%;
    background-color: #181a20;
    padding: 16px;
    border-bottom: 1px solid rgb(39, 42, 46);
}

.p2-provider-list {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    max-width: 1310px;
    gap: 10px;
}

.p2-provider-list li {
    list-style: none;
}

.provider-tab {
    display: flex;
    min-width: 140px;
    min-height: 36px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #848e9c;
    background-color: #181a20;
    gap: 5px;
    padding: 5px 10px;
    filter: grayscale(100%);
    cursor: pointer;
}

.p2-provider-list .is-active {
    color: #eaecef;
    filter: none;
    background-color: #2b3139;
}

@media screen and (max-width: 1300px) {
    .p2-provider-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (max-width: 970px) {
    .p2-provider-list {
        grid-template-columns: repeat(5, 1fr);
    }

    .provider-tab {
        min-width: 130px;
    }
}

@media screen and (max-width: 820px) {
    .p2-provider-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.provider-tab img {
    width: 40px;
    height: 28px;
    object-fit: contain;
}

.provider-tab span {
    font-size: 13px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
}

.provider-tab:hover {
    color: #eaecef;
    background-color: #000000;
    filter: none;
}


/************ Content P3 *************/

.content-area-p3 {
    width: 100%;
    background-color: #181a20;
    padding: 16px;
}

.provider-content-container {
    width: 100%;
    max-width: 1310px;
    height: auto;
    margin: 0 auto;
}

.provider-item {
    width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}

.provider-item2 {
    width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(5, 1fr);
}
.item-columns4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.item-columns {
    position: relative;
}

.item-columns video {
    width: 100%;
    border-radius: 10px;
}

.item-columns img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.item-columns .item-desc {
    position: absolute;
    display: flex;
    width: 100%;
    padding: 7px;
    font-size: 13px;
    line-height: 13px;
    color: #eaecef;
    bottom: 0;
    z-index: 96;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0, 0.7);
    border-radius: 0 0 10px 10px;
}

.item-columns .item-desc p {
    margin: 0;
}

.grid-col-span-2 {
    grid-column: span 2;
    grid-row: span 2;
}

@media screen and (max-width: 820px) {
    .provider-item {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-item2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-columns4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}


