/*==============================================================
# Gallery
==============================================================*/

.lca-gallery{

    max-width:1200px;
    margin:40px 0;
 background:transparent !important;

    box-shadow:none !important;

    padding:0 !important;


}

.lca-gallery-main img{

    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:14px;

    display:block;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.lca-gallery-thumbs{

    display:flex;
    gap:15px;

    margin-top:18px;

}

.lca-gallery-thumbs img{

    width:170px;
    height:120px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    transition:.25s;

}

.lca-gallery-thumbs img:hover{

    transform:scale(1.04);

    opacity:.9;

}