/* =========================================================
   ZYDUS MEDICAL COLLEGE
   HOMEPAGE CSS
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --zm-primary: #283777;
    --zm-primary-dark: #18265f;

    --zm-secondary: #2d8bc9;

    --zm-text: #172033;
    --zm-muted: #697386;

    --zm-light: #f5f8fc;

    --zm-white: #ffffff;

    --zm-border: #e5eaf1;

    --zm-radius: 18px;

}


/* =========================================================
   BASE
========================================================= */

.zm-home {

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    color: var(--zm-text);

}


.zm-home * {

    box-sizing: border-box;

}


.zm-container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;

}


.zm-section {

    padding: 90px 0;

}


/* =========================================================
   POPUP
========================================================= */

.modal .close {

    position: absolute;

    top: -18px;

    right: -18px;

    width: 42px;

    height: 42px;

    background: #ffffff;

    border: none;

    border-radius: 50%;

    color: #222222;

    font-size: 32px;

    font-weight: 400;

    line-height: 42px;

    text-align: center;

    text-shadow: none;

    opacity: 1;

    cursor: pointer;

    z-index: 9999;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.25);

    transition:
        all .3s ease;

}


.modal .close:hover {

    background: #ff4d4d;

    color: #ffffff;

    transform:
        rotate(90deg)
        scale(1.05);

}


.modal-body {

    padding: 0;

}


.modal-content {

    border-radius: 14px;

}


.m-pop {

    width: 100%;

    display: block;

    border-radius: 10px;

}


/* =========================================================
   SECTION TYPOGRAPHY
========================================================= */

.zm-section-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--zm-secondary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    margin-bottom: 14px;

}


.zm-section-label::before {

    content: "";

    width: 30px;

    height: 2px;

    background:
        var(--zm-secondary);

}


.zm-section-title {

    margin:
        0 0 18px;

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: 1.12;

    font-weight: 700;

    color:
        var(--zm-primary-dark);

}


.zm-section-heading {

    max-width: 720px;

    margin-bottom: 45px;

}


.zm-section-heading p {

    margin: 0;

    color:
        var(--zm-muted);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   IMAGE SLIDER
========================================================= */

.zm-image-slider {

    position: relative;

    width: 100%;

   padding: 176px 0;
    overflow: hidden;

    background: #f4f6fa;

}


.zm-image-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}


.zm-image-slide.active {

    opacity: 1;

    visibility: visible;

}


.zm-image-slide img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    transform: scale(1.02);

    transition:
        transform 5s ease;

}


.zm-image-slide.active img {

    transform: scale(1);

}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.zm-slider-nav {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 20;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.92);

    color:
        var(--zm-primary);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.16);

    cursor: pointer;

    transition:
        all .3s ease;

}


.zm-slider-nav span {

    display: block;

    font-size: 23px;

    line-height: 1;

}


.zm-slider-prev {

    left: 30px;

}


.zm-slider-next {

    right: 30px;

}


.zm-slider-nav:hover {

    background:
        var(--zm-primary);

    color: #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);

}


/* =========================================================
   QUICK ACCESS
========================================================= */

.zm-quick-section {

    position: relative;

    z-index: 10;

    margin-top: -55px;

}


.zm-quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    background: #ffffff;

    border-radius:
        var(--zm-radius);

    box-shadow:
        0 20px 55px
        rgba(20,38,85,.14);

    overflow: hidden;

}


.zm-quick-card {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 115px;

    padding: 22px;

    background: #ffffff;

    border-right:
        1px solid
        var(--zm-border);

    text-decoration: none !important;

    transition:
        all .3s ease;

}


.zm-quick-card:last-child {

    border-right: 0;

}


.zm-quick-card:hover {

    background:
        #f8fbff;

    transform:
        translateY(-4px);

}


.zm-quick-icon {

    width: 50px;

    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #edf5ff;

    color:
        var(--zm-primary);

    font-size: 21px;

}


.zm-quick-card:nth-child(2)
.zm-quick-icon {

    background: #eaf8f7;

    color: #168c86;

}


.zm-quick-card:nth-child(3)
.zm-quick-icon {

    background: #fff3eb;

    color: #df7134;

}


.zm-quick-card:nth-child(4)
.zm-quick-icon {

    background: #f2edff;

    color: #704ac1;

}


