.section-3 {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 40px;
    /* background: url(../../images/bg-3.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-color: white; */
}

.gallery-title {
    font-size: 48px;
    font-weight: 600;
    background-image: linear-gradient(90deg, #282828 0%, #0A84D0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 100%;
    /* margin-top: 24px; */
}

.right-gallery-grid {
    display: grid;
    grid-template-rows: 2fr 1fr;
    gap: 20px;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.gallery-image-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 8px;
    padding: 10px;
}

.gallery-image-overlay .image-title {
    font-size: 16px;
    font-weight: 600;
}

.gallery-image-overlay .image-date {
    font-size: 12px;
    font-weight: 200;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

.visitor-card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 20px 12px;
}

.online-container {
    background: linear-gradient(90deg, #198EC8 0%, #004F8F 100%);
    color: white;
    padding: 10px;
    border-radius: 8px;
}

.online-text {
    font-weight: 600;
    padding: 4px 8px;
}

.online-number {
    margin-left: auto;
    font-weight: 600;
    padding: 4px 8px;
}

.text-visitor-total {
    color: #087AB2;
}

div.hr {
    border-bottom: 1px solid #979797;
    width: 100%;
    height: 1px;
}

.country-visitor-container {
    width: 100%;
    height: 250px;
    overflow-y: auto;
}

.text-visitor-flag .fi {
    font-size: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.social-media-container {
    margin-top: 40px;
    margin-bottom: 20px;
}

.social-media-container a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
}

.gallery-image-wrapper:has(.gallery-image-1) {
    max-height: 730px;
}
.gallery-image-wrapper:has(.gallery-image-2) {
    max-height: 600px;
}
.gallery-image-wrapper:has(.gallery-image-3) {
    max-height: 300px;
}