/* Your custom css code goes here */
.company-title {
    color: #5068A9;
    font-weight: 600;
}

.client-logo {
    height: 70px;
    width: auto;
}

.link-logo {
    height: 24px;
    width: auto;
    margin-right: 5px;
}

.link-logo.lg {
    height: 32px;
}

.video-card {
    padding: 8px;
    border-radius: 12px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin-bottom: 16px;
}
.video-card .video-title{
    margin-bottom: 2px;
    margin-top: 8px;
    font-size: 1rem;
}

.video-container, .image-container {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
}

.m-b-xl {
    margin-bottom: 80px;
}

.movie-poster {
    width: 100%;
}

.article-card {
    padding: 8px;
    border-radius: 12px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin-bottom: 16px;
    /* text-align: start; */
}

.article-card img.article-thumbnail {
    border-radius: 6px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card .article-title {
    margin-bottom: 0;
    margin-top: 6px;
    font-weight: 600;
}
.article-card .article-title.malayalam {
    font-size: 0.8rem;
    line-height: 1.5;
}

.article-card .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.article-card .article-footer h5 {
    margin-bottom: 0;
    margin-top: 0;
}

.article-source {
    color: #5068A9;
    font-weight: 600;
    text-transform: uppercase;
}

.feather-logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
}

.feather-logo-holder img.feather-logo {
    height: 125px;
    width: auto;
    margin: 12px 24px;
}

@media screen and (max-width: 768px) {
    .feather-logo-holder img.feather-logo {
        height: 75px;
    }
}

.brand-logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
}

.brand-logo-holder img.brand-logo {
    height: 50px;
    width: 120px;
    object-fit: contain;
    margin: 32px;
}

@media screen and (max-width: 768px) {
    .brand-logo-holder img.brand-logo {
        height: 45px;
    }
}

.poster-card {
    padding: 4px;
    border-radius: 8px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.poster-card img.movie-poster {
    border-radius: 5px;
}

.ext-link {
    padding: 6px 24px;
    border-radius: 28px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: box-shadow .2s ease;
}
.ext-link:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.d-inline-block {
    display: inline-block;
}