.gallery-slider-section {
    position: relative;
    /*background-color: var(--green-700);*/
    padding-block: 96px 48px;
    overflow: hidden;
}
@media (min-width: 991.8px) {
    .gallery-slider-section {
        padding-block: 100px;
    }
}
.gallery-slider-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.gallery-slider-section .text-content {
    margin-inline: auto;
    width: 780px;
    max-width: 100%;
}
.gallery-slider-section__button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-slider-section .gallerySwiper {
    margin-block: 24px;
}
@media (min-width: 767.8px) {
    .gallery-slider-section .gallerySwiper {
        margin-block: 80px;
    }
}
.gallery-slider-section .gallerySwiper .swiper-wrapper {
    margin-left: auto;
    margin-right: -250px;
}
@media (min-width: 340px) {
    .gallery-slider-section .gallerySwiper .swiper-wrapper {
        margin-right: -300px;
    }
}
.gallery-slider-section .gallerySwiper .swiper-slide {
    width: 250px;
    flex-basis: 250px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 340px) {
    .gallery-slider-section .gallerySwiper .swiper-slide {
        width: 300px;
        flex-basis: 300px;
    }
}
.gallery-slider-section .gallerySwiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--orange-200);
}
@media (min-width: 340px) {
    .gallery-slider-section .gallerySwiper .swiper-slide a {
        height: 300px;
    }
}
.gallery-slider-section .gallerySwiper .swiper-slide a img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.gallery-slider-section .small-dot {
    position: absolute;
    z-index: 2;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
    /* Add color to make it visible */
}
@media (min-width: 991.8px) {
    .gallery-slider-section .small-dot {
        display: block;
    }
}
.gallery-slider-section .md-cir-animation {
    animation-name: md-circle-rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.gallery-slider-section .md-cir-animation-2 {
    animation-name: md-circle-rotate-2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.gallery-slider-section .orange-dot {
    background-color: #f37038;
}
.gallery-slider-section .purple-dot {
    background-color: #273269;
}
.gallery-slider-section .green-dot {
    background-color: #c9e265;
}
.gallery-slider-section .blue-dot {
    background-color: #6adcff;
}
.gallery-slider-section .dot-1 {
    top: -115px;
    left: 36px;
}
.gallery-slider-section .dot-2 {
    top: -89px;
    left: 293px;
}
.gallery-slider-section .dot-4 {
    top: 0;
    left: 796px;
}
.gallery-slider-section .dot-5 {
    top: -115px;
    right: 100px;
}
.gallery-slider-section .dot-6 {
    top: 0;
    right: 80px;
}
.gallery-slider-section .dot-7 {
    bottom: 60px;
    left: 15px;
}
.gallery-slider-section .dot-8 {
    bottom: 90px;
    left: 560px;
}
.gallery-slider-section .dot-9 {
    bottom: 70px;
    right: 15px;
}
@keyframes md-circle-rotate {
    0% {
        transform: translate(0px, 25px);
    }
    12.5% {
        transform: translate(-20px, 15px);
    }
    25% {
        transform: translate(-25px, 0px);
    }
    37.5% {
        transform: translate(-20px, -15px);
    }
    50% {
        transform: translate(0px, -25px);
    }
    62.5% {
        transform: translate(20px, -15px);
    }
    75% {
        transform: translate(25px, 0px);
    }
    87.5% {
        transform: translate(20px, 15px);
    }
    100% {
        transform: translate(0px, 25px);
    }
}
@keyframes md-circle-rotate-2 {
    0% {
        transform: translate(0px, -25px);
        /* Opposite of 0% in original */
    }
    12.5% {
        transform: translate(20px, -15px);
        /* Opposite of -20px, 15px */
    }
    25% {
        transform: translate(25px, 0px);
        /* Opposite of -25px, 0px */
    }
    37.5% {
        transform: translate(20px, 15px);
        /* Opposite of -20px, -15px */
    }
    50% {
        transform: translate(0px, 25px);
        /* Opposite of 0px, -25px */
    }
    62.5% {
        transform: translate(-20px, 15px);
        /* Opposite of 20px, -15px */
    }
    75% {
        transform: translate(-25px, 0px);
        /* Opposite of 25px, 0px */
    }
    87.5% {
        transform: translate(-20px, -15px);
        /* Opposite of 20px, 15px */
    }
    100% {
        transform: translate(0px, -25px);
        /* Opposite of 0px, 25px */
    }
}
 