.custom-gallery {
    align-items: center;
    max-height: 580px;
    display: flex;
    flex-wrap: nowrap;
    --widgets-spacing: 0px;
    -webkit-box-orient: horizontal;
    margin-top: 35px;
}

.verticalgall {
    padding-left: 0px;
    padding-right: 20px;
    max-height: 580px;
    word-wrap: break-word;
    height: auto;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.feathgall {
    position: relative;
    width: 100%;
}

.feathgall>div {
    background-size: cover !important;
    height: 580px;
    border-radius: 10px 10px 10px 10px;
}


div.miniLat {
    border-radius: 10px 10px 10px 10px;
    height: 150px;
    width: 205px;
    background-size: cover !important;
    margin-bottom: 20px;
    background-position: center center !important;
}

div.custom-gallery__item:first-child {
    opacity: 1;
}

div.custom-gallery__item {
    opacity: 0.4;
}

.custom-gallery__arrow-up {
    position: absolute;
    margin: 0 auto;
    width: 205px;
    text-align: center;
    z-index: 1;
    top: 12px;
}

.custom-gallery__arrow-down {
    position: absolute;
    margin: 0 auto;
    width: 205px;
    z-index: 1;
    text-align: center;
    top: 600px;
}

i.fas.fa-chevron-up,
i.fas.fa-chevron-down {
    font-size: 14px;
    color: #0a306e;
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #d8dfe7;
    border-radius: 50% 50% 50% 50%;
    padding: 13px 14px 13px 14px;
    cursor: pointer;
}

i.fas.fa-chevron-up:hover,
i.fas.fa-chevron-down:hover {
    color: #ffffff;
    background-color: #0a306e;
    border-color: #0a306e;
}

/* set style in tablet/ipad */
@media (max-width: 1024px) {
    .custom-gallery {
        max-height: 400px;
    }

    .verticalgall {
        max-height: 400px;
    }

    .feathgall>div {
        height: 400px;
    }

    div.miniLat {
        height: 100px;
        width: 140px;
    }

    .custom-gallery__arrow-up {
        top: 15px;
        width: 140px;
    }

    .custom-gallery__arrow-down {
        top: 425px;
        width: 140px;
    }

    i.fas.fa-chevron-up,
    i.fas.fa-chevron-down {
        padding: 9px 10px 9px 10px;
    }
}

/* set style in mobile */
@media (max-width: 768px) {
    .custom-gallery {
        max-height: 300px;
    }

    .verticalgall {
        max-height: 300px;
        padding-right: 10px;
    }

    .feathgall>div {
        height: 300px;
    }

    div.miniLat {
        height: 55px;
        width: 55px;
        margin-bottom: 10px;
    }

    .custom-gallery__arrow-up {
        top: 15px;
        width: 55px;
    }

    .custom-gallery__arrow-down {
        top: 325px;
        width: 55px;
    }

    i.fas.fa-chevron-up,
    i.fas.fa-chevron-down {
        padding: 6px 7px 6px 7px;
    }
}