/* szolgaltatas-slider.css */

.szolgaltatas-slider-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    max-width: 100%;
}

.szolgaltatas-slider-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.szolgaltatas-slide {
    display: flex !important;
    align-items: flex-start !important;
    width: 100%;
    gap: 10px !important;
}

.szolgaltatas-text {
    flex: 1.5;
    background-color: #151d28;
    color: #fff;
    border-radius: 35px 35px 35px 35px;
    height: 785px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.szolgaltatas-content {
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.szolgaltatas-text h2 {
    margin-bottom: 25px;
    color: #FFFFFF;
    font-family: "Space Grotesk", Sans-serif;
    font-size:45px;
    font-weight: 500;
}

.szolgaltatas-text p {
    font-family: "Inter", Sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.69px;
    width: 100%;
}

.szolgaltatas-image {
    flex: 1;
    height: 785px;
    background-size: cover;
    background-position: center;
    border-radius: 35px;
    margin-left: 20px;
}

.szolgaltatas-slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    padding: 35px;
    border-radius: 0 0 35px 35px;
    width: 100%;
    z-index: 999;
}

.szolgaltatas-link {
    margin: 0;
    color: #FFFFFF;
    font-family: "Space Grotesk", Sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.slick-prev, .slick-next {
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.szolgaltatas-navigation-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.slick-prev {
    background-color: #888;
}

.slick-next {
    background-color: #ff5722;
}

.slide-counter {
    color: #FFFFFF;
    font-family: "Space Grotesk", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.entry {
    padding: 6px;
    justify-content: center;
    gap: 8px;
    border-radius: 300px;
    background: #fe6c3b;
    align-items: center;
    height: 53px;
    width: 230px;
    display: flex;
    flex-direction: row;
}

.entry a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
}

@media (max-width: 768px) {
    .szolgaltatas-slide {
        flex-direction: column-reverse;
    }

    .szolgaltatas-content {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .szolgaltatas-text {
        flex: none;
        padding: 0px;
        height:  auto;
        min-height: auto;
        border-radius: 0 0 35px 35px;
    }

    .szolgaltatas-image {
        flex: none;
        height: 350px;
        width: 100%;
        border-radius: 35px 35px 0 0;
        margin-left: 0;
    }

    .szolgaltatas-slider-navigation {
        justify-content: space-between;
        width: 100%;
        border-radius: 0px 0px 35px 35px;
        margin-top: 20px;
    }

    .szolgaltatas-text h2 {
        font-size: 30px;
    }

    .szolgaltatas-text p {
        font-size: 18px;
        line-height: 30px;
    }

    .entry a {
        font-size: 15px;
    }

    .entry {
        width: 100%;
        max-width: 230px;
    }
}