/* =========================================================
   VISIT CHAMOLI
   HOME MARQUEE
========================================================= */

.vc-home-marquee {
    position: relative;
    display: flex;

    width: 100%;
    height: 60px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #cccccc;

    box-sizing: border-box;
}


/* =========================================================
   FIXED "WHAT'S NEW" BOX
========================================================= */

.vc-home-marquee-label-box {
    position: relative;

    z-index: 10;

    display: flex;

    flex: 0 0 auto;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 150px;
    height: 60px;

    padding: 0 18px;

    color: #ffffff;

    background: #073453;

    box-sizing: border-box;
}


/* ICON */

.vc-home-marquee-label-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    color: #ffffff;

    font-size: 12px;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;
}


/* TEXT */

.vc-home-marquee-label-text {
    display: inline-block;

    color: #ffffff;

    font-size: 14px;

    line-height: 1;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   SCROLLING WINDOW
========================================================= */

.vc-home-marquee-inner {
    position: relative;

    flex: 1 1 auto;

    width: calc(100% - 150px);
    height: 60px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   TRACK
========================================================= */

.vc-home-marquee-track {
    position: absolute;

    top: 0;
    left: 0;

    display: flex;

    width: max-content;
    height: 100%;

    align-items: center;

    animation:
        vc-home-marquee-animation 40s linear infinite;

    will-change: transform;
}


/* =========================================================
   GROUP
========================================================= */

.vc-home-marquee-group {
    display: flex;

    flex: 0 0 auto;

    align-items: center;

    height: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.vc-home-marquee-content {
    display: flex;

    align-items: center;

    height: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   ANNOUNCEMENT TEXT
========================================================= */

.vc-home-marquee-text {
    display: inline-flex;

    align-items: center;

    flex: 0 0 auto;

    height: 100%;

    margin: 0;

    padding: 0 15px;

    color: #222222;

    font-size: 14px;

    line-height: 1;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   APPLY NOW BUTTON
========================================================= */

.vc-home-marquee-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    min-width: 90px;

    height: 34px;

    margin: 0 22px 0 0;

    padding: 7px 14px;

    color: #ffffff !important;

    background: #073453;

    border: 1px solid #073453;

    border-radius: 3px;

    font-size: 11px;

    line-height: 1;

    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    box-sizing: border-box;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.vc-home-marquee-button:hover {
    color: #ffffff !important;

    background: #527b3b;

    border-color: #527b3b;
}


/* =========================================================
   PAUSE WHEN HOVERING
========================================================= */

.vc-home-marquee-inner:hover
.vc-home-marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   INFINITE ANIMATION
========================================================= */

@keyframes vc-home-marquee-animation {

    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vc-home-marquee {
        height: 56px;
    }

    .vc-home-marquee-label-box {
        width: 135px;
        height: 56px;

        padding: 0 12px;
    }

    .vc-home-marquee-inner {
        width: calc(100% - 135px);
        height: 56px;
    }

    .vc-home-marquee-label-text {
        font-size: 13px;
    }

    .vc-home-marquee-text {
        font-size: 13px;
        padding: 0 12px;
    }

    .vc-home-marquee-button {
        height: 32px;

        min-width: 82px;

        margin-right: 18px;

        padding: 7px 12px;

        font-size: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vc-home-marquee {
        height: 52px;
    }

    .vc-home-marquee-label-box {
        width: 115px;
        height: 52px;

        gap: 6px;

        padding: 0 9px;
    }

    .vc-home-marquee-inner {
        width: calc(100% - 115px);
        height: 52px;
    }

    .vc-home-marquee-label-icon {
        width: 24px;
        height: 24px;

        flex-basis: 24px;

        font-size: 10px;
    }

    .vc-home-marquee-label-text {
        font-size: 11px;
    }

    .vc-home-marquee-text {
        font-size: 11px;

        padding: 0 9px;
    }

    .vc-home-marquee-button {
        height: 30px;

        min-width: 75px;

        margin-right: 14px;

        padding: 6px 9px;

        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vc-home-marquee-label-box {
        width: 100px;
    }

    .vc-home-marquee-inner {
        width: calc(100% - 100px);
    }

    .vc-home-marquee-label-icon {
        display: none;
    }

    .vc-home-marquee-label-text {
        font-size: 10px;
    }

}