/* awards tabs component css start */
.awards-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity .1s linear;
}

.awards-overlay.active {
    visibility: visible;
    opacity: 1;
}

.tabs.awards-tabs {
    margin-top: 72px;
    margin-bottom: 80px;
}

.awards-tabs .cmp-tabs__tablist {
    border-bottom: 1px solid rgba(65, 151, 211, 0.5);
    width: max-content;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.awards-tabs .cmp-tabs__tab--active {
    border-bottom: 3px solid #0073BB;
}

.awards-tabs .cmp-tabs__tab {
    padding: 0 0 22px 0;
    margin-bottom: -1.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    color: #A7A9AC
}

.awards-tabs .cmp-tabs__tab--active {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #0073BB;
}

.awards-tabs .cmp-tabs__tabpanel {
    margin-top: 2px;
}

/* awards tabs component css end */

/* awards-title css start */
.awards-title {
    margin-top: 102px;
    margin-bottom: 50px;
}

.awards-title .cmp-title__text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 70px;
    color: #E6E7E8;
    margin: 0 auto;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.awards-title .cmp-title__text:before,
.awards-title .cmp-title__text:after {
    content: '';
    border-top: 2px solid;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}

.awards-title .cmp-title__text:after {
    margin: 0 0 0 20px;
}

/* awards-title css end */


/* awards cards css start */
.awards-teaser {
    width: 31%;
}

.awards-teaser .cmp-teaser {
    transition: all .4s;
}

.awards-teaser .cmp-teaser__image {
    position: relative;
    padding-top: 15px;
    padding-bottom: 53px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #DAEEF8;
    box-shadow: 3px 6px 14px rgba(0, 115, 187, 0.1);
    border-radius: 20px;
    height: 480px;
    transition: all .1s;
    transition-delay: .2s;
}

.awards-teaser .cmp-teaser__image .cmp-image__image {
    width: 320px;
    height: 408px;
}

.awards-teaser .cmp-teaser__image::after {
    content: '';
    background-image: url("../../../content/dam/tataaialifeinsurancecompanylimited/awards-page/Card Flip Icon.svg");
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.awards-teaser .cmp-teaser__content {
    background: #F2F7FB;
    border: 1px solid #DAEEF8;
    box-shadow: 3px 6px 14px rgba(0, 115, 187, 0.1);
    border-radius: 20px;
    padding: 56px 45px 0 45px;
    height: 480px;
    transition: all .1s;
    transition-delay: .2s;
    transform: rotateY(180deg);
    display: none;
    width: 100%;
}

.awards-teaser .cmp-teaser__content .cmp-teaser__title {
    font-family: "HelveticaNeueLTStd-Bd", sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 18px;
}

.awards-teaser .cmp-teaser__content .cmp-teaser__description{
    -webkit-line-clamp: 9;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.awards-teaser .cmp-teaser__content .cmp-teaser__description p {
    font-family: "helveticaregular", sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
}

.awards-teaser .cmp-teaser__content .cmp-teaser__description ul{
    margin-top: 15px;
    padding-left: 20px;
}
.awards-teaser .cmp-teaser__content .cmp-teaser__description ul li{
    list-style: disc;
    font-family: "helveticaregular", sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #333333;
}

.awards-teaser .cmp-teaser__content .cmp-teaser__read-more {
    font-family: "helveticaregular", sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #4197D3;
    display: inline-block;
    margin-top: 50px;
    cursor: pointer;
}

@media screen and (min-width:769px) {
    .awards-teaser:hover .cmp-teaser {
        transform: rotateY(-180deg);
    }
    
    .awards-teaser:hover .cmp-teaser__image {
        display: none;
    }
    
    .awards-teaser:hover .cmp-teaser__content {
        display: inline-block;
    }
}
/* awards cards css end */



@media screen and (max-width: 768px) {
    .tabs.awards-tabs {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .awards-tabs .cmp-tabs__tablist {
        display: none;
    }

    .awards-title .cmp-title__text {
        font-size: 40px;
        line-height: 48px;
        color: #E6E7E8;
    }

    .awards-title .cmp-title__text:before,
    .awards-title .cmp-title__text:after {
        content: '';
        border-top: 2px solid;
        margin: 0 5px 0 0;
        flex: 1 0 20px;
    }

    .awards-title .cmp-title__text:after {
        margin: 0 0 0 5px;
    }

    .awards-teaser .cmp-teaser__image {
        height: 320px;
    }

    .awards-teaser .cmp-teaser__image img {
        height: 260px;
        width: 200px;
        margin: 0 auto;
    }

    .awards-teaser .cmp-teaser__image .cmp-image__image {
        height: 260px;
        width: 200px;
        margin: 0 auto;
    }

    .awards-teaser .cmp-teaser__image::after {
        width: 24px;
        height: 24px;
        right: 16px;
        bottom: 16px;
        background-size: cover;
    }

    .awards-teaser .cmp-teaser__content {
        height: 320px;
        padding: 24px 24px 0 24px;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__title {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 8px;
        letter-spacing: normal;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__description{
        -webkit-line-clamp: 4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__read-more{
        margin-top: 20px;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__description p {
        font-size: 14px;
        line-height: 17px;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__description ul{
        margin-top: 10px;
        padding-left: 17px;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__description ul li{
        font-size: 14px;
        line-height: 17px;
    }

    .awards-teaser .cmp-teaser__content .cmp-teaser__read-more {
        font-size: 14px;
        line-height: 16px;
    }

    .awards-tabs .cmp-tabs__tabpanel {
        display: block;
    }

    .awards-tabs .cmp-tabs {
        display: flex;
        flex-direction: column-reverse;
    }

    .awards-title {
        margin-top: 44px;
        margin-bottom: 16px;
    }

    .awardsSliderWrapper .slick-current .awards-teaser:hover .cmp-teaser {
        transform: rotateY(-180deg);
    }
    
    .awardsSliderWrapper .slick-current .awards-teaser:hover .cmp-teaser__image {
        display: none;
    }
    
    .awardsSliderWrapper .slick-current .awards-teaser:hover .cmp-teaser__content {
        display: inline-block;
    }
}