/* =========================================================
   VISIT CHAMOLI
   PLAN YOUR JOURNEY
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.vc-journey-section {
    position: relative;

    width: 100%;

    padding:
        110px 0
        120px;

    background:
        #f3f1e9;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.vc-journey-container {
    width:
        min(
            1400px,
            calc(100% - 80px)
        );

    min-height: 610px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        0.82fr;

    align-items: center;

    gap: 100px;
}


/* =========================================================
   VISUAL
========================================================= */

.vc-journey-visual {
    position: relative;

    height: 600px;

    min-width: 0;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.vc-journey-main-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 82%;
    height: 540px;

    overflow: hidden;

    border-radius: 4px;

    box-shadow:
        0 25px 60px
        rgba(26,48,52,0.14);
}


.vc-journey-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.vc-journey-visual:hover
.vc-journey-main-image img {
    transform:
        scale(1.04);
}


/* =========================================================
   FLOATING IMAGE
========================================================= */

.vc-journey-floating-image {
    position: absolute;

    right: 0;

    bottom: 0;

    width: 42%;

    height: 255px;

    padding: 8px;

    background: #ffffff;

    box-shadow:
        0 20px 45px
        rgba(26,48,52,0.18);

    transform:
        rotate(2deg);

    z-index: 3;
}


.vc-journey-floating-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   NUMBER
========================================================= */

.vc-journey-number {
    position: absolute;

    left: -20px;

    bottom: 42px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background:
        #e0a72b;

    color:
        #173940;

    box-shadow:
        0 12px 30px
        rgba(26,48,52,0.16);
}


.vc-journey-number span {
    font-size: 23px;

    font-weight: 800;

    line-height: 1;
}


.vc-journey-number small {
    margin-top: 5px;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENT
========================================================= */

.vc-journey-content {
    max-width: 560px;

    padding:
        15px 0;
}


.vc-journey-eyebrow {
    display: block;

    margin-bottom: 16px;

    color:
        #9a7427;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.vc-journey-title {
    margin: 0;

    color:
        #173940;

    font-size:
        clamp(
            42px,
            4vw,
            62px
        );

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -2.5px;
}


.vc-journey-title span {
    display: inline;

    color:
        #718984;

    font-weight: 500;
}


.vc-journey-title strong {
    display: block;

    color:
        #173940;

    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.vc-journey-description {
    max-width: 490px;

    margin:
        25px 0 35px;

    color:
        #687977;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.vc-journey-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    padding:
        0 0 30px;

    border-bottom:
        1px solid
        rgba(23,57,64,0.12);
}


/* =========================================================
   FEATURE
========================================================= */

.vc-journey-feature {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.vc-journey-feature-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 39px;
    height: 39px;

    border-radius: 50%;

    background:
        rgba(224,167,43,0.16);

    color:
        #9a7427;

    font-size: 12px;
}


.vc-journey-feature-content h3 {
    margin: 0 0 5px;

    color:
        #173940;

    font-size: 12px;

    font-weight: 800;
}


.vc-journey-feature-content p {
    margin: 0;

    color:
        #7a8986;

    font-size: 8px;

    line-height: 1.55;
}


/* =========================================================
   CTA
========================================================= */

.vc-journey-actions {
    padding-top: 25px;
}


.vc-journey-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        12px 8px
        12px 18px;

    background:
        #173940;

    color:
        #ffffff;

    text-decoration: none;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.8px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.vc-journey-btn i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background:
        #e0a72b;

    color:
        #173940;

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.vc-journey-btn:hover {
    background:
        #244d55;

    transform:
        translateY(-2px);
}


.vc-journey-btn:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .vc-journey-section {
        padding:
            85px 0
            95px;
    }


    .vc-journey-container {
        width:
            calc(100% - 50px);

        gap: 60px;
    }


    .vc-journey-visual {
        height: 520px;
    }


    .vc-journey-main-image {
        height: 470px;
    }


    .vc-journey-floating-image {
        height: 220px;
    }


    .vc-journey-title {
        font-size: 48px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vc-journey-container {
        grid-template-columns:
            1fr;

        gap: 65px;
    }


    .vc-journey-visual {
        height: 520px;
    }


    .vc-journey-main-image {
        width: 82%;

        height: 470px;
    }


    .vc-journey-floating-image {
        width: 38%;

        height: 225px;
    }


    .vc-journey-content {
        max-width: 700px;
    }


    .vc-journey-title {
        font-size: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vc-journey-section {
        padding:
            65px 0
            75px;
    }


    .vc-journey-container {
        width:
            calc(100% - 30px);

        gap: 55px;
    }


    .vc-journey-visual {
        height: 390px;
    }


    .vc-journey-main-image {
        width: 88%;

        height: 340px;
    }


    .vc-journey-floating-image {
        width: 43%;

        height: 170px;

        padding: 6px;
    }


    .vc-journey-number {
        left: -8px;

        bottom: 25px;

        width: 66px;
        height: 66px;
    }


    .vc-journey-number span {
        font-size: 19px;
    }


    .vc-journey-title {
        font-size: 40px;

        letter-spacing: -1.5px;
    }


    .vc-journey-description {
        margin:
            20px 0 28px;

        font-size: 11px;
    }


    .vc-journey-features {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .vc-journey-feature {
        display: grid;

        grid-template-columns:
            39px 1fr;

        align-items: center;

        gap: 12px;
    }


    .vc-journey-feature-icon {
        grid-row:
            span 2;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vc-journey-visual {
        height: 330px;
    }


    .vc-journey-main-image {
        width: 90%;

        height: 285px;
    }


    .vc-journey-floating-image {
        width: 43%;

        height: 135px;
    }


    .vc-journey-number {
        width: 58px;
        height: 58px;

        bottom: 18px;
    }


    .vc-journey-number span {
        font-size: 16px;
    }


    .vc-journey-number small {
        font-size: 5px;
    }


    .vc-journey-title {
        font-size: 34px;
    }

}