body{
    background-color: #f5f4f5;
}
body, h1, h2, h3, h4, h5, h6,
.full-screen .card, .full-screen .card-subtitle
{
    color: white;
}
.full-screen{
    height: 100vh;
    color: white;
    position: relative;
    background:url(../images/bg.webp) center/cover no-repeat;
    opacity: 0.9;
}
.full-screen::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.header{
    position:relative;
}
.full-screen .card{
    background:none;
    border: none;
    font-size:xx-large;
    position: absolute;
    bottom: 20%;
}
.full-screen .card .btn{
    border: 2px solid white;
    color: white;
}
.full-screen .card .btn:hover{
    color:#dfd8d1;
}
p.card-text{
    font-size: medium;
}
.py-12 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-16{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
ol,ul{
    padding-top: 20px;
}
ol li{
    list-style-type:decimal;
    color: black;
}
ul li{
    color: black;
}
.services .btn{
    border: 2px solid black;
    color: black;
}
.services .btn:hover{
    color:#333333;
}
.slideshow{
    overflow: hidden;
    padding-bottom: 6rem;
}
.image-conainer{
    overflow: hidden;          /* Hide anything that overflows */
    position: relative;
}
.image-list {
    display: flex;             /* Arrange images in a row */
    gap: 200px;
    animation: slide-left 10s linear infinite; /* Apply the sliding animation */
}
.image-list img {
    width: 35%;               /* Adjust image size to container's width */
    height: 400px;              /* Maintain aspect ratio */
}
.image-rounded-own{
    border-radius: 30px
}
 /* The sliding animation (moving the images left) */
 @keyframes slide-left {
    0% {
        transform: translateX(0);   /* Start from the original position */
    }
    100% {
        transform: translateX(-100%); /* Slide to the left */
    }
}

/* Optional: Adjust the height of the container */
.image-container {
    height: 450px;  /* You can set any height depending on your design */
}


section.holiday{
    width: 100%;
    height: 800px;
    background: url(../images/bg2.webp) center/cover no-repeat;
    opacity: 0.8;
    position: relative;
}
.cover{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
}
section.holiday .container{
   position: relative;
   top: 10%;
}
section.contact {
    position: relative;
}


@media (max-width: 768px) {
    /* Styles for mobile devices */
    .image-list {
        display: flex;             /* Arrange images in a row */
        flex-direction: column;
        gap: 20px;
        animation: slide-top 10s linear infinite; /* Apply the sliding animation */
    }
    .image-list img {
        width: 100%;               /* Adjust image size to container's width */
        height: 200px;              /* Maintain aspect ratio */
    }

    @keyframes slide-top {
        0% {
            transform: translatey(0);   /* Start from the original position */
        }
        100% {
            transform: translatey(-100%); /* Slide to the left */
        }
    }
    .image-list {
        height: 400px;  /* You can set any height depending on your design */
    }

    .holiday img{
        display: none;
    }
}