@font-face {
    font-family: "OpenSans Light";
    font-display: swap;
    src: url(../fonts/OpenSans-Light.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Regular";
    font-display: swap;
    src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Semibold";
    font-display: swap;
    src: url(../fonts/OpenSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Bold";
    font-display: swap;
    src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Sumana-Regular";
    font-display: swap;
    src: url(../fonts/Sumana-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Sumana-Bold";
    font-display: swap;
    src: url(../fonts/Sumana-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat-Regular";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Charm-Bold";
    font-display: swap;
    src: url(../fonts/Charm-Bold.ttf) format("truetype");
}

:root {
    --custom-blue: #1b3556;
    --custom-lightblue: #3a71ba;
    --custom-cream: #cfb193;
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--custom-blue);
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: var(--custom-blue);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: var(--custom-blue);
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--custom-lightblue);
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: "Opensans Bold";
    text-transform: uppercase;
}

.static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
}

.static-content img {
    max-width: 100%;
}

.static-content ul {
    columns: 2;
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 45px;
    display: inline-block;
}

.static-content li::before {
    content: "";
    background-color: var(--custom-blue);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

.navbar-nav .active-link {
    color: #05b2ff;
}

a,
body {
    font-family: "OpenSans Regular";
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

header,
footer {
    background-color: var(--custom-blue);
    color: #fff;
}

header,
header a {
    font-family: "OpenSans Semibold";
    font-size: 16px;
}

header {
    padding-top: .2em;
    padding-bottom: .2em;
    border-bottom: 1px solid var(--custom-lightblue);
}

.language-menu a,
.nav-link {
    text-transform: uppercase;
    color: #fff;
}

.language-menu a:hover,
.nav-link:hover {
    color: #fff;
}

.nav-link {
    padding-right: 1em !important;
    padding-left: 1em !important;
    margin-right: 1em !important;
    margin-left: 1em !important;
}

.language-menu a.current {
    color: #3a71ba;
}

.navbar-toggler {
    border-color: #8d9aab;
}

#carouselTop img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.carousel-caption {
    text-align: left;
    font-family: "OpenSans Semibold";
    bottom: unset;
    top: 27%;
    width: 685px;
}

.carousel-text-2 {
    font-family: "OpenSans Light";
    color: var(--custom-cream);
}

.blue-button,
.buildings a,
.carousel-caption a {
    font-family: "OpenSans Semibold";
    background-color: #023b62;
    color: #fff;
    padding: .6em 3em;
    font-size: 16px;
    margin-top: 1em;
    display: inline-block;
    border: 0;
}

.blue-button:hover {
    color: #fff;
}

.blue-button {
    margin: 0;
}

.carousel-caption h1 {
    font-size: 72px;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: 24px;
}

.small-title,
.content h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "OpenSans Bold";
    margin-bottom: 1.5em;
}

.grey-block {
    background-color: #f7f8f9;
}

.general-padding {
    padding-top: 5em;
    padding-bottom: 5em;
}

.buildings img {
    width: 100%;
    margin-bottom: 15px;
}

.buildings a {
    position: absolute;
    z-index: 5;
    width: 220px;
    padding-left: 0em;
    padding-right: 0em;
    text-align: center;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.darkgrey-block {
    background-color: #dedfdf;
}

.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-section img {
    width: 100%;
}

footer {
    padding-top: 3em;
    padding-bottom: .3em;
    font-size: 14px;
}

.contact-footer,
footer a {
    color: #fff;
    display: inline-block;
    padding: .4em 0;
}

footer a:hover {
    color: #fff;
}

.contact-elem svg {
    width: 15px;
    margin-right: 25px;
    fill: #fff;
}

.contact-elem {
    display: flex;
    margin-bottom: .7em;
}

.darkgrey-block {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}



.svg-container {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    background-color: var(--custom-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2em;
}

.svg-container svg {
    fill: var(--custom-cream);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.contact-item,
.contact-item a {
    color: var(--custom-blue);
    font-family: "OpenSans Semibold";
    font-size: 18px;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 192px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.heading.contactus {
    background-image: url(../images/kapcsolat-bg.jpg);
}

.heading.gallery {
    background-image: url(../images/galeria-bg.jpg);
}

.heading.realestate {
    background-image: url(../images/ingatlanok-bg.jpg);
}

.heading h1 {
    font-family: "OpenSans Semibold";
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    letter-spacing: 2px;
    text-align: center;
}

.contact-row h2 {
    font-family: "OpenSans Semibold";
    text-transform: uppercase;
    color: var(--custom-blue);
    font-size: 40px;
}

.contact-row .form-group textarea,
.contact-row .form-group input[type="text"] {
    width: 100%;
    border: 1px solid var(--custom-blue);
    padding: .5em;
}

.contact-row .form-group {
    position: relative;
    margin-top: 1.4em;
}

.absolute-label {
    color: var(--custom-cream);
    background-color: white;
    padding: 0 3em 0 1em;
    font-size: 12px;
    font-family: "OpenSans Semibold";
    position: absolute;
    top: -9px;
    left: 15px;
}

.gallery-item img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.hover-overlay svg {
    width: 31px;
    fill: var(--custom-cream);
    margin-bottom: 1em;
}

.hover-overlay div {
    text-transform: uppercase;
    color: #fff;
    width: 40%;
    text-align: center;
    font-family: "OpenSans Semibold";
}

.gallery-item {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.image-row a::after,
.gallery-img-block::after,
.gallery-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--custom-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-row a:hover::after,
.gallery-img-block:hover::after,
.gallery-item:hover::after {
    opacity: .6;
}

.hover-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-row a:hover .hover-overlay,
.gallery-img-block:hover .hover-overlay,
.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.gallery-categories a {
    background-color: #e8e7e7;
    color: #2b2b2b;
    font-family: "OpenSans Semibold";
    font-size: 12px;
    padding: .7em 2em;
    display: inline-block;
    margin: 0 1.5em 1.5em 0;
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3em;
}

.gallery-img-list .gallery-img-block {
    width: calc(20% - 20px);
}

.gallery-img-block {
    display: inline-block;
    position: relative;
}

.gallery-img-block img{
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.gallery-img-list {
    justify-content: center;
    gap: 20px;
}

.arrow-svg {
    fill: var(--custom-cream);
    height: 21px;
}

.back {
    transform: rotateZ(180deg);
}

.gallery-title {
    margin-bottom: 2.5em;
}

.gallery-title .small-title {
    margin: 0 2em;
}

.ingatlan-block img {
    width: 100%;
    object-fit: cover;
    height: 200px;
}

.text-part {
    padding: 2.5em 1em 1.5em 1em;
    position: relative;
}

.text-part h3 {
    text-transform: uppercase;
    font-family: "OpenSans Bold";
    font-size: 18px;
    overflow: hidden;
    height: 45px;
}

.text-part .desc {
    font-size: 14px;
    overflow: hidden;
    height: 85px;
}

.text-part .blue-button {
    margin-top: 1em;
}

.ingatlan-block > div {
    -webkit-box-shadow: 3px 3px 10px -3px #424242;
    -moz-box-shadow: 3px 3px 10px -3px #424242;
    box-shadow: 3px 3px 10px -3px #424242;
}

.number-card {
    color: var(--custom-cream);
    background-color: var(--custom-blue);
    padding: 0 10px;
    min-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-family: "OpenSans Semibold";
    font-size: 30px;
}

.ingatlan-block .number-card {
    left: 10px;
    top: -24px;
}

.ingatlan-block {
    margin-bottom: 35px;
}

.back-button {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 1.5em;
}

.back-button svg {
    height: 14px;
    fill: #2b2b2b;
    margin-right: .5em;
}

.top-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.top-img ~ .number-card {
    left: 25px;
    bottom: -24px;
}

.inner-gallery,
.image-row {
    margin-top: 2.5em;
    justify-content: center;
}

.image-row a {
    position: relative;
    display: inline-block;
}

.inner-gallery .gallery-img-block img,
.image-row img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.blue-block.static-content h1,
.blue-block.static-content h2,
.blue-block.static-content h3,
.blue-block.static-content h4,
.blue-block.static-content h5,
.blue-block.static-content h6 {
    color: var(--custom-blue);
}

.blue-block {
    background-color: #f4f4f4;
    padding: 1.5em;
    overflow: hidden;
}

.contact-text {
    text-transform: uppercase;
    font-family: "OpenSans Bold";
    font-size: 24px;
}

.contact-text p{
    margin: 0;
}

.inner-gallery > div {
    margin-bottom: 2em;
    text-align: center;
}

.side-form .contact-row .form-group {
    margin-top: 0;
    margin-bottom: 1.8em;
}

.form-img-block {
    text-align: center;
    text-align: center;
}

.form-img-block img {
    width: 100%;
}

small {
    text-align: left !important;
    color: #f00;
}

form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

header .navbar-brand img {
    height: 49px;
}


/*Peti*/



/*header*/

.header-fluid {
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menus {
    width: 100%;
    display: flex;
    column-gap: 27px;
    list-style: none;
    justify-content: end;
    padding-left: 0px;
}

.menus li a, .green-text {
    font-family:"Sumana-Regular";
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    color: #573C23;
    align-items: center;
    display: flex;
}

.green-text p {
    margin-bottom: 0;
}

.menus li:first-child a {
    font-family:"Sumana-Bold";
    font-size: 20px;
    color: #2D6C3E;
}

/*home*/

.image-fluid {
    position: relative;
    background-image: url("/themes/base_one/assets/images/0dbd8eb13b1a29abaadd60f4ee55864e4b3d8266.jpg");
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px;
}

.darker-fluid {
    height: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.subtitle {
    font-family: "Sumana-Bold";
    font-size: 24px;
    line-height: 160%;
    text-transform: uppercase;
    color: #FFFF;
}

.title {
    font-family: "Sumana-Bold";
    font-size: 48px;
    line-height: 130%;
    text-transform: uppercase;
    color: #FFFF;
}

.esk-title {
    font-family: "Sumana-Bold";
    font-size: 48px;
    line-height: 130%;
    color: #3A2716;
    margin-bottom: 25px;
}

.image-desc {
    font-family: "Sumana-Bold";
    font-size: 18px;
    line-height: 160%;
    color: #FFFF;
}

.texts {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.image-cont a, .pro-button, .szolg-btn-row a {
    background: #2D6C3E;
    width: 253px;
    height: 64px;
    border-radius: 17px;
    font-family: "Sumana-Bold";
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFF;
}

.image-cont a:hover, .pro-button:hover, .szolg-btn-row a:hover {
    color: #FFFF;
}

.main-fluid {
    height: 714px;
}

.main-container {
    margin-top: 29px;
}

.history-pic {
    object-fit: cover;
    position: absolute;
    height: 567px;
    width: 484px;
    border-radius: 5px;
    z-index: 100;
    bottom: 145px;
}

.mini-image-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.main-image-cont {
    display: flex;
    align-items: end;
    padding: 0px;
}

.mini-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.main-title {
    font-family: "Sumana-Bold";
    font-size: 40px;
    line-height: 130%;
    color:#1F150C;
}

.main-desc {
    font-family: "Sumana-Regular";
    font-size: 18px;
    line-height: 160%;
    color:#221F20;
}

.pro {
    display: flex;
}

.pro-text {
    display: flex;
}

.pro-title {
    font-family: "Sumana-Bold";
    font-size: 20px;
    line-height: 150%;
}

.pro-image {
    width: 484px;
    height: 567px;
    border-radius: 5px;
    object-fit: cover;
}

.mini-title {
    font-family: "Montserrat-SemiBold";
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    text-transform: uppercase;
    color: #1F150C;
}

.ref-container {
    margin-top: 120px;
}

.ref-container .row {
    row-gap: 15px;
}

.ref-container img {
    margin-top: 40px;
    height: 567px;
    object-fit: cover;
}

.ref-title {
    font-family: "Charm-Bold";
    font-size: 48px;
    line-height: 150%;
    text-align: center;
    color: #3A2716;
}

.ref-desc {
    font-family: "Montserrat-Regular";
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #1F150C;
}

.card-img {
    width: 380px;
    height: 520px;
    margin-bottom: 30px;
}

.photo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.nav-btn {
    background-color: rgba(160, 130, 40, 0.987);
}

.card-title {
    font-family: "Sumana-Bold";
    font-size: 25px;
    line-height: 150%;
    text-align: center;
}

.card-desc {
    font-family: "Sumana-Regular";
    font-size: 18px;
    line-height: 160%;
    color:#3A2716;
    text-align: center;
}

.green-fluid {
    background-color: #275233;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 140px;
    margin-top: 120px;
}

.green-quote-container {
    margin: 100px 0px 100px 0px;
}

.green-col {    
    margin: 60px 0px 50px 0px;
}

.green-title {
    font-family: "Sumana-Bold";
    font-size: 36px;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}

.szolg-img {
    width: 200px;
    height: 250px;
    border-radius: 5px;
    object-fit: cover;
}

.szolg-row {
    row-gap: 30px;
}

.szolg-title {
    font-family: "Sumana-Bold";
    font-size: 32px;
    line-height: 150%;
    color: #1F150C;
}

.szolg-card-title {
    font-family: "Sumana-Bold";
    font-size: 32px;
    line-height: 130%;
    color: #1F150C;
}

.szolg-desc {
    font-family: "Sumana-Regular";
    font-size: 18px;
    line-height: 150%;
    color: #1F150C;
}

.question-fluid, .form-fluid {
    margin-bottom: 65px;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 3px;
    background: #0F1E13;
    flex-shrink: 0;
}

.arrow img {
    width: 20px;
    height: 20px;
}

.question-block {
    row-gap: 30px;
}

.question-text {
    font-family: "Sumana-Bold";
    font-size: 24px;
    line-height: 150%;
    color: #0F1E13;
    text-align: left;
}

.question-text[data-toggle="collapse"] {
    outline: none;
}

.form-col {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}


.form-container img {
    object-fit: cover;
    height: 600px;
    border-radius: 5px;
}

.form-container textarea {
    height: 175px;
    border-width: 1px;
    border-radius: 5px;
    padding-right: 12px;
    padding-left: 12px;
    background: #FEFEFE;
    border: 1px solid #E9E9E9
}

.form {
    height: 54px;
    border-width: 1px;
    border-radius: 5px;
    padding-right: 12px;
    padding-left: 12px;
    border: 1px solid #E9E9E9;
    background: #FEFEFE; 
}

.checkbox {
    width: 20px;
    height: 20px;
    border-width: 0.7px;
    border-radius: 3px;
    background: #F9F9F9;
    border: 0.7px solid #B9B9B9;
    box-shadow: 4px 2px 6.7px 0px #00000014;
}


.submit-btn, .submit-btn:hover {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
    background: #0D2927;
    color: #FFFF;
    text-align: center;
    font-family: "Sumana-Bold";
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    height: 64px;
}

.slide-fluid {
    background: #275233;
}

.slide-container {
    max-width: 100%!important;
    width: 100%!important;
}

.image-slide {
    column-gap: 45px;
}

.splide__arrow, .image-slide .splide__pagination, .image-fluid .splide__arrow {
    display: none;
}

.image-slide img {
    height: 380px;
    object-fit: cover;
}


.insta {
    font-family: "Sumana-Bold";
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFF;
}

/*footer*/

.footer-fluid {
    background: #15331D;
    padding-bottom: 24px;
}

.footer-container {
    padding-top: 29px;
}

.footer-logo {
    height: 77px;
    margin-bottom: 35px;
}

.social {
    column-gap: 15px;
}
.social i {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

.contact-col {
    border-bottom: 1px solid #FFFFFF;
}

.contact-box {
    display: flex;
    column-gap: 71px;
}

.contact-info {
    display: flex;
    column-gap: 12px;
    justify-content: center;
    align-items: center;
}

.contact-info img {
    width: 24px;
    height: 24px;
}

.info a, .info a:hover, .info a:active {
    font-family: "Sumana-Regular";
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
}

.footer-adatvedelem-box {
    padding-top: 32px;
    column-gap: 20px;
}

.adatkezelesi a {
    text-decoration: underline;
}

.footer-text a {
    font-family: "Sumana-Regular";
    font-size: 16px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #FFFFFF;
}

.footer-text, .footer-text a:hover {
    font-family: "Sumana-Regular";
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
}

.image-cont .splide__pagination__page.is-active{
    background-color: white;
    border-color: white;
}

.image-cont .splide__pagination__page {
    background-color: transparent;
    border-color: white;
}

.splide__pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.splide__pagination__page {
  width: 16px;
  height: 16px;
  border: 2px solid #4b6b4b;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
}

.splide__pagination__page.is-active {
  border-color: white;
}

.splide__pagination__page.is-active::after {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding-top 0.4s ease;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-black);
    margin-left: 40px;
    margin-top: 10px;
}

.question.active .answer {
    opacity: 1;
    padding-top: 10px;
}

.card, .card-header, .card-header h5, .question-text {
    border: none;
    background-color: transparent;
}

.question-text[aria-expanded="false"] .szolg-img {
    content: url("/themes/base_one/assets/images/adc019b04e073d58be1d9baa3412ded2c7644d15.png");
    transition: transform 0.1s;
}

.question-text[aria-expanded="true"] .szolg-img {
    content: url("/themes/base_one/assets/images/adc019b04e073d58be1d9baa3412ded2c7644d15.png");
    transform: rotate(-90deg);
    transition: transform 0.1s;
}

.question-text[aria-expanded="true"] .arrow {
    background-color: #275233;
}

.card-body {
    padding-left: 0px;
}

.card-body hr {
    margin-top: 20px;
    border: 1px solid #0F1E13;
}

.card-header {
    padding-left: 0px;
}

.dolgozom-fluid {
    margin-bottom: 102px;
}

.dolgozom-pic {
    height: 73px;
}

.dolgozom-steps {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}

.step {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.sumana-mini {
    font-family: "Sumana-Bold";
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    text-transform: uppercase;
    color: #1F150C;
}

.sumana-desc {
    font-family: "Sumana-Regular";
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #1F150C;
}

.dolgozom-title {
    font-family: "Sumana-Bold";
    font-size: 36px;
    line-height: 150%;
    text-align: center;
    color: #3A2716;
}

.step-title {
    font-family: "Sumana-Bold";
    font-size: 32px;
    line-height: 150%;
    color: #3A2716;
}