/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2026 | 12:10:48 */
/* =====================================================
   LIFE AT GETFIVE
===================================================== */

.gf-life-section {
    --gf-blue: #1d397d;
    --gf-orange: #f26b21;
    --gf-black: #080808;
    --gf-text: #333a48;
    --gf-light: #f5f6f8;

    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 45px 0 40px;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(29, 57, 125, 0.07),
            transparent 25%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.gf-life-inner {
    width: min(1240px, calc(100% - 50px));
    margin: 0 auto;
}

/* Section title */

.gf-life-heading {
    max-width: 850px;
    margin-bottom: 75px;
}

.gf-life-heading h2 {
    display: inline-flex;
    position: relative;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    color: var(--gf-black);
    font-family: inherit;
    font-size: clamp(42px, 5.6vw, 36px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -4px;
}

.gf-life-heading h2 .gf-hash {
    margin-right: 3px;
    font-weight: 800;
}

.gf-life-heading h2 strong {
    color: var(--gf-blue);
    font-weight: 700;
}

.gf-life-heading p {
    margin: 25px 0 0;
    color: var(--gf-text);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.7;
}

/* Small orange brand-style mark */

.gf-heading-mark {
    position: absolute;
    top: -17px;
    right: -38px;
    width: 30px;
    height: 30px;
}

.gf-heading-mark span {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 4px;
    height: 16px;
    border-radius: 10px;
    background: var(--gf-orange);
    transform-origin: center bottom;
}

.gf-heading-mark span:nth-child(1) {
    transform: translateX(-50%);
}

.gf-heading-mark span:nth-child(2) {
    transform: translateX(-50%) rotate(55deg);
}

.gf-heading-mark span:nth-child(3) {
    transform: translateX(-50%) rotate(-55deg);
}

/* We statement */

.gf-we-statement {
    display: flex;
    align-items: center;
    gap: clamp(30px, 6vw, 90px);
    margin-bottom: 90px;
}

.gf-we-word {
    flex: 0 0 auto;
    color: var(--gf-black);
    font-size: clamp(100px, 15vw, 205px);
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: -14px;
}

.gf-we-lines {
    display: grid;
    gap: 10px;
}

.gf-we-lines > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: var(--gf-text);
    font-size: clamp(20px, 2vw, 31px);
    line-height: 1.25;
}

.gf-we-lines strong {
    min-width: 48px;
    color: var(--gf-blue);
    font-size: 0.68em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gf-we-lines span {
    font-weight: 500;
}

/* =====================================================
   FLOWING PHOTO CAROUSEL
===================================================== */

.gf-life-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gf-life-carousel::before,
.gf-life-carousel::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    width: clamp(30px, 8vw, 150px);
    height: 100%;
    pointer-events: none;
}

.gf-life-carousel::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #f8f9fb 0%,
        rgba(248, 249, 251, 0) 100%
    );
}

.gf-life-carousel::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #f8f9fb 0%,
        rgba(248, 249, 251, 0) 100%
    );
}

.gf-life-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 22px;
    animation: gfLifeFlow 45s linear infinite;
    will-change: transform;
}

.gf-life-carousel:hover .gf-life-track {
    animation-play-state: paused;
}

.gf-life-photo {
    position: relative;
    flex: 0 0 clamp(250px, 27vw, 430px);
    height: clamp(260px, 31vw, 470px);
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #e8eaf0;
}

.gf-life-photo:nth-child(4n + 2) {
    height: clamp(220px, 26vw, 390px);
}

.gf-life-photo:nth-child(4n + 3) {
    flex-basis: clamp(300px, 34vw, 520px);
}

.gf-life-photo:nth-child(4n + 4) {
    height: clamp(245px, 29vw, 430px);
}

.gf-life-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}

.gf-life-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(8, 20, 52, 0.18) 100%
    );
    pointer-events: none;
}

.gf-life-photo:hover img {
    transform: scale(1.045);
}

/* Flow animation */

@keyframes gfLifeFlow {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.gf-gallery-message {
    width: min(1240px, calc(100% - 50px));
    margin: 20px auto 0;
    padding: 25px;
    color: #6b7280;
    text-align: center;
    border: 1px dashed #cbd0da;
    background: #ffffff;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .gf-life-section {
        padding: 80px 0 85px;
    }

    .gf-life-heading {
        margin-bottom: 60px;
    }

    .gf-we-statement {
        margin-bottom: 70px;
    }

    .gf-we-word {
        letter-spacing: -9px;
    }

    .gf-life-track {
        animation-duration: 38s;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .gf-life-section {
        padding: 65px 0 70px;
    }

    .gf-life-inner {
        width: min(100% - 32px, 1240px);
    }

    .gf-life-heading {
        margin-bottom: 50px;
    }

    .gf-life-heading h2 {
        font-size: clamp(39px, 12vw, 58px);
        letter-spacing: -2.8px;
    }

    .gf-heading-mark {
        top: -16px;
        right: -25px;
        transform: scale(0.75);
    }

    .gf-life-heading p {
        margin-top: 20px;
        font-size: 15px;
    }

    .gf-we-statement {
        display: block;
        margin-bottom: 55px;
    }

    .gf-we-word {
        margin-bottom: 28px;
        font-size: clamp(95px, 33vw, 145px);
        line-height: 0.8;
        letter-spacing: -8px;
    }

    .gf-we-lines {
        gap: 15px;
    }

    .gf-we-lines > div {
        display: grid;
        grid-template-columns: 38px 1fr;
        gap: 10px;
        font-size: clamp(18px, 5.8vw, 24px);
    }

    .gf-we-lines strong {
        min-width: 0;
        padding-top: 3px;
        font-size: 12px;
    }

    .gf-life-track {
        gap: 14px;
        animation-duration: 32s;
    }

    .gf-life-photo,
    .gf-life-photo:nth-child(4n + 3) {
        flex-basis: 78vw;
        height: 390px;
    }

    .gf-life-photo:nth-child(4n + 2),
    .gf-life-photo:nth-child(4n + 4) {
        height: 330px;
    }

    .gf-life-carousel::before,
    .gf-life-carousel::after {
        width: 25px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .gf-life-track {
        animation: none;
    }

    .gf-life-carousel {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .gf-life-photo img {
        transition: none;
    }
}

/*new*/

/* Gallery */

.gf-life-carousel{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:70px;
}

.gf-life-track{
    display:flex;
    width:max-content;
    gap:20px;

    animation: galleryScroll 70s linear infinite;
    will-change:transform;
}

.gf-life-carousel:hover .gf-life-track{
    animation-play-state:paused;
}

.gf-life-photo{
    flex:0 0 360px;
    height:250px;
    border-radius:18px;
    overflow:hidden;
}

.gf-life-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gf-life-photo:hover img{
    transform:scale(1.05);
}

@keyframes galleryScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}