@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.fbs-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fbs-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fbs-slider-slide.active {
    opacity: 1;
}

.fbs-slider-content {
    position: absolute;
    z-index: 2;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fbs-slider-slide.active .fbs-slider-content {
    opacity: 1;
    transform: translateY(0);
}

.fbs-position-left {
    left: 0;
    bottom: 0;
    text-align: left;
    padding: 30px;
}

.fbs-position-center {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.fbs-position-right {
    right: 10%;
    text-align: right;
}

.fbs-slider-title {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fbs-slider-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.fbs-slider-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.fbs-slider-button:hover {
    background-color: #555;
}

.fbs-slider-navigation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.fbs-slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.fbs-slider-dot.active {
    background-color: #fff;
}

/* Pile er fjernet */