/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
/*body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}*/

.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.service-container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 200px; /* Flex-grow, flex-shrink, flex-basis */
    max-width: 350px;
    transition: transform 0.3s;
}

    .service:hover {
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    h2 {
        font-size: 2em;
    }

    .service {
        flex: 1 1 150px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5em;
    }

    .service {
        flex: 1 1 100px;
        max-width: 150px;
    }
}



.flcarousel {
    position: relative;
    max-width: 100%;
    max-height:80%;
    /*margin: auto;*/
    overflow: hidden;
   /* border: 2px solid #ccc;*/
   /* border-radius: 10px;*/
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
}

.flcarousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.flcarousel-item {
    min-width: 100%;
    text-align: center;
    position: relative;
}

    .flcarousel-item img {
        width: 90%;
        height: auto;
        /* border-bottom: 2px solid #ccc; */
    }

.flcarousel-desc {
    position: absolute;
    bottom: 5px;
    right: 5px;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.flcarousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

    .flcarousel-btn.prev {
        left: 100px;
    }

    .flcarousel-btn.next {
        right: 100px;
    }