.zm-quick-content {

    flex: 1;

}


.zm-quick-content strong {

    display: block;

    margin-bottom: 5px;

    color:
        var(--zm-primary-dark);

    font-size: 14px;

}


.zm-quick-content span {

    display: block;

    color: #7a8494;

    font-size: 12px;

}


.zm-quick-arrow {

    color: #a2aabb;

    font-size: 15px;

    transition:
        transform .3s ease;

}


.zm-quick-card:hover
.zm-quick-arrow {

    transform:
        translateX(4px);

    color:
        var(--zm-primary);

}


/* =========================================================
   ABOUT
========================================================= */

.zm-about-grid {

    display: grid;

    grid-template-columns:
        .95fr 1.05fr;

    gap: 75px;

    align-items: center;

}


.zm-about-image {

    position: relative;

}


.zm-about-image > img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 22px;

    display: block;

}


.zm-about-badge {

    position: absolute;

    right: -25px;

    bottom: 35px;

    width: 185px;

    padding: 20px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 18px 40px
        rgba(15,30,70,.16);

    text-align: center;

}


.zm-about-badge img {

    width: 100px;

    max-width: 100%;

    margin-bottom: 8px;

}


.zm-about-badge strong {

    display: block;

    color:
        var(--zm-primary);

    font-size: 12px;

    line-height: 1.5;

}


.zm-about-content p {

    color:
        var(--zm-muted);

    font-size: 15px;

    line-height: 1.85;

    margin:
        0 0 18px;

}


.zm-about-points {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

    margin-top: 28px;

}


.zm-about-point {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        13px 15px;

    border:
        1px solid
        var(--zm-border);

    border-radius: 10px;

    background:
        #fafcff;

}


.zm-about-point span {

    width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f7f1;

    color: #269675;

    font-size: 12px;

}


.zm-about-point strong {

    color:
        var(--zm-primary-dark);

    font-size: 12px;

}


/* =========================================================
   RECOGNITION
========================================================= */

.zm-recognition-section {

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #17265f,
            #283777
        );

}


.zm-recognition-grid {

    display: grid;

    grid-template-columns:
        1fr 1.3fr;

    gap: 70px;

    align-items: center;

}


.zm-nirf-card {

    padding: 35px;

    background: #ffffff;

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.18);

}


.zm-nirf-card img {

    width:
        min(
            210px,
            70%
        );

    height: auto;

    display: block;

    margin:
        0 auto 18px;

}


.zm-nirf-card h3 {

    margin:
        0 0 20px;

    color:
        var(--zm-primary);

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.zm-recognition-content
.zm-section-label {

    color: #72c9f3;

}


.zm-recognition-content
.zm-section-label::before {

    background: #72c9f3;

}


.zm-recognition-content
.zm-section-title {

    color: #ffffff;

}


.zm-recognition-content p {

    color:
        rgba(255,255,255,.75);

    font-size: 15px;

    line-height: 1.8;

    margin:
        0 0 25px;

}


.zm-white-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 20px;

    border-radius: 7px;

    background: #ffffff;

    color:
        var(--zm-primary) !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        all .3s ease;

}


.zm-white-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.18);

}


/* =========================================================
   NEWS SECTION
========================================================= */

.zm-news-section {

    background:
        var(--zm-light);

}


.zm-news-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 40px;

    align-items: stretch;

}


/* =========================================================
   ANNOUNCEMENTS
========================================================= */

.zm-announcement-list {

    display: flex;

    flex-direction: column;

    gap: 13px;

}


.zm-announcement {

    display: flex;

    align-items: center;

    gap: 17px;

    padding:
        18px 20px;

    background: #ffffff;

    border:
        1px solid
        var(--zm-border);

    border-radius: 13px;

    text-decoration: none !important;

    transition:
        all .3s ease;

}


.zm-announcement:hover {

    transform:
        translateX(5px);

    border-color:
        #c7d8ef;

    box-shadow:
        0 10px 30px
        rgba(35,60,100,.08);

}


.zm-announcement-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        #eef5ff;

    color:
        var(--zm-primary);

    font-size: 19px;

}


.zm-announcement-content {

    flex: 1;

}


.zm-announcement-content strong {

    display: block;

    color:
        var(--zm-primary-dark);

    font-size: 14px;

    line-height: 1.45;

    margin-bottom: 4px;

}


