/* Alapértelmezett contenteditable elem stílus */
[contenteditable] {
    outline: 2px dotted rgba(196, 196, 196, 0.6); /* Vörös outline, ha a felhasználó közvetlenül rákattint */
    outline-offset: 2px;
}

[contenteditable]:hover {
    outline: 2px dotted yellow; /* Vörös outline, ha a felhasználó közvetlenül rákattint */
    outline-offset: 2px;
}

/* Fókuszált contenteditable, de csak akkor, ha valóban interaktív */
[contenteditable]:focus-visible {
    outline: 2px solid red; /* Kék outline, amikor a felhasználó interakcióba lép */
    outline-offset: 4px; /* Néhány pixellel távolabb helyezhetjük */
}

.news-content h1, 
.news-content h2, 
.news-content h3, 
.news-content h4, 
.news-content h5, 
.news-content h6{
    margin-block-start: 2.5rem;
}

.news-content table {
    font-size: 15px;
}

figcaption{
    font-size: 13px;
}

@media (min-width: 768px) {
    .news-content table {
        font-size: 17px;
    }

    figcaption{
        font-size: 15px;
    }
}





.base-vars {
    --color-primary: #34B8BE;
    --color-secondary: #FFFFFF;
    --color-text: #486061;
    --color-accent: #053739;
    --color-6be7c84: #00000000;
    --color-db45687: #F1F1FF;
    --color-ed721db: #C9C9C9;
    --color-e6eb748: #9FDCDF;
    --color-265d247: #FAFFFF;
    --color-5560d9b: #3D3D3D;
    --typography-primary-font-family: "Arimo";
    --typography-secondary-font-family: "Arimo";
    --typography-text-font-family: "Arimo";
    --typography-text-font-weight: 400;
    --typography-text-font-weight-bold: 700;

    color: var(--color-text);
    font-family: var(--typography-text-font-family), Sans-serif;
    font-weight: var(--typography-text-font-weight);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.main-menu .nav-item{
    font-size: 17px;
}

.main-menu .nav-item .dropdown-item{
    font-size: 17px;
}


.logo-img{
    height: 60px;
    width: auto;
}

.color-primary{
    color: var(--color-primary);
}
.dropdown-item:active {
    --bs-dropdown-link-active-bg: #34B8BE;

}

.bg-color-light {
    background-color: #F1F1FF;
}

body {
    background-color: #fff;
}

header {
    background-color: var(--color-accent);
}

.header-top span {
    font-size: 0.9rem;
    padding: 4px 0px;
}

.header-top span .icon,
.header-top span svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    color: var(--color-primary);
    fill: var(--color-primary);
}

.mobile-nav .offcanvas-header{
    background-color: var(--color-accent);
    padding: 16px;
}

.mobile-nav .nav-item{
    font-size: 20px;
}


.main-menu {
    /*height: 83px;*/
    padding: 1.3rem;
}

.bold {
    font-weight: var(--typography-text-font-weight-bold);
}

.btn {
    color: var(--color-secondary);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    border-radius: 50px 50px 50px 50px;
    padding: 10px 35px 10px 35px;
}

.btn.btn-secondary {
    color: var(--color-secondary);
    background-color: var(--color-accent);
    border-color: var(--color-secondary);
}

.btn.big{
    padding: 10px 40px;
    font-size: 21px;
}

.btn-cancel{
    color: var(--color-265d247);
    background-color: var(--color-5560d9b);
    border-color: var(--color-5560d9b);
}


.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn:hover,
.btn:active,
.btn:focus-visible {
    color: var(--color-accent);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    border: 1px solid;
}


header nav ul li {
    font-family: var(--typography-primary-font-family), Sans-serif;
    font-weight: var(--typography-text-font-weight-bold);
    font-size: 0.9rem;
    border-radius: 0px 0px 0px 0px;
    padding: 0px 15px 0px 15px;
}

header nav ul>li>.nav-link {
    color: var(--color-secondary);
}

header nav ul>li>.nav-link:hover,
header nav ul>li>.nav-link:focus,
header nav ul>li>.nav-link:hover {
    color: var(--color-primary);
}

/*--------- MENU MOBILE ---------*/
.menu-toggler {
    border: none;
    /* Eltávolítja a gomb keretét */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* Távolság a vonalak között */
    padding: 15px 25px;
}

