.gallery-image img {
    width: auto;
    border-radius: 24px;
}

.gallery-item .caption {
    font-size: 18px;
    color: #272829;
    font-family: var(--main_font);
    text-align: center;
    margin-top: 20px;
    transition: 0.4s ease;
    line-height: 1.5;
    position: relative;
}

.gallery-item:hover .caption {
    color: var(--color1);
}

.gallery-item a {
    position: relative;
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-item a:before {
    opacity: 0;
    content: "";
    position: absolute;
    height: 100%;
    background: #024A638C;
    filter: blur(12px);
    opacity: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    z-index: 1;
}

.gallery-item a:after {
    content: "\e925";
    font-family: icomoon;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transition: 0.3s;
    z-index: 3;
}

.gallery-item:hover a::before {
    opacity: .6
}

.gallery-item:hover a:after {
    opacity: 1;
}

.sw-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 1.5rem;
}

.section-gallery-acc .title-heading {
    padding-bottom: 0;
    color: #fff;
    font-size: 1.28rem;
    line-height: 32px;
}

.section-gallery-acc .scaticon {
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 2rem;
    font-size: 16px;
    transition: 0.4s ease;
}

.section-gallery-acc .scaticon:before {
    content: "\e90f";
    font-family: icomoon;
    transition: 0.3s;
    width: 1rem;
    height: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.section-gallery-acc .quickAccesses.active .scaticon::before {
    transform: rotate(180deg);
}

.section-gallery-acc .scaticon.active::before {
    transform: rotate(180deg);
}

.section-gallery-acc .children .scaticon {
    top: 5px;
}

.section-gallery-acc .wrap-ft-menu {
    background-color: #fff;
    border: 1px solid #E9EBF5;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.section-gallery-acc .quickAccesses.accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0px 6px 37.84px 0px #99999933;
}