.exc-ins-home-title {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    padding-top: 4vh;
    padding-bottom: 4vh;
}

.our-gallery-win {
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-gallery-win-content {
    width: 95%;
    display: block;
    gap: 1.5vh;
    padding-bottom: 10px;
    align-items: center;
    background-image: url('/assets/img/images/w-1.jpg'); /* Replace 'your-image-url.jpg' with the actual path to your image */
    background-size: cover; /* This makes the image cover the entire area */
    background-position: center; /* This centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.our-gallery-win-content-left {
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 300;
}

.our-gallery-win-content-left-top {
    font-size: 16px;
}

.our-gallery-win-content-left-bottom {
    font-size: 25px;
}

.our-gallery-win-content-right {
    width: 95%; /* Adjust as needed */
    margin: 0 auto;
    position: relative; /* Ensures absolute elements are positioned relative to this div */
    overflow: hidden; /* Prevents content overflow */
}


.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
}

.gl-slide-button-container {
    position: absolute;
    top: 270px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.gl-slide-button {
    background-color: #1e6997a6;
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 18px;
}

.gl-slide-button svg {
    width: 30px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 100px;
    height: 70px;
    margin: 0 5px;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
}

.thumbnail img.active {
    border-color: #a6cef8;
}

.pargraph-excurions {
    padding-top: 10vh;
}

.pargraph-excurions p {
    width: 70%;
    margin: 0 auto;
    color: #101014b0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
}

@media only screen and (max-width: 1212px) {
    .our-gallery-win {
        width: 70%;
        margin: 0 auto;
    }
    .pargraph-excurions p {
        width: 70%;
    }
}

@media only screen and (max-width: 1032px) {
    .our-gallery-win {
        width: 90%;
        margin: 0 auto;
    }
    .pargraph-excurions p {
        width: 90%;
    }
}


@media only screen and (max-width: 721px) {
    .gl-slide-button-container {
        position: absolute;
        top: 170px;
    }
}

@media only screen and (max-width: 615px) {
    .our-gallery-win {
        width: 95%;
        margin: 0 auto;
    }
}