@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #707070;
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 1712px;
}

h1 {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 20px;
}

@media (max-width: 1110px) {
    h1 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
    }
}

#headline{
    margin-top: 68px;
    position: relative;
}

h2 {
    color: #CC3928;
    font-size: 20px;
    font-weight: 700;
}

hr {
    max-width: 56px;
    height: 3px;
    background: #CC3928;
    opacity: 1;
    border: 0;
    margin: 15px auto 30px auto;
}

img.ribbon {
    position: absolute;
    left: -80px;
    bottom: -50px;
    z-index: 9999;
}


@media (max-width: 1400px) {
    img.ribbon {
        max-width: 80%;
    }
}


@media (max-width: 991px) {
    img.ribbon {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 15px auto;
    }

    .hl-image{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.carousel-indicators button, .carousel-indicators [data-bs-target] {
    background-color: rgba(215, 36, 22, 0.5);
    border: none;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #D72416;
}

.video-container {
    position: relative;
    cursor: pointer;
}

.video-container::after {
    content: '▶'; /* Play ikon */
    font-size: 50px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    display: none; /* Alapértelmezés szerint rejtett */
}

.video-element.paused + .video-container::after {
    display: block; /* Ha a videó szünetel, megjelenik */
}


#content {
    min-height: 500px;
    background: rgb(239, 239, 239);
    background: -moz-linear-gradient(180deg, rgb(239, 239, 239) 0%, rgb(239, 239, 239) 50%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(239, 239, 239) 75%, rgb(239, 239, 239) 100%);
    background: linear-gradient(180deg, rgb(239, 239, 239) 0%, rgb(239, 239, 239) 50%, rgb(255, 255, 255) 75%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#EFEFEF", GradientType=1);
}

.flip-container {
    perspective: 1000px;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -o-perspective: 1000;
}

.flip-container:hover .flipper, .flip-container.hover .flipper {
    transform: rotateY(180deg);
}

.flip-container, .front, .back {
    width: 100%;
    min-height: 468px;
}

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.front, .back {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: #fff;
}


.front {
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}

.front img {
    max-width: 233px;
}

.back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}