.zm-announcement-content span {

    color: #8992a2;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.zm-announcement-arrow {

    color: #9aa5b6;

    font-size: 15px;

}


/* =========================================================
   LATEST NEWS
========================================================= */

.zm-news-box {

    min-height: 470px;

    padding: 28px;

    background:
        #f5f8fd;

    border:
        1px solid
        #e3e9f2;

    border-radius: 20px;

    overflow: hidden;

}


.zm-news-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;

}


.zm-news-header h3 {

    margin: 0;

    color:
        var(--zm-primary-dark);

    font-size: 21px;

}


.zm-live {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        6px 10px;

    border-radius: 50px;

    background: #ffffff;

    color: #e25353;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.zm-live i {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #e25353;

    animation:
        zmPulse 1.5s infinite;

}


@keyframes zmPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}

/* =========================================================
   LATEST NEWS MARQUEE
========================================================= */

.zm-news-box {
    position: relative;
    min-height: 470px;
    padding: 28px;

    background: #f5f8fd;

    border: 1px solid #e3e9f2;

    border-radius: 20px;

    overflow: hidden;
}


/* HEADER */

.zm-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

    position: relative;
    z-index: 10;
}


.zm-news-header h3 {
    margin: 0;

    font-size: 21px;
    font-weight: 700;

    color: #18265f;
}


/* LIVE */

.zm-live {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 50px;

    background: #fff;

    color: #e25353;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}


.zm-live i {
    width: 6px;
    height: 6px;

    display: block;

    border-radius: 50%;

    background: #e25353;

    animation: zmNewsPulse 1.5s infinite;
}


@keyframes zmNewsPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}


/* =========================================================
   MARQUEE WINDOW
========================================================= */

.zm-news-marquee {
    position: relative;

    height: 370px;

    overflow: hidden;

    padding: 10px 5px;
}


/* =========================================================
   TOP FADE
========================================================= */

.zm-news-marquee::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 45px;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            #f5f8fd,
            transparent
        );
}


/* =========================================================
   BOTTOM FADE
========================================================= */

.zm-news-marquee::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    height: 45px;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            #f5f8fd,
            transparent
        );
}


/* =========================================================
   MOVING NEWS
========================================================= */

.zm-news-track {

    position: relative;

    animation:
        zmNewsUp 20s linear infinite;

}


/* PAUSE WHEN MOUSE OVER NEWS */

.zm-news-marquee:hover
.zm-news-track {

    animation-play-state: paused;

}


/* =========================================================
   VERTICAL MOVEMENT
========================================================= */

@keyframes zmNewsUp {

    0% {

        transform:
            translateY(0);

    }

    100% {

        transform:
            translateY(-50%);

    }

}


/* =========================================================
   PHP GENERATED CONTENT
========================================================= */

.zm-news-track {

    color: #5e697b;

    font-size: 14px;

    line-height: 1.7;

}


.zm-news-track a {

    color: #283777;

    text-decoration: none;

}


.zm-news-track a:hover {

    color: #2d8bc9;

}


/* =========================================================
   COMMON TABLE / LIST SUPPORT
========================================================= */

.zm-news-track table {

    width: 100%;

}


.zm-news-track tr {

    display: block;

    padding: 12px 0;

    border-bottom:
        1px solid #e1e7ef;

}


.zm-news-track td {

    padding: 5px 0;

}


.zm-news-track li {

    margin-bottom: 12px;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .zm-news-box {

        min-height: 420px;

        padding: 20px;

    }
    
 

    .zm-news-marquee {

        height: 320px;

    }


    .zm-news-track {

        animation-duration: 18s;

    }

}


/* =========================================================
   VIDEO
========================================================= */

.zm-video-section {

    padding: 0px 0 50px;

    background: #f5f8fc;

}


.zm-video-card {

    position: relative;

    min-height: 270px;

    padding:
        50px 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #17265f,
            #2d8bc9
        );

}


.zm-video-card::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -100px;

    top: -160px;

    border:
        70px solid
        rgba(255,255,255,.06);

    border-radius: 50%;

}


.zm-video-content {

    position: relative;

    z-index: 2;

}


.zm-video-content
.zm-section-label {

    color: #a8e2ff;

}


.zm-video-content
.zm-section-label::before {

    background: #a8e2ff;

}


