body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    overflow-x:hidden;
}

/* =========================
   HERO
========================= */

.gallery-hero{
    min-height:70vh;
    background:#fff;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;
}

/* REMOVE OVERLAY */

.overlay{
    display:none;
}

/* HERO CONTENT */

.gallery-hero-content{
    position:relative;
    z-index:2;
}

.gallery-hero-content h1{
    font-size:68px;
    font-weight:900;

    color:rgba(0,0,128,1 );

    margin-bottom:15px;


}

.gallery-hero-content p{
    font-size:21px;

    line-height:34px;

    color:rgba(207, 181, 59, 1);
}

/* =========================
   COMMON
========================= */

.section-padding{
    padding:100px 0;
}

.section-subtitle{
    color:rgba(207, 181, 59, 1);

    font-weight:700;

    letter-spacing:2px;

    position:relative;

    display:inline-block;
}

.section-subtitle::after{
    content:'';

    width:50px;
    height:2px;

    background:rgba(207, 181, 59, 1);

    position:absolute;

    top:50%;

    margin-left:10px;
}

.section-title{
    font-size:44px;

    font-weight:800;

    color:rgba(0,0,128,1 );

    margin-top:15px;
}

/* =========================
   GALLERY WRAPPER
========================= */

.gallery-wrapper{
    background:#fff;
}

/* TITLE */

.gallery-main-title{
    color:rgba(0,0,128,1 );

    font-size:60px;

    font-weight:800;

    margin-bottom:18px;
}

/* DESCRIPTION */

.gallery-main-description{
    color:rgba(207, 181, 59, 1);;

    font-size:18px;

    line-height:34px;

    max-width:850px;

    margin:auto;
}

/* =========================
   MAIN IMAGE
========================= */

.main-image-wrapper{
    width:100%;

    height:520px;

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.10);

    transition:0.5s ease;
}

.main-image-wrapper:hover{
    transform:translateY(-5px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.14);
}

/* MAIN IMAGE */

.main-image{
    width:100%;

    height:100%;

    object-fit:cover;
    border: #0401b5 solid 5px;

    transition:0.5s ease;
}

.main-image:hover{
    transform:scale(1.03);
}

/* =========================
   THUMBNAILS
========================= */

.thumb-wrapper{
    border-radius:18px;

    overflow:hidden;

    background:#fff;

    cursor:pointer;

    border:3px solid transparent;

    transition:0.4s ease;

    box-shadow:
    0 6px 20px rgba(0,0,0,0.08);
}

/* HOVER */

.thumb-wrapper:hover{
    transform:
    translateY(-6px)
    scale(1.03);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
}

/* ACTIVE THUMB */

.thumb-wrapper.active-thumb{
    border:5px solid #0401b5;

    box-shadow:
    0 10px 30px rgba(244,180,0,0.25);
}

/* THUMB IMAGE */

.thumb{
    width:100%;

    height:160px;

    object-fit:cover;

    transition:0.5s ease;
}

.thumb:hover{
    transform:scale(1.08);
}

/* =========================
   CLIENTS
========================= */

.clients-section{
    background:#fff;
    color:rgba(0,0,128,1 );
}

.client-card{
    height:100%;
    width:100%;
    background:rgb(255, 255, 255);

    padding:40px;

    border-radius:18px;

    border:1px solid rgba(65,105,225,0.06);

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

.client-card:hover{
    transform:
    translateY(-10px)
    scale(1.03);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.12);
}

/* CLIENT IMAGE */

.client-card img{
    height:100%;
    width:4000%;
    transition:0.4s ease;
}

.client-card:hover img{
    transform:scale(1.05);
}
/* =========================
   SCROLL DOWN
========================= */

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:10;
}

/* SCROLL LINK */

.scroll-down a{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    /* BLUE BORDER */

    border:2px solid rgba(65,105,225,1);

    /* WHITE BG */

    background:#ffffff;

    /* BLUE ICON */

    color:rgba(65,105,225,1);

    font-size:28px;

    transition:0.4s ease;

    /* SHADOW */

    box-shadow:
    0 8px 25px rgba(65,105,225,0.18);

    animation:scrollDown 2s infinite;
}

/* HOVER */

.scroll-down a:hover{

    background:rgba(65,105,225,1);

    color:#ffffff;

    transform:scale(1.12);

    box-shadow:
    0 15px 35px rgba(65,105,225,0.28);
}

/* =========================
   ANIMATION
========================= */

@keyframes scrollDown{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(12px);
    }

    100%{
        transform:translateY(0);
    }
}
/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:rgba(0,0,128,1 );
}

::-webkit-scrollbar-thumb{
    background:rgba(207, 181, 59, 1);
    border-radius:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .gallery-hero-content h1{
        font-size:52px;
    }

    .section-title{
        font-size:38px;
    }

    .gallery-main-title{
        font-size:48px;
    }

    .main-image-wrapper{
        height:420px;
    }
}

@media(max-width:768px){

    .section-padding{
        padding:80px 0;
    }

    .gallery-hero{
        min-height:60vh;
    }

    .gallery-hero-content h1{
        font-size:42px;
        line-height:55px;
    }

    .gallery-hero-content p{
        font-size:17px;
        line-height:30px;
    }

    .section-title{
        font-size:32px;
    }

    .gallery-main-title{
        font-size:38px;
    }

    .gallery-main-description{
        font-size:16px;
        line-height:30px;
    }

    .main-image-wrapper{
        height:320px;
        border-radius:18px;
    }

    .thumb{
        height:110px;
    }

    .client-card{
        padding:30px 20px;
    }
}

@media(max-width:576px){

    .gallery-hero-content h1{
        font-size:36px;
    }

    .gallery-hero-content p{
        font-size:16px;
    }

    .main-image-wrapper{
        height:260px;
    }

    .thumb{
        height:95px;
    }
}