.menu-hamburger-icon {
    display: block;
    width: 25px;
    /* Hamburger ikon szélessége */
    height: 3px;
    /* Hamburger ikon vastagsága */
    background-color: white;
    /* Fehér szín */
    border-radius: 2px;
    /* Lekerekítés, opcionális */
}

.menu-toggler:hover .menu-hamburger-icon,
.menu-toggler:active .menu-hamburger-icon {
    background-color: var(--color-accent);
}


/*------------ CAROSUEL --------*/

.carousel {
    height: calc(100vh - 130px);
    min-height: 450px;
}

.carousel-item {
    text-align: left;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}

.carousel-inner {
    height: 100%;
}

.carousel-item:hover:before{
    background-color: #3d3d3d91;
}
.carousel-item:before {
    content: " ";
    background-color: #3d3d3dbd;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.carousel-item .btn{
    margin: 10px 10px 10px 0px;
}

.carousel-item .carosuel-item-img-outter {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item .carosuel-item-img-outter::before {
    content: " ";
    background: black;
}

.carousel-item .carousel-caption {
    text-align: left;
    line-height: 1.3rem;
    height: 100%;
}

.carousel-caption {
    padding-top: 3.25rem;
}

.carosuel-caption-type .caption-type-text {
    font-size: 1rem;
    font-weight: var(--typography-text-font-weight-bold);
    color: var(--color-secondary);
    padding-left: 10px;

}

.carosuel-caption-type .caption-type-icon {
    width: 22px;
    height: 25px;
    color: var(--color-secondary);
    fill: var(--color-secondary);
}

.carousel-item .carosuel-h {
    font-size: 3rem;
    font-weight: var(--typography-text-font-weight-bold);
    line-height: 1.15em;
    margin-block-start: .5rem;
    margin-block-end: 1rem;
}

.carousel-item .carosuel-p {
    font-size: 1rem;
    font-size: 1.2rem;
    line-height: 2rem;
}

.carousel-caption .align-self-center {
    text-align: center;
}

.carosuel-caption-type {
    justify-content: center;
    /* Alapértelmezett középre igazítás */
}

@media (min-width: 768px) {

    .section-3 .carosuel-caption-type {
        justify-content: center;
    }

    /* 768px felett balra rendezés */
    .carosuel-caption-type {
        justify-content: flex-start;
    }

    .carousel-caption .align-self-center {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .carousel-item .carosuel-h {
        font-size: 4rem;
        line-height: 1em;
    }
}


@media (min-width: 1360px) {
    .carousel-item .carosuel-h {
        font-size: 6rem;
        line-height: 1em;
    }
}


/*------ SECTION 1 ---------*/

.section-1 {
    background-color: #F1F1FF;
    padding: 80px 0px;
    position: relative;
}

.section-1:before {
    content: " ";
    --background-overlay: '';
    background-image: url(../img/bg/bg6.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}


.box-wrapper {
    padding: 2em 2em 2em 2em;
    border-radius: 10px;
    background-color: white;
    position: relative;
    height: 100%;
}

.box-title {
    color: var(--color-accent);
    font-weight: var(--typography-text-font-weight-bold);
    font-size: 1.4rem;
}

.box-subtitle{
    color: var(--color-primary);
    font-weight: var(--typography-text-font-weight-bold);
    font-size: 1rem;
}

.box-subtitle.color-gray{
    color: #C9C9C9;
    font-weight: var(--typography-text-font-weight);
}

.bold{
    font-weight: var(--typography-text-font-weight-bold); 
}


.flex-item {
    text-align: center;
}


.flex-item {
    flex: 1 1 100%;
    /* Alapértelmezett szélesség mobil nézetben */
}

@media (min-width: 576px) {
    .flex-item {
        flex: 1 1 50%;
        /* Közepes nézetben 50% szélesség */
    }

    .flex-item {
        text-align: left;
    }

}

@media (min-width: 1360px) {
    .flex-item {
        flex: 1 1 25%;
        /* Nagy nézetben 25% szélesség */
    }
}

.box-wrapper{
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.box-wrapper .box-img {
    display: block;
}

.box-wrapper .box-img img {
    width: 72px;
    height: 72px;
}

.box-wrapper.with-img{
    padding: 0px;
    border-radius: 10px;
    overflow: hidden;
}

.box-wrapper.with-img .box-img{
    margin-top: -36px;
    margin-left: 20px;
    margin-bottom: 0px;
}

.box-wrapper.with-img .box-content{
    padding: 0px 30px 15px 30px;
}

.box-wrapper.team{
    padding: 0px;
    background: #9fdcdf;
    border-radius: 10px;
    overflow: hidden;
}

.box-wrapper.team img{
    width: 100%;
    height: auto;
}
.box-wrapper.team .box-content{
    padding: 0px 10px 20px 10px;
    text-align: center;
}

.box-wrapper.team-2{
    text-align: center;
}

.box-wrapper.team-2 .box-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.box-wrapper.team ul{
    display: none;
}

ul.styled {
    list-style-type: none; /* Alapértelmezett listaelem eltávolítása */
    padding-left: 0px; /* Baloldali behúzás a disc elhelyezéséhez */
    text-align: left;
}

ul.styled li{
    padding-left: 15px;
    position: relative;
    margin-bottom: 6px;
}

ul.styled li::before {
    content: "•"; /* Unicode karakterként adunk hozzá egy "•" pontot */
    /*font-size: 1.2em;*/ /* A pont méretének beállítása */
    color:var(--color-primary); /* A pont színének beállítása */
    display: inline-block; 
    width: 15px;
    margin-right: 0;
    position: absolute;
    left:0px;
}

.box-wrapper img.top-img{
    width: 100%;
    height: auto;
}

.btn-accent{
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.hover-primary:hover{
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/*------- SECTION 1 END --------*/

/*---- BASE ITEMS ----*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-start: .5rem;
    margin-block-end: 1rem;
}

h1 {
    color: var(--color-accent);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 3.4rem;
}

h2 {
    font-size: 2.4rem;
}

@media (max-width: 576px) {
    .carousel-item .carosuel-h{
        font-size: 2rem;
    }
    h1 {
        color: var(--color-accent);
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 2.4rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
}

/*---- BASE ITEMS END ----*/

.section-bg-gray{
    background-color: #F1F1FF;
}

/*------ SECTION 2 ---------*/

.section-2 {
    background: #fff;
    padding: 80px 0px;
    text-align: center;
    position: relative;
}

.section-2 .carosuel-caption-type .caption-type-text, .carosuel-caption-type.color-primary .caption-type-text {
    font-size: 1rem;
    font-weight: var(--typography-text-font-weight-bold);
    color: var(--color-primary);
    padding-left: 10px;

}

.section-2 .carosuel-caption-type .caption-type-icon, .carosuel-caption-type.color-primary .caption-type-icon {
    width: 22px;
    height: 25px;
    color: var(--color-primary);
    fill: var(--color-primary);
}

.section-2 .flex-item {
    flex: 1 1 50%;
    /* 50%-os szélesség */
}



.section-2-box-img {
    display: block;
}

.section-2-box-img img {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    margin-bottom: 15px;
}

.section-2 .btn-primary:hover {
    background-color: var(--color-accent);
    color: white;
}

/*------- SECTION 2 END --------*/
.special-duo-image {
    position: relative;
}

.special-duo-image-1 {
    width: 65%;
    height: auto;
    float: right;
    border-radius: 10px;
    min-width: 300px;
}

.special-duo-image-2-cnt {
    width: 45%;
    min-width: 230px;
    height: auto;
    position: absolute;
    top: 240px;
    left: 0px;
    border-radius: 10px;
    background-color: white;
    padding: 10px;
    box-sizing: border-box;

}

.special-duo-image-2-cnt img {
    width: 100%;
    height: auto;
    padding: 0px;
}

.section-2 .flex-inner-boxes .flex-item-inner {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 40px;
}


.section-2 .button-section{
    text-align: center;
}

@media (min-width: 576px) {
    .section-2 {
        text-align: left;
    }
    .section-2-box-img img{
        float: left;
        margin-bottom: 5px;
        width: 60px;
        height: 60px;
    }
    .section-2-box-wrapper{
        padding-right: 25px;
    }

    .section-2 .flex-inner-boxes .flex-item-inner {
        flex: 1 1 50%;
        /* 50%-os szélesség a belső elemeknél */
        max-width: 50%;
        text-align: left;
        margin-bottom: 10px;
    }

}

@media (min-width: 768px) {
    .special-duo-image-1 {
        width: 65%;
        min-width: 400px;
    }

    .special-duo-image-2-cnt {
        width: 45%;
        min-width: 220px;
        top: 310px;

    }

}

@media (min-width: 1200px) {
    .box-wrapper.team ul{
        display: block;
    }
}

@media (min-width: 1400px) {

    .section-2 .button-section{
        text-align: left;
    }

    .special-duo-image-2-cnt {
        width: 45%;
        min-width: 220px;
        top: 310px;

    }
}



/*------ SECTION 3 ---------*/

.section-3 {
    padding: 80px 0px;
    position: relative;
}

.section-3:before {
    content: " ";
    --background-overlay: '';
    background-image: url(../img/bg/bg6.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform: rotate(180deg);
    z-index: -1;
}

.section-3 .flex-item {
    flex: 1 1 100%;
    /* Alapértelmezett szélesség mobil nézetben */
}

.section-3 .flex-item:nth-child(1) .box-wrapper{
    padding: 0em 2em;
}
@media (min-width: 992px) {
    .section-3 .flex-item:nth-child(1) .box-wrapper{
        padding: 2em;
    }
}

.section-3 .box-wrapper {
    padding: 2em 2em 2em 2em;
    border-radius: 10px;
    background-color: white;
    position: relative;
    text-align: center;
    height: 100%;
    transition: all 0.25s linear;

}

.section-3 .box-wrapper.wrapper-bg-transparent{
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.section-3 .box-wrapper.wrapper-bg-transparent .carosuel-caption-type .caption-type-icon{
    color: var(--color-primary);
    fill: var(--color-primary);
}

.section-3 .box-wrapper.wrapper-bg-transparent .carosuel-caption-type .caption-type-text{
    color: var(--color-primary);
}

.section-3 .box-wrapper.wrapper-bg-transparent .box-title{
    font-size: 2.1rem;
}

.hover-accent:hover{
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: white;
}

.section-3 .box-wrapper.hover-accent:hover .box-title{
    color: white;
}

.section-3 .box-wrapper.wrapper-bg-dark{
    background-color: #9fdcdf85;
    text-align: center;
    padding: 40px;
    transition: all 0.25s linear;
}

.section-3 .box-wrapper.wrapper-bg-dark .box-title{
    font-size: 1.8rem;
}
.section-3 .box-wrapper.wrapper-bg-dark .caption-type-text{
    margin: 0px;
    padding: 0px;
}

.section-3 .flex-item {
    text-align: center;
}

@media (min-width: 576px) {
    
    .section-3 .flex-item {
        flex: 1 1 50%;
        /* Közepes nézetben 50% szélesség */
    }

    .section-3 .flex-item {
        text-align: left;
    }

}

@media (min-width: 1200px) {
    .section-3 .flex-item {
        flex: 1 1 25%;
        /* Nagy nézetben 25% szélesség */
    }
}

/*@media (min-width: 768px){
    .section-3 .box-wrapper.wrapper-bg-transparent{
        text-align: left;
    }
}*/

.section-3 .section-3-box-img {
    display: block;
}

.section-3 .section-3-box-img img {
    width: 72px;
    height: 72px;
}

.section-3 .d-flex .flex-item:nth-child(1){
    flex-basis: 100%;
    text-align: center;
}

.f50 .flex-item:first-child {
    flex-basis: 100%;
}

.f50 .flex-item:nth-child(2),
.f50 .flex-item:nth-child(3) {
    flex-basis: 100%;
}

@media (min-width: 576px) {
    .f50 .flex-item:nth-child(2),
    .f50 .flex-item:nth-child(3) {
        flex-basis: 50%;
    }
}

@media (min-width: 768px){
    .f50 .flex-item:first-child {
        flex-basis: 50%;
    }
    
    .f50 .flex-item:nth-child(2),
    .f50 .flex-item:nth-child(3) {
        flex-basis: 25%;
    }
} 



/*------- SECTION 3 END --------*/



/*------- SECTION 4 --------*/

.section-4{
    height: auto;
    padding-bottom: 80px;
}
.section-4 .flex-wrap{
    padding: 10px;
}
@media (min-width: 576px) {
    .section-4 .flex-wrap{
        margin: 0px -20px;
    }
}

@media (min-width: 1200px) {
    .section-4{
        height: 375px;
        margin-bottom: 415px;
    }
    .section-4.why-choose-us{
        margin-bottom: 230px;
    }
    .section-4.team{
        margin-bottom: 550px;
    }
}

.section-4{
    background-attachment: fixed;
    background-image: url("../img/bg/family_2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 80px;
}

.section-4::before {
    content: " ";
    background-color: var(--color-accent);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.section-4 .container{
    position: relative;
}

.section-4 .flex-item {
    flex: 1 1 100%;
    /* Alapértelmezett szélesség mobil nézetben */
}

@media (min-width: 576px) {
    .section-4 .flex-item {
        flex: 1 1 50%;
        /* Közepes nézetben 50% szélesség */
    }

    .section-4 .flex-item {
        text-align: left;
    }

}

@media (min-width: 1200px) {
    .section-4 .flex-item {
        flex: 1 1 25%;
        /* Nagy nézetben 25% szélesség */
    }
}

/*------- SECTION 4 END --------*/

.color-white{
    color: white;
}


/*------- SECTION 5 --------*/
.section-5{
    text-align: center;
    position: relative;
    padding-bottom: 80px;
}
/*.section-5:before, */
.section-bg-dotted-bottom:before {
    content: " ";
    --background-overlay: '';
    background-image: url(../img/bg/bg6.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform: scaleY(-1); /* Függőleges tükrözés */
    z-index: -1;

}

.section-5 .carosuel-caption-type {
    justify-content: center;
}


.section-5 .flex-item {
    flex: 1 1 100%;
    /* Alapértelmezett szélesség mobil nézetben */
}
.section-8 .flex-item, .section-5 .flex-item{
    max-width: 400px;
}
@media (min-width: 576px) {
    .section-5 .flex-item {
        flex: 1 1 50%;
    }

    .section-5 .flex-item {
        text-align: left;
    }

}

@media (min-width: 761px) {
    .section-5 .flex-item {
        flex: 1 1 50%;
        /* Nagy nézetben 25% szélesség */
    }
}

@media (min-width: 992px) {
    .section-5 .flex-item {
        flex: 1 1 25%;
        /* Nagy nézetben 25% szélesség */
    }
}

.flex-item a{
    text-decoration: none;
    color: #486061;
}

.section-6{
    background-attachment: fixed;
    background-image: url("https://dkkit.rometheme.pro/dortgage/wp-content/uploads/sites/97/2024/01/TG3UXS8.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0px;
    text-align: center;
}

.section-6::before {
    content: " ";
    background-color: var(--color-accent);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.section-6 .container{
    position: relative;
}

.section-7{
    padding: 80px 0px;
    position: relative;
}

.section-7 .flex-item:first-child {
    text-align: center;
    flex-basis: 20%;
}

.section-7 .flex-item:nth-child(2) {
    flex-basis: 80%;
}

.section-7 .flex-item-inner {
    flex-basis: 100%;
}

@media (min-width: 576px) {
    .section-7 .flex-item-inner {
        flex-basis: 50%;
    }
}

@media (min-width: 768px) {
    .section-7 .flex-item-inner {
        flex-basis: 33%;
    }
}


@media (min-width: 992px) {
    .section-7 .flex-item:first-child {
        text-align: left;

    }
}

.news-item{
    box-shadow: none;
    text-align: center;
}


.news-item .box-date{
    text-align: right;
    margin-top: -45px;
    margin-right: 10px;
}



.news-item .box-date span{
    padding: 10px;
    border-radius: 10px;
    background-color: var(--color-primary);
    color:white;
    font-weight: bold;
    display: inline-block;
    text-align: left;
}


.section-8{
    padding: 80px 0px;
    position: relative;
}
.section-8:before {
    content: " ";
    --background-overlay: '';
    background-image: url(../img/bg/bg6.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    transform: rotate(180deg);
}

footer{
    background-color: #053739;
    padding: 80px 0px;
    color: white;
}

footer .social-icon{
    
    color: white;
    fill: white;
    display: inline-block;
}

footer .social-icon a{
    display: block;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    margin-right: 5px;
}

footer .social-icon svg{
    width: 20px;
    height: 20px;
    fill: #053739;
}

footer .social-icon a:hover{
    background-color: var(--color-primary);
    cursor: pointer;
}

footer .social-icon a:hover svg{
    fill: white;
}

footer a {
    color: #C9C9C9;
    text-decoration: none;
}

footer a:hover {
    color: white;
}
 
footer h5{
    font-size: 1rem;
}

footer input.form-control{
    padding: 10px;
    border-radius: 10px;
}

footer button.form-control{
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0px 0px 0px !important;
}

.form-control:focus, .form-select:focus {
    border-color: #34B8BE;
    box-shadow: 0 0 0 .25rem rgba(52, 184, 190,.25); 
}


.news-content .news-content-title{
    color: var(--color-accent);
    font-weight: var(--typography-text-font-weight-bold);
    font-size: 3.4rem;
}

.news-content{
    font-size: 1.2rem;
}

.news-content p,.news-content ul,.news-content ol {
    font-size: 1.2rem;
}


.news-content blockquote {
    border-left: 5px solid var(--color-primary); /* Kék vonal a bal oldalon */
    padding: 10px 10px 10px 20px;             /* Kis távolság a szöveg és a vonal között */
    font-style: italic;             /* Dőlt betűk */
    background-color: #f8f9fa;     /* Világos háttér */
}

.news-content .sticky-element{
    background-color: #f8f9fa;
    padding: 10px 20px 20px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Kisebb árnyék, hogy kiemelkedjen */
    z-index: 10; /* Biztosítja, hogy a többi elem fölött legyen */
}


/*.sticky-form{
    border:2px solid var(--color-accent);
}*/

.active-sticky {
    position: sticky;
    top: 0;
}



.featured-image{
    position: relative;
    width: 100%;
    display: block;
    border-radius: 10px 10px 10px 0px;
    overflow: hidden;
    margin-bottom: 30px;
    margin-bottom: 15px;;
    max-height: 450px;
}

.featured-image img{
    width: 100% !important;
    height: auto !important;

}

.featured-image h1{
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px 10px 10px 5px;
    margin: 0px;
    max-width: 80%;
    background-color: white;
    border-radius: 0px 10px 0px 0px;

    color: var(--color-accent);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.7rem;

}


@media (min-width: 768px) {
    .featured-image h1{
        padding: 20px 20px 20px 5px;
        font-size: 2.4rem;
        line-height: 2.4rem;
    }
}


.modal-header.bg-accent{
    background-color: var(--color-accent);
    color: white;
}

.modal-header.bg-accent .btn-close{
    filter: invert(100%);
}

.modal-title{
    margin: 0px;
}

.break-text {
    white-space: pre-line; 
}

@media (min-width: 992px) {
    .break-lg-text {
        white-space: pre-line;
    }
}

@media (min-width: 768px) {
    .break-md-text {
        white-space: pre-line;
    }
}


@media (max-width: 768px) {
    .btn.big{
        font-size: 17px;
    }
}


p{
    font-size: 18px;
}

p.section-2-box-description{
    font-size: 16px;
}

.service-tile .box-wrapper{
    position: relative;
    padding-bottom: 80px;
}

.service-tile .box-wrapper button{
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
}


/** * SECTION 2 EMBED CALC
 */
/*.section-2.section-embed-calc .flex-item:first-child{
    flex: 1 1 65%;
}

.section-2.section-embed-calc .flex-item:last-child{
    flex: 1 1 25%;
}*/
.section-2.section-embed-calc .flex-item:last-child{
    text-align: center;
}
.section-2.section-embed-calc .flex-item:last-child .hitelnet-calculator{
   display: inline-block;
}
/*.section-2.section-embed-calc .section-2-box-wrapper img{
    display: none;
}*/

.hitelnet-calculator.fixed {
    top: 42px;
    right: 0px;
    display: inline-block;
    position: fixed;
    z-index: 10000;
    width: 351px !important;
    height: 615px !important;
    border-radius: 22px;
    overflow: hidden;
}

.cf-turnstile{
    text-align: center;
}
.spinner-border{
    font-size: 10px;
    width: 20px;
    height: 20px;
}

.protected-p, .protected-e{
    word-break: break-all;
}

.single-post-share{
    margin-bottom: 15px;
}

.single-post-share.sticky-form
{
    text-align: left;
    margin-left: -60px;
}
.single-post-share li{
    list-style: none;
    padding: 0px;
    margin: 5px 0px;
}

.single-post-share ul{
    text-align: left;
    list-style: none;
    padding: 0px;
    margin: 0px 0px;
    display: inline-block;
}

/*.single-post-share{
    position: fixed;
    margin-left: -60px;
}*/

.single-post-share li{
    width: 50px;
    height: 50px;
    display:inline-block;
}


.single-post-share li a{
    display: block;
    width: 50px;
    height: 50px;
    background: #e9e9e9;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
}

.single-post-share li a:hover{
    background: var(--color-primary);
    transition: all 0.3s ease-in-out;
}

.single-post-share-col{
    flex: 0 0 auto;
    width: 0px;
    padding: 0px;
}
.cf-turnstile{
    height: 80px;
}