.zm-video-content h2 {

    margin:
        0 0 12px;

    color: #ffffff;

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

}


.zm-video-content p {

    max-width: 620px;

    margin: 0;

    color:
        rgba(255,255,255,.78);

    line-height: 1.7;

}


.zm-video-button {

    position: relative;

    z-index: 3;

    width: 74px;

    height: 74px;

    flex: 0 0 74px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color:
        var(--zm-primary);

    font-size: 23px;

    text-decoration: none !important;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.2);

    transition:
        all .3s ease;

}


.zm-video-button:hover {

    transform:
        scale(1.08);

}


/* =========================================================
   LARGE DESKTOP
========================================================= */




/* =========================================================
   4K
========================================================= */




/* =========================================================
   TABLET / LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .zm-quick-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .zm-quick-card:nth-child(2) {

        border-right: 0;

    }


    .zm-quick-card:nth-child(-n+2) {

        border-bottom:
            1px solid
            var(--zm-border);

    }


    .zm-about-grid {

        gap: 45px;

    }


    .zm-recognition-grid {

        gap: 40px;

    }

}

   .img-desktop {
        display:block;
    }
    
    .img-mobile {
        display:none;
    }

@media (max-width: 991px) {
    
       .img-desktop {
        display:none;
    }
    
    .img-mobile {
        display:block;
    }
    
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  


    .zm-about-grid,
    .zm-recognition-grid,
    .zm-news-grid {

        grid-template-columns: 1fr;

    }


    .zm-about-image > img {

        height: 450px;

    }


    .zm-about-badge {

        right: 20px;

    }


    .zm-nirf-card {

        max-width: 430px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .zm-container {

        width:
            calc(100% - 28px);

    }


    .zm-section {

        padding: 60px 0;

    }


    /* SLIDER */




    .zm-slider-prev {

        left: 12px;

    }


    .zm-slider-next {

        right: 12px;

    }


    .zm-slider-nav {

        width: 42px;

        height: 42px;

    }


    .zm-slider-nav span {

        font-size: 18px;

    }


    /* QUICK */

    .zm-quick-section {

        margin-top: -30px;

    }


    .zm-quick-grid {

        grid-template-columns: 1fr;

    }


    .zm-quick-card {

        border-right: 0;

        border-bottom:
            1px solid
            var(--zm-border);

    }


    .zm-quick-card:last-child {

        border-bottom: 0;

    }


    /* ABOUT */

    .zm-about-image > img {

        height: 350px;

    }
    


    .zm-about-badge {

        position: relative;

        right: auto;

        bottom: auto;

        margin:
            -117px 20px 0 auto;
            
            width: 125px;

    }


    .zm-about-points {

        grid-template-columns: 1fr;

    }


    /* NEWS */

    .zm-announcement {

        padding:
            15px;

        gap: 12px;

    }


    .zm-announcement-icon {

        width: 45px;

        height: 45px;

        flex-basis: 45px;

        font-size: 17px;

    }


    .zm-announcement-content strong {

        font-size: 13px;

    }


    .zm-news-box {

        min-height: 420px;

        padding: 20px;

    }


    .zm-news-marquee {

        height: 330px;

    }


    /* VIDEO */

    .zm-video-card {

        padding:
            40px 25px;

        min-height: 340px;

        align-items: flex-start;

        flex-direction: column;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {




    .zm-slider-prev {

        left: 8px;

    }


    .zm-slider-next {

        right: 8px;

    }


    .zm-slider-nav {

        width: 36px;

        height: 36px;

    }


    .zm-slider-nav span {

        font-size: 15px;

    }


    .zm-about-image > img {

        height: 280px;

    }


    .zm-nirf-card {

        padding: 25px;

    }


    .zm-video-button {

        width: 62px;

        height: 62px;

        flex-basis: 62px;

    }

}


/* =========================================
   LATEST NEWS BOX
========================================= */

.zm-news-box {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
    padding: 24px 26px;
    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.zm-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 17px;
    margin-bottom: 0;
    border-bottom: 1px solid #e9edf2;
}

.zm-news-header h3 {
    position: relative;
    margin: 0;
    padding-left: 13px;
    color: #172b4d;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.zm-news-header h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 22px;
    background: #1769aa;
    border-radius: 3px;
}


/* =========================================
   UPDATES
========================================= */

.zm-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #718096;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.zm-live i {
    position: relative;
    width: 7px;
    height: 7px;
    display: block;
    background: #1769aa;
    border-radius: 50%;
}

