/* =========================================================
   VISIT CHAMOLI
   HIGHLIGHTS SECTION
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.vc-highlights-section {
    position: relative;

    width: 100%;

    padding: 0;

    background: #ffffff;

    border-bottom: 1px solid #e8e8e8;

    z-index: 5;
}


/* =========================================================
   GRID
========================================================= */

.vc-highlights-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    width: 100%;
}


/* =========================================================
   ITEM
========================================================= */

.vc-highlight-item {
    position: relative;

    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 16px;

    border-right: 1px solid #e8e8e8;

    color: #1b3448;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.vc-highlight-item:first-child {
    border-left: 1px solid #e8e8e8;
}


.vc-highlight-item:hover {
    background: #f8f5ed;

    color: #1b3448;
}


/* =========================================================
   ICON
========================================================= */

.vc-highlight-icon {
    width: 42px;

    min-width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f5b82e;

    color: #183449;

    font-size: 17px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.vc-highlight-item:hover .vc-highlight-icon {
    transform: translateY(-3px);

    background: #183449;

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.vc-highlight-content {
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 7px;
}


/* =========================================================
   NUMBER
========================================================= */

.vc-highlight-number {
    display: block;

    margin-top: 1px;

    color: #d39a18;

    font-family: "Urbanist", sans-serif;

    font-size: 19px;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   TEXT WRAPPER
========================================================= */

.vc-highlight-content > div {
    min-width: 0;
}


/* =========================================================
   TITLE
========================================================= */

.vc-highlight-content strong {
    display: block;

    margin-bottom: 4px;

    color: #183449;

    font-family: "Urbanist", sans-serif;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.vc-highlight-content small {
    display: block;

    color: #7b858c;

    font-family: "Inter", sans-serif;

    font-size: 8px;

    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media only screen and (max-width: 1400px) {

    .vc-highlight-item {
        padding-left: 12px;

        padding-right: 12px;

        gap: 9px;
    }


    .vc-highlight-icon {
        width: 38px;

        min-width: 38px;

        height: 38px;

        font-size: 15px;
    }


    .vc-highlight-number {
        font-size: 17px;
    }


    .vc-highlight-content strong {
        font-size: 11px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 1199px) {

    .vc-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .vc-highlight-item:nth-child(4) {
        border-left: 1px solid #e8e8e8;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media only screen and (max-width: 767px) {

    .vc-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .vc-highlight-item {
        min-height: 95px;

        padding: 15px 12px;
    }


    .vc-highlight-item:nth-child(4) {
        border-left: 0;
    }


    .vc-highlight-item:nth-child(odd) {
        border-left: 1px solid #e8e8e8;
    }


    .vc-highlight-icon {
        width: 36px;

        min-width: 36px;

        height: 36px;

        font-size: 14px;
    }


    .vc-highlight-number {
        font-size: 16px;
    }


    .vc-highlight-content strong {
        font-size: 10px;
    }


    .vc-highlight-content small {
        font-size: 7px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 480px) {

    .vc-highlights-grid {
        grid-template-columns: 1fr;
    }


    .vc-highlight-item {
        min-height: 78px;

        border-left: 1px solid #e8e8e8;

        border-bottom: 1px solid #e8e8e8;
    }


    .vc-highlight-item:nth-child(odd) {
        border-left: 1px solid #e8e8e8;
    }


    .vc-highlight-content small {
        font-size: 8px;
    }

}