.gs-ac-hometop-pb2, [data-class="gs-ac-hometop-pb2"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin: 0px auto;
    padding: 25px 0 10px;
    width: 100%;
    justify-items: center;
    height: calc(35px + ((50vw - 20px - 10px) / 3));
    max-height: 135px;
    position: relative;
}
 
@media screen and (max-width: 489.9px) { 
    .gs-ac-hometop-pb2, [data-class="gs-ac-hometop-pb2"] {
        padding: 25px 0 10px;
        height: calc(35px + (2 * (100vw - 40px) / 3) + 10px);
        max-height: 260px; 
    }
}

.gs-ac-hometop-pb4, [data-class="gs-ac-hometop-pb4"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - 10px), 1fr));
    gap: 10px;
    margin: 0px auto;
    padding: 10px 0px;
    align-items: center;
    max-width: 1200px;
    height: calc(20px + (min(100vw - 40px, 1200px) / 4) / 3);
    max-height: 120px;
    position: relative;
}

@media screen and (max-width: 767px) { 
    .gs-ac-hometop-pb4, [data-class="gs-ac-hometop-pb4"] {
        display: none;
    }
}

@media screen and (min-width: 768px) { 
    .gs-ac-hometop-pb2, [data-class="gs-ac-hometop-pb2"] {
        display: none;
    }
}


.gs-ac-hometop-pb4::before, .gs-ac-hometop-pb2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e6e6e6;
    border-top-color: #d2d2d2;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 1;
}

.gs-ac-hometop-pb4:has(*)::before, .gs-ac-hometop-pb2:has(*)::before {
    display: none;
}


.gs-ac-item {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    flex: 0 0 100%;
    transform: translateX(0px);
    border: 1px solid #d2d2d2;
}

.gs-ac-s.c > div {
    margin: 0px auto;
}

.gs-ac-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    text-indent: -999em;
}

@media screen and (max-width: 768px) {
    .gs-ac-s.c > div {
        margin: 30px auto;
    }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*
@media screen and (max-width: 489.9px) {
    .gs-ac-hometop-pb2 > div:first-child {
        margin-top: 15px;
    }
}

@media screen and (min-width: 490px) {
    .gs-ac-hometop-pb2 > div {
        margin-top: 15px;
    }
}
*/