* {
    box-sizing: border-box;
}

h1 {
    font-size: 45px !important;
    font-weight: 900 !important;
    max-width: 83%;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    padding-bottom: 40px;
}

p {
    font-weight: 400;
}


body {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.foszekcio {
    padding: 100px 0;
}

.szekcio {
    max-width: 1453px;
    margin: 0 auto;        /* Középre igazítás */
    scroll-margin-top: 140px;
}

/* ************************************************************************** BUTTONS ************************************************************************** */

.cta {
    width: 165px;
    height: 58px;
    font-size: 16px;
    border-radius: 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: inline-flex;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.white-btn {
    background-color: white;
    color: #191919;
    border: 1px solid #133159;
}

.blue-btn {
    color: white;
    background-color: #133159;
    margin-top: 35px;
}

.cta:hover {
     background: linear-gradient(to bottom, #253D66 10%, #2980b9 100%);
     border: 0px;
     color: white;
}

.menu-btn {
    width: 120px;
    height: 40px;
    border-radius: 0px;
}

.fejlec-btn {
    margin-right: 15px;
}

/* ************************************************************************** MENÜSOR ************************************************************************** */

.navbar {
    background-color: #133159 !important;
    color: white;
    padding: 15px 20px;
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.custom-navbar-container {
    padding: 0px !important;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: auto 0;
}

.nav-link {
    text-decoration: none;
    color: rgb(198, 198, 198) !important;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.nav-link.active {
    font-weight: 600 !important;
    color: white !important;
}

.nav-item {
    display: inline-block;
    margin: auto 0px;

}

/* HAMBURGER MENÜ */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}


/* ************************************************************************** FEJLÉC ************************************************************************** */

.header {
    background-image: url("img/fejlec_hatter.jpg");
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center; /* Középre igazítja a szekciót */
}

.fejlec {
    display: flex;
    justify-content: space-between; /* Balra és jobbra helyezi az elemeket */
    align-items: center; /* Az alsó részhez igazítja */
    width: 100%;
    position: relative;
}

.fejlec-szovegdoboz {
    max-width: 40%;
    padding: 255px 0;
    margin-top: 80px;
}

#fejlec-alszoveg {
    font-size: 20px !important;
    font-weight: 500 !important;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 83%;
}

#esernyo {
    display: flex;
    align-items: flex-end; /* Az alsó részhez igazítja */
    width: 50%;
}

#esernyo img {
    width: 950px; /* Az esernyő mérete */
    height: auto; /* Megtartja az arányokat */
    position: absolute;
    bottom: 0px;
    right: 0px;
/*     right: -100px; */
}



/* ************************************************************************** VÁLLALATI ÉS LAKOSSÁGI BIZTOSÍTÁSOK ************************************************************************** */


.biztositas {
    display: flex;
    justify-content: space-between; /* Balra és jobbra helyezi az elemeket */
    width: 100%;
    gap: 70px; /* A benne lévő child elemek közti távolság */
}

.size-50 {
    width: 50%;
}

.biztositas-img-doboz {
    height: 860px; /* Fix magasság */
    overflow: hidden; /* Kivágja a kilógó részeket */
    display: flex; /* Középre igazításhoz, ha kell */
    justify-content: center; 
    align-items: center;
}

.biztositas-img {
    width: 100%; /* Kitölti a szélességet */
    height: 100%; /* Kitölti a magasságot */
    object-fit: cover; /* Kép méretezés torzulás nélkül */
/*     width: 100%;
    height: auto; */
}

.biztositas-lista-doboz {
    border-bottom: 2px solid lightgray; /* Szürke vonal az egész alá */
    padding-bottom: 10px; /* Kis távolság a vonal és az alatta lévő szöveg között */
}

.biztositas-lista {
    display: flex;
    flex-wrap: wrap; /* Ha nem fér ki egy sorba, akkor új sorba tör */
    gap: 10px; /* Távolság a linkek között */
    padding-inline-start: 0px; /* Hogy ne legyen paddig a lista elemek körül */
}

.biztositas-tipus {
    list-style-type: none;
}

.biztositas-link {
    text-decoration: none; /* Alapértelmezett aláhúzás eltávolítása */
    font-weight: 400;
    color: #999999;
    padding-right: 5px;
    display: inline-block;
    line-height: 0.5;
    cursor: pointer;
}

/* .biztositas-link:hover {
    color: #0f0f0f;
} */


.biztositas-link-active {
    color: #253D66; /* Aktív elem kiemelése */
    font-weight: bold;
}

.biztositas-leiras {
    margin-bottom: 0px;
}

#vallalati-biztositas-leiras {
    padding-top: 50px;
    opacity: 0; /* Alapból láthatatlan */
    transition: opacity 0.5s ease-in-out; /* 0.5 másodperc alatt áttűnés */
}

