.main-container {
    background-color: #f5f5f5;
    margin-top: 62px !important;
    height: 100%;
}

.breadcrumb {
    font-size: 10px;
    color: #2B2B2B;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.first {
    color: #6F6F6F !important;
}

.article-body {
    background-color: #fff;
    border-radius: 8px;
    margin: 0 15px 15px;
}

.article-box {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.article-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 30px 0;
}

.heading {
    font-size: 24px;
    line-height: 26px;
    margin: 0;
}

.article-container {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    justify-content: flex-start;
}

.card-col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 15px;
}

.article-box-inner-card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12156862745098039);
    border-radius: 6px;
    cursor: pointer;
}

.product-img {
    position: relative;
}

.article-img {
    width: 100%;
    height: 160px;
    border-radius: 4px;
}

.product-text {
    padding: 0 8px 8px;
}

.red-text {
    color: #d9232d;
}

.product-text h3 {
    padding: 5px 0;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
    margin: 0;
}

.product-text h3 a {
    color: #363636;
    text-decoration: none;
}

.product-text h5 {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 7px;
    margin-bottom: 0;
}

.grey-text {
    color: #7b7b7b;
}

.load-more-btn-area {
    display: flex;
    justify-content: center;
    padding: 0 15px 25px;
}

.dynamic-article-main-wrap {
    background: white;
    margin: 0 15px 15px;
}

.dynamic-article-main-wrap section {
    padding: 0 15px;
}

.main-banner {
    margin: 0;
    padding: 10px 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-banner-article {
    flex: 0 0 100%;
    max-width: 100%;
}

.main-banner-article img {
    width: 100%;
    max-width: 100%;
}

.related-articles-container {
    margin: 15px;
    padding: 0;
}

.related-articles-container h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.carousel-inner {
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    justify-content: flex-start;
    cursor: pointer;
    padding-bottom: 15px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* smoother easing */
    will-change: transform;
}

.carousel-item {
    display: inline-block;
    flex-shrink: 0;
    width: 33.33%;
    max-width: calc(33.33% - 10px);
    height: inherit;
    scroll-snap-align: start;
    scroll-behavior: smooth;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #fff;
    margin-right: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .10196078431372549);
    padding: 15px;
}

.carousel-item img {
    margin: auto;
}

.carousel-item p {
    color: #278bed;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    padding-top: 12px;
}

#prev {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 20px;
    z-index: 1;
    box-shadow: 1px 1px grey;
}

#next {
    position: absolute;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    right: -20px;
    z-index: 1;
    box-shadow: 1px 1px grey;
}

.arrow img {
    width: 40px;
    height: 40px;
    display: grid;
    align-items: center;
    background: white;
    border-radius: 4px;
    font-size: 16px;
}

#prev img {
    transform: rotate(90deg);
}

#next img {
    transform: rotate(-90deg);
}

.arrow {
    transition: opacity 0.3s ease;
}

.arrow[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

.text-content {
    padding: 0 30px;
}

.no-data-found {
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile View */

@media (max-width: 767px) {

    .article-body{
        margin:0;
    }

    .carousel-item {
        max-width: 85%;
        width: 80%;
    }

    .arrow {
        display: none !important;
    }

    .card-col-4 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .blackHeader ul {
        height: 100% !important;
        display: block !important;
        overflow: hidden !important;
    }

    .blackHeader ul .sc_get-started {
        display: flex !important;
        left: 55px;
        top: 15px;
    }
}