/* =====================================================
   HOMEPAGE WELCOME
===================================================== */

.home-welcome-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0 115px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(0, 162, 211, .08),
            transparent 30%
        ),
        #ffffff;
}


/* IMAGE */

.home-welcome-image-wrap {
    position: relative;

    padding: 0 45px 60px 20px;
}

.home-welcome-image {
    position: relative;

    z-index: 3;

    overflow: hidden;

    border-radius: 18px 90px 18px 90px;

    box-shadow:
        0 30px 70px
        rgba(22, 55, 72, .17);
}

.home-welcome-image img {
    display: block;

    width: 100%;
    min-height: 540px;

    object-fit: cover;

    transition: transform .6s ease;
}

.home-welcome-image:hover img {
    transform: scale(1.04);
}

.home-image-outline {
    position: absolute;

    z-index: 1;

    left: 50px;
    bottom: 12px;

    width: 80%;
    height: 78%;

    border: 4px solid var(--lwwm-blue);

    border-radius: 18px 80px 18px 80px;
}


/* PASSION */

.home-passion-card {
    position: absolute;

    z-index: 6;

    right: 0;
    bottom: 72px;

    width: 330px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 21px 24px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--lwwm-blue-dark),
            var(--lwwm-blue)
        );

    border-radius: 15px;

    box-shadow:
        0 20px 45px
        rgba(0,162,211,.28);
}

.home-passion-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--lwwm-gold-light);

    background:
        rgba(255,255,255,.14);

    border-radius: 50%;

    font-size: 23px;
}

.home-passion-card small {
    display: block;

    margin-bottom: 3px;

    color: var(--lwwm-gold-light);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.home-passion-card h5 {
    margin: 0;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 700;
}


/* CONTENT */

.home-welcome-content {
    padding-left: 20px;
}

.home-welcome-content h2 {
    margin: 0;

    color: var(--lwwm-dark);

    font-size: 46px;
    font-weight: 800;
    line-height: 1.13;
}

.home-welcome-content h2 span {
    display: block;

    color: var(--lwwm-blue);
}

.home-welcome-content p {
    margin-bottom: 16px;

    color: var(--lwwm-text);

    font-size: 16px;
    line-height: 1.85;
}

.home-welcome-lead {
    color: #334650 !important;

    font-size: 19px !important;
    font-weight: 500;
}


/* MOTTO */

.home-motto {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 10px;

    margin-top: 28px;
}

.home-motto-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 14px;

    background: var(--lwwm-light);

    border:
        1px solid
        var(--lwwm-border);

    border-radius: 10px;

    transition: .3s ease;
}

.home-motto-item i {
    width: 38px;
    height: 38px;
    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: var(--lwwm-blue);

    border-radius: 50%;
}

.home-motto-item small {
    display: block;

    color: #829098;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.home-motto-item strong {
    display: block;

    color: var(--lwwm-dark);

    font-size: 13px;
}

.home-motto-item:hover {
    background: var(--lwwm-blue);

    transform: translateY(-4px);
}

.home-motto-item:hover i {
    background: var(--lwwm-gold);
}

.home-motto-item:hover small,
.home-motto-item:hover strong {
    color: #fff;
}


/* BUTTON */

.home-about-btn {
    padding: 12px 24px;

    color: #fff;

    background: var(--lwwm-blue);

    border:
        2px solid
        var(--lwwm-blue);

    border-radius: 7px;

    font-weight: 700;

    transition: .3s ease;
}

.home-about-btn:hover {
    color: #fff;

    background: var(--lwwm-blue-dark);

    border-color: var(--lwwm-blue-dark);

    transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 991.98px) {

    .home-welcome-section {
        padding: 75px 0 90px;
    }

    .home-welcome-content {
        padding-left: 0;
    }

    .home-welcome-content h2 {
        font-size: 39px;
    }
}

@media (max-width: 767.98px) {

    .home-welcome-image-wrap {
        padding:
            0 15px 70px;
    }

    .home-welcome-image img {
        min-height: 410px;
    }

    .home-passion-card {
        right: 0;
        bottom: 28px;

        width: 88%;
    }

    .home-welcome-content h2 {
        font-size: 33px;
    }

    .home-motto {
        grid-template-columns: 1fr;
    }
}