#vallalati-biztositas-leiras.show {
    opacity: 1; /* Láthatóvá válik */
}

#lakossagi-biztositas-leiras {
    padding-top: 50px;
    opacity: 0; /* Alapból láthatatlan */
    transition: opacity 0.5s ease-in-out; /* 0.5 másodperc alatt áttűnés */
}

#lakossagi-biztositas-leiras.show {
    opacity: 1; /* Láthatóvá válik */
}

.lakossagi-foszekcio {
    padding-top: 0px;
}


/* ************************************************************************** SZÁMOK SZEKCIÓ ************************************************************************** */


.szamok-foszekcio {
    background-color: #133159;
    margin-bottom: 0px !important;
    padding: 20px 0px !important;
}

.szamok-szekcio {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
}

.szamok-doboz {
    padding: 30px 0 35px;
    flex: 20%;
}

.nagy-szam {
    color: #248ed5;
    font-size: 50px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.nagy-szam:hover {
    text-shadow: 0 0 5px #3a9ddf, 0 0 10px #3a9ddf, 0 0 20px #3a9ddf, 0 0 20px #3a9ddf, 0 0 20px #3a9ddf, 0 0 30px #3a9ddf, 0 0 30px #3a9ddf;
    transition: 0.3s;
    color: #19699f;
}

.kis-szam {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}


/* ************************************************************************** SZOLGÁLTATÁSAINK SZEKCIÓ ************************************************************************** */

.szolgaltatasaink-foszekcio{
    background-color:#F3F3F3;
    margin-top: 0px;
    padding-top: 100px;
    margin-bottom: 0px;
    padding-bottom: 100px;
}

.szolgaltatasaink {
    text-align: center;
}

.szolgaltas-fodoboz {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 0px;
}

.szolgaltatas-doboz {
    text-align: center;
    margin: 0px;
    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
    padding: 25px;
    transition: background-color 0.3s ease-in-out, 
    color 0.3s ease-in-out, 
    transform 0.3s ease-in-out, 
    box-shadow 0.3s ease-in-out;
}

.szolgaltatas-doboz:hover {
    background-color: #133159; /* Kék háttér hover esetén */
    color: white !important; /* Fehér szöveg */
    transform: translateY(-5px); /* Kicsit kiemelkedik */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Árnyék erősödik */
}

.szolgaltatas-doboz:hover p.szolgaltatas-cim {
    color: white !important;
}

.szolgaltatas-doboz:hover .szolgaltatas-img {
    filter: brightness(0.5) invert(1); /* Képek színe megváltozik fehérre */
}

.szolgaltatas-img {
    height: auto;
    width: 70px;
}

.szolgaltatas-cim {
    padding: 20px 0 10px;
    color: #253D66;
    font-weight: 700;
}


/* ************************************************************************** REFERENCIÁK SZEKCIÓ ************************************************************************** */

.referenciak {
    text-align: center;
}

.referencia-doboz {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 60px;
    align-items: center;
    padding-top: 30px;
}

.referencia-img {
    height: 80px; /* Az összes logó azonos magasságú lesz */
    width: auto; /* Az arányok megmaradnak */
    max-width: 100%; /* Nem lépi túl a konténer szélességét */
    object-fit: contain; /* A kép belefér a megadott méretbe anélkül, hogy torzulna */
    margin: auto;
}


/* ************************************************************************** KÁRBEJELENTŐ SZEKCIÓ ************************************************************************** */

.karbejelento-foszekcio {
    background-image: url("img/fejlec_hatter.jpg");
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center; /* Középre igazítja a szekciót */
}

.karbejelento-cim {
    text-align: center;
}

.karbejelento-form-doboz {
    max-width: 100%;
    background: white;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.karbejelento-h2 {
    color:#133159;
    font-weight: 900 !important;
    margin: auto;
    padding: 100px 0 10px;
}

.karesemeny-datum {
    margin-top: 10px;
}


/* ************************************************************************** KAPCSOLAT SZEKCIÓ ************************************************************************** */

.kapcsolat-foszekcio {
    background-color: #133159;
    color: white;
    margin-top: 0px;
    padding-top: 100px;
    margin-bottom: 0px;
    padding-bottom: 100px;
}

.kapcsolat {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.kapcsolat-adatok-doboz {
    max-width: 23%;
    padding-right: 0px;
}

.map-container {
    width: 27%;
}

#map {
    width: 100%;
    height: 100%;
}

.contact-form-doboz {
    max-width: 45%;
    background: white;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.ceg-adatok {
    padding-bottom: 86px;
}

input, textarea {
    width: 100%;
    padding: 8px 10px;
    margin: 4px 0 !important;;
    border: 0px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #F3F3F3;
}

textarea {
    height: 120px;
    resize: none;
}

.bold-kek-p {
    color: #133159;
    font-weight: 800;
    margin-bottom: 0px;
    font-size: 18px;
}

.form-p {
    color: black;
}

::placeholder {
    color: #B2B2B2;
    opacity: 1; /* Firefox */
  }

  .kuldes-doboz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .kuldes-btn {
    margin-top: 10px !important;
  }

.checkbox-doboz {
    color: black;
    width: 100%;
    margin: auto 0;
}

.checkbox-doboz a {
    color: #496BA4;
}


/* ************************************************************************** LÁBLÉC SZEKCIÓ ************************************************************************** */

.lablec-foszekcio {
    background-color: #191919;
    color: white;
    margin-top: 0px;
    padding-top: 20px;
    margin-bottom: 0px;
    padding-bottom: 20px;
}

.lablec {
    display: flex;
    justify-content: space-between;

}

.lablec a {
    color: white;
    text-decoration: none;
}

.lablec p, a {
    margin-bottom: 0px !important;
}


.g-recaptcha {
    margin-top: 10px;
  }




/* ************************************************************************** RESZPONZIVITÁS MENÜ ************************************************************************** */


@media (min-width: 1400px) {
    .custom-navbar-container {
        max-width: 90% !important;
    }
}

/* **RESPONSIVE DESIGN** */
@media (max-width: 1616px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f2645;
        text-align: center;
        padding: 0;
        gap: 8px !important;

        /* Alapállapot: teljesen elrejtve */
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    /* Amikor a menü aktív (lenyílik) */
    .nav-links.show {
        transform: scaleY(1);
        opacity: 1;
        padding: 25px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
}










/* ************************************************************************** RESZPONZIVITÁS FEJLÉC SZEKCIÓ ************************************************************************** */








@media only all and (min-width: 1337px) and (max-width: 1616px) {
    .szekcio {
        width: 1216px;
    }
    .fejlec-szovegdoboz {
        padding: 118px 0;
    }
    #esernyo img {
        width: 650px;
    }
    h1 {
        font-size: 40px !important;
    }
    #fejlec-alszoveg {
        font-size: 17px !important;
    }
    .custom-navbar-container {
        max-width: 1216px !important;
    }
    .szolgaltas-fodoboz {
        grid-template-columns: repeat(3, 1fr); /* 3 oszlopos elrendezés */
    }
    #bemutatkozas-img {
        width: 586px !important;
    }
    }


    @media only all and (min-width: 1050px) and (max-width: 1336px) {
    .szekcio {
        width: 900px;
    }
    .fejlec-szovegdoboz {
        max-width: 52%;
        padding: 82px 0;
    }
    #esernyo img {
        width: 557px;
    }
    h1 {
        font-size: 37px !important;
    }
    #fejlec-alszoveg {
        font-size: 17px !important;
    }
    .custom-navbar-container {
        max-width: 900px !important;
    }
    .szolgaltas-fodoboz {
        grid-template-columns: repeat(3, 1fr); /* 3 oszlopos elrendezés */
    }
    .biztositas-img-doboz {
        height: 379px !important;
    }
    }


    @media (max-width: 1336px) {
    .foszekcio {
    padding: 50px 0;
    }
    .szekcio {
        scroll-margin-top: 115px;
    }
    .szolgaltatasaink-foszekcio {
        padding: 50px 0;
    }
    .lablec-foszekcio{
        padding: 20px 0;
    }
    .biztositas {
        display: flex;
        gap: 0px;
    }
    .size-50 {
        width: 100%;
    }
    .vallalati-szovegdoboz {
        padding-top: 30px;
    }
    .lakossagi {
        flex-direction: column-reverse;
    }
    .vallalati {
        display: block;
    }
    .szamok-doboz {
        padding: 0;
    }
    .nagy-szam {
        font-size: 35px;
    }
    .kis-szam {
        font-size: 16px;
        line-height: 1.3;
    }
    .kapcsolat-adatok-doboz {
        max-width: 33%;
    }
    .map-container {
        width: 65%;
    }
    #map {
        width: 100%;
        height: 100%;
    }
    .contact-form-doboz {
        max-width: 100%;
        margin: 40px auto 0px;
    }
    .bemutatkozas-doboz {
        display: block !important;
        text-align: center !important;
    }
    #bemutatkozas-img {
        width: 700px !important;
        padding-bottom: 50px !important;
    }
    .bemutatkozas-szoveg-doboz {
        width: 100% !important;
    }
    .biztositas-leiras {
        padding-top: 15px !important;
    }
    .lakossagi-foszekcio {
        padding-top: 0px !important;
    }
    }




    @media only all and (min-width: 650px) and (max-width: 1049px) {
    .szekcio {
        width: 600px;
    }
    .custom-navbar-container {
        max-width: 600px !important;
    }
    .szolgaltas-fodoboz {
        grid-template-columns: repeat(2, 1fr); /* 3 oszlopos elrendezés */
    }
    .biztositas-img-doboz {
        height: 304px;
    }
    .referencia-doboz {
        grid-template-columns: repeat(2, 1fr);
    }
        #bemutatkozas-img {
        width: 700px !important;
        padding-bottom: 50px !important;
    }
    }



    @media (max-width: 1049px) {
    .fejlec {
        display: block;
    }
    .fejlec-szovegdoboz {
        text-align: center;
        padding: 66px 0 50px;
        margin: 80px auto 0;
        max-width: 100%;
    }
    .fejlec-szovegdoboz h1, p {
        margin: auto;
    }
    #esernyo {
        width: 100%;
    }
    #esernyo img {
        width: 100%;
        position: relative;
    }
    .szamok-doboz {
        padding: 18px 0;
        flex: 30%;
    }
    .lablec {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    #bemutatkozas-img {
        width: 100% !important;
    }
    .szeles-logo {
        height: 44px !important;
    }
    } 







    @media only all and (max-width: 649.99px) {
    .szekcio {
        width: 100%;
        padding: 0 30px;
    }
    .szolgaltas-fodoboz {
        grid-template-columns: repeat(1, 1fr); /* 3 oszlopos elrendezés */
    }
    .biztositas-img-doboz {
        height: 250px;
    }
    #esernyo img {
        width: 100%;
    }
    .referencia-doboz {
        grid-template-columns: repeat(1, 1fr);
    }
    .kapcsolat-adatok-doboz {
        max-width: 100%;
        text-align: center;
    }
    .ceg-adatok {
        padding-bottom: 10px;
    }
    .map-container {
        width: 100%;
        padding-top: 20px;
    }
    .referencia-doboz {
        gap: 50px;
        padding-top: 10px;
    }
    .referencia-img {
        height: 58px;
    }
    .custom-navbar-container {
        width: 100% !important;
        padding: 0 40px !important;
    }
    h1 {
        font-size: 35px !important;
        max-width: 100%;
    }
    #fejlec-alszoveg {
        font-size: 16px !important;
        max-width: 100%;
    }
    h2 {
        font-size: 26px !important;
    }
    #BR-logo {
        height: 40px;
    }
    .szamok-szekcio {
        gap: 10px;
    }
    .map-container {
        height: 350px;
    }
    .g-recaptcha {
        transform: scale(0.7);
        transform-origin: 0 0;
      }
    }


    @media only all and (max-width: 430.99px) {
    h1 {
        font-size: 30px !important;
    }
    .fejlec-szovegdoboz {
        margin: 35px auto 0;
    }
    .fejlec-btn {
        width: 119px;
        height: 50px !important;
        font-size: 14px !important;
        margin: 2px;

    }
    .fejlec-szovegdoboz {
        padding: 65px 0 22px; 
    }
    .biztositas-link {
        line-height: 1.2;
    }
    .nagy-szam {
        font-size: 27px;
    }
    .kis-szam {
        font-size: 14px;
    }
    #fejlec-alszoveg {
        padding-bottom: 5px;
        max-width: 100%;
    }
    .lablec {
        font-size: 14px;
    }
    }


    /* ************************************************************************** ADATKEZELÉSI TÁJÉKOZTATÓ ************************************************************************** */

    .ac-1 {
        color: #0f2645;
        font-weight: 800;
        padding: 20px 0 10px;
    }

    .ac-2 {
        color: #202020;
        font-weight: 600;
        padding: 0;
    }

    .ac-table {
        background-color: #e7e7e7;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    td {
        padding: 10px;
    }

    .ac-table-cim {
        font-weight: 600;
    }

    .padding-bot-h2 {
        padding-bottom: 40px;
    }


    /* ************************************************************************** ÜZENET KÜLDÉS ************************************************************************** */

    .uzenet {
        text-align: center;
    }

    /* ************************************************************************** COOKIE ABLAK ************************************************************************** */

    .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #091729;
        
        color: white;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 14px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

    .cookie-p {
        font-weight: 700;
        margin: 0px !important;

    }
    
    .cookie-banner a {
        color: #4a88d8;
        text-decoration: underline;
    }
    
   
    .cookie-btn {
        margin: 0px !important;
    }


    /* ************************************************************************** BEMUTATKOZÁS ************************************************************************** */

    .bemutatkozas-doboz {
        display: flex;
        justify-content: space-between;
        padding-top: 70px;
        
    }

    .bemutatkozas-kep-doboz {
        width: 50%;
    }

    .bemutatkozas-szoveg-doboz {
        width: 50%;
    }

    #bemutatkozas-img {
        position: relative; /* Szükséges a mozgatáshoz */
        transform: translateX(-100vw); /* A teljes képernyő szélességének megfelelően balra tolva */
        animation: slideIn 0.7s ease-out forwards;
        height: auto;
        width: 700px;
    }

    @keyframes slideIn {
        from {
            transform: translateX(-100vw);
        }
        to {
            transform: translateX(0);
        }
    }