.zm-live i::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(23, 105, 170, 0.25);
    border-radius: 50%;
    animation: zmPulse 1.8s ease-out infinite;
}

@keyframes zmPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}


/* =========================================
   MARQUEE AREA
========================================= */

.zm-news-marquee {
    position: relative;
    height: 350px;
    overflow: hidden;
}


/* =========================================
   NEWS TRACK
========================================= */

.zm-news-track {
    width: 100%;
    animation: zmNewsScroll 22s linear infinite;
}

.zm-news-track:hover {
    animation-play-state: paused;
}


/* =========================================
   NEWS TEXT
========================================= */

.zm-news-track p {
    position: relative;

    margin: 0;
    padding: 19px 45px 19px 4px;

    color: #27364a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;

    border-bottom: 1px solid #edf0f4;

    transition: all 0.3s ease;
}


/* Left news indicator */

.zm-news-track p::before {
    content: "";
    display: inline-block;

    width: 6px;
    height: 6px;

    margin: 0 10px 2px 0;

    background: #1769aa;
    border-radius: 50%;
}


/* Hover */

.zm-news-track p:hover {
    color: #1769aa;
}


/* =========================================
   CLICK HERE LINK
========================================= */

.zm-news-track p a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-left: 7px;

    color: #1769aa;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Arrow */

.zm-news-track p a::after {
    content: "\f061";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 10px;

    transition: transform 0.3s ease;
}


.zm-news-track p a:hover {
    color: #0d4775;
}

.zm-news-track p a:hover::after {
    transform: translateX(3px);
}


/* =========================================
   TOP / BOTTOM FADE
========================================= */

.zm-news-marquee::before,
.zm-news-marquee::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;

    height: 30px;

    z-index: 2;

    pointer-events: none;
}

.zm-news-marquee::before {
    top: 0;

    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.zm-news-marquee::after {
    bottom: 0;

    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}


/* =========================================
   VERTICAL MARQUEE
========================================= */

@keyframes zmNewsScroll {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .zm-news-box {
        padding: 20px 18px;
        border-radius: 10px;
    }

    .zm-news-header h3 {
        font-size: 19px;
    }

    .zm-news-header h3::before {
        height: 19px;
        width: 3px;
    }

    .zm-live {
        font-size: 9px;
    }

    .zm-news-marquee {
        height: 390px;
    }

    .zm-news-track p {
        padding: 17px 35px 17px 2px;
        font-size: 14px;
        line-height: 1.55;
    }

    .zm-news-track p a {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 375px) {

    .zm-image-slider {


    }

}


/* MOBILE Screen */

@media (min-width:0px) and (max-width:475px) {
.zm-image-slider {
         padding: 54px 0;
     }

}

/* IPAD Screen */

@media (min-width:600px) and (max-width:991px) {
.zm-image-slider {
         padding: 99px 0;
     }
}


/* 1024PX Screen */

@media (min-width:992px) and (max-width:1099px) {
     .zm-image-slider {
         padding: 133px 0;
     }
}


/* 1280PX Screen */

@media (min-width:1100px) and (max-width:1300px) {
.zm-image-slider {
         padding: 166px 0;
     }
}

/* 1440PX Screen */

@media (min-width:1399px) and (max-width:1500px)  {
.zm-image-slider {
         padding: 187px 0;
     }
}

/* 1600PX Screen */

@media (min-width:1500px) and (max-width:1670px) {
.zm-image-slider {
         padding: 288px 0;
     }
}


/* 1680PX Screen */

@media (min-width:1671px) and (max-width:1700px)  {
.zm-image-slider {
         padding: 218px 0;
     }

}


/* 1920PX Screen */

@media (min-width:1701px) and (max-width:2000px) {
.zm-image-slider {
         padding: 248px 0;
     }

}


/* 2k Screen  */

@media (min-width:2001px) and (max-width:3000px) {
.zm-image-slider {
         padding: 266px 0;
     }

}


/* 4k Screen  */

@media (min-width:3001px) and (max-width:6000px) {
.zm-image-slider {
         padding: 500px 0;
     }

}


/* 8k Screen */

@media (min-width:6001px) and (max-width:8000px) {

}
