/*NEW FONTS START*/
/*Nunito*/
@font-face {
    font-family: "Nunito ExtraLight";
    font-display: swap;
    src: url(../fonts/Nunito/Nunito-ExtraLight.ttf) format("truetype");
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

@font-face {
    font-family: "Merriweather Regular";
    font-display: swap;
    src: url(../fonts/Merriweather/Merriweather-Regular.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: "Montserrat Bold";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
}

/*NEW FONTS END*/


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

    --custom-purple: #733E98;
    --custom-lightpurple: #977BAB;
}

/* 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 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 img {
    max-width: 100%;
}

/* 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 */

a,
body {
    font-family: "Nunito Regular";
    color: #333333;
}

strong a {
    font-family: "Nunito Bold";
}



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

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

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

.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%;
}

.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;
}

.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;
}

.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;
}

/*NEW CSS START*/

header {
    background-color: #fff;
    color: var(--custom-purple);
}

footer {
    background-color: var(--custom-purple);
    color: white;
}

header,
header a {
    font-family: 'Nunito SemiBold';
    font-size: 24px;
    line-height: 31.99px;
    text-align: left;
}

header {
    padding-top: .2em;
    padding-bottom: .2em;
}

.language-menu a,
.nav-link {
    color: var(--custom-purple);
}

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

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

.navbar-brand {
    width: 100px;
    height: 100px;
}

.respo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.navbar-nav .nav-item:last-child {
    background-color: var(--custom-purple);
    border-radius: 25px;
}

.navbar-nav .nav-item:last-child:hover {
    background-color: black;
    transition: .3s all ease;
}

.navbar-nav .nav-item:last-child a {
    color: white;
}

.nav-item {
    height: 100%;
    align-content: center;
}

#navbarSupportedContent,
.navbar-nav {
    height: 69px;
}

a:hover {
    transition: .3s all ease;
    color: black;
}

.button-block {
    display: flex;
    gap: 2em;
}

.standard-btn {
    font-family: 'Nunito Bold';
    font-size: 24px;
    line-height: 30.17px;
    text-align: center;
    color: white;
    border: 3px solid white;
    border-radius: 25px;
    align-content: center;
    width: 283px;
    height: 61px;
}

.standard-btn.wbg {
    background-color: var(--custom-purple);
    border: 1px solid var(--custom-purple);
}

#carouselTop {
    position: relative;
}

#carouselTop::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0F0F0F80;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}

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

.carousel-caption {
    font-family: 'Quicksand Bold';
    text-align: left;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
    width: 1415px;
    left: 13%;
}

.carousel-caption h1 {
    font-size: 48px;
    line-height: 60.34px;
}

.carousel-caption p {
    font-family: 'Quicksand Regular';
    font-size: 32px;
    line-height: 40.22px;
    text-align: left;
}

.menu-title {
    font-family: 'Nunito ExtraBold';
    font-size: 28px;
    line-height: 37.32px;
    text-align: left;
    margin-bottom: .5em;
}

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

.contact-footer,
footer a,
.openhour,
.allrights {
    margin-bottom: .5em;
}

.footer-text {
    font-family: 'Nunito Medium';
    font-size: 20px;
    line-height: 26.66px;
    color: white;
    display: inline-block;
}

.footer-a {
    font-family: 'Nunito Bold';
    font-size: 20px;
    line-height: 26.66px;
    text-align: right;
    color: white;
}

footer a:hover {
    color: black;
}

.c-elemimg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.contact-elem {
    display: flex;
}

.footer-logo a {
    width: 279px;
    height: 279px;
    margin: 0 auto;
    display: block;
}

.standard-btn.wbgw {
    background-color: white;
    color: var(--custom-purple);
    height: 72px;
    display: block;
    margin: 0 auto 1em auto;
}

.standard-btn:hover {
    background-color: var(--custom-purple);
    color: black;
    border: 3px solid var(--custom-purple);
}

.standard-btn.wbg:hover {
    background-color: white;
    border: 3px solid white;
    color: var(--custom-purple);
}

.standard-btn.wbgw:hover {
    background-color: transparent;
    border: 3px solid white;
    color: white;
}

.medium-title {
    font-family: 'Nunito Medium';
    font-size: 48px;
    line-height: 63.98px;
    text-align: left;
}

.regular-text {
    font-family: 'Nunito Regular';
    font-size: 20px;
    line-height: 26.66px;
    text-align: left;
}

.blackbtn {
    border: 3px solid #333333;
    color: #333333;
    background-color: white;
}

.blackbtn:hover {
    color: white;
}

.onesection-fluid {
    margin: 7em auto;
}

.introduction-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.introduction-content .second-block {
    margin-top: 5em;
}

.first-block>div:first-child {
    margin-bottom: .5em;
}

.bemutat-img {
    width: 100%;
    height: 100%;
}

.bemutat-img img {
    border-radius: 25px;
}

.services-card {
    width: 100%;
    height: 505px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.card-title {
    position: relative;
    z-index: 2;
    text-align: center;
    bottom: 20px;
    transition: all .3s ease;
}

.card-title a {
    font-family: 'Quicksand Bold';
    font-size: 24px;
    line-height: 30.17px;
    text-align: center;
    color: white;
}

.card-effect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(151, 123, 171, 0) 60.99%, rgba(151, 123, 171, 0.36) 74.84%, rgba(151, 123, 171, 0.9) 92.27%);
    z-index: 1;
}

.services-card .services-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.services-link:hover~.card-title>a {
    color: black;
    transition: .3s all ease;
}

.customcolor-fluid {
    background: #733E981A;
}

.big-title {
    font-family: 'Quicksand Bold';
    font-size: 24px;
    line-height: 30.17px;
    text-align: center;
    margin: 1em auto 0 auto;
}

.big-text {
    font-family: 'Quicksand Bold';
    font-size: 20px;
    line-height: 25.14px;
    text-align: center;
}

.underservice-img {
    width: 110px;
    height: 110px;
    margin: 0 auto;
}

.underservice-content {
    padding: 6em 1em;
}

.mainservices-col {
    display: flex;
    margin-bottom: 7em;
}

.order1 {
    order: 1;
}

.order2 {
    order: 2;
}

.foservices-img {
    border-radius: 25px;
    width: 100%;
    height: 578px;
    overflow: hidden;
}

.longerbtn {
    width: 400px;
}

.mainservices-col>div:nth-child(2)>div:first-child {
    margin-bottom: .5em;
}

.idopontfogl-fluid {
    min-height: 421px;
    position: relative;
    align-content: center;
}

.idopontfolg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.idopontfogl-fluid::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #733E98B2;
    z-index: 0;
}

.idopontfogl-text {
    font-family: 'Nunito SemiBold';
    font-size: 32px;
    line-height: 42.66px;
    text-align: center;
    color: white;
    margin-bottom: 1em;
}

.text-margin {
    margin-top: .5em;
    margin-bottom: 2em;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}

/* Track */
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

/* Handle */
.custom-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--custom-purple);
}

.review-box {
    background-color: var(--custom-lightpurple);
    padding: 2.5em 1.5em;
    border-radius: 25px;
    margin-bottom: 1em;
}

.review-box .medium-text {
    font-size: 16px;
    line-height: 24px;
}

.reviewbig-img {
    border-radius: 25px;
    overflow: hidden;
    height: 526px;
}

.review-img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 0 !important;

}

.review-text {
    /* max-height: 107px; */
    overflow: hidden;
}

.review-name {
    font-family: 'Nunito ExtraBold';
    font-size: 22px;
    line-height: 31.99px;
    text-align: left;
    color: white;
}

.splide__slide {
    height: auto !important;
}

.medium-text {
    font-family: 'Nunito Medium';
    font-size: 20px;
    line-height: 26.66px;
    text-align: left;
    color: white;
}

.review-box>div:first-child {
    margin-right: 1.5em;
}

.review-box .first-block {
    align-content: center;
}

.custompage {
    width: 47px;
    height: 18px;
    border-radius: 25px;
    border: none;
    margin-right: 1em;
    background-color: #e9e9e9;
}

.custompage.is-active {
    background-color: var(--custom-lightpurple);
}

.splide__pagination {
    justify-content: flex-start !important;
    padding-left: 0;
}

.galleryimg,
.eloadas-img {
    width: 100%;
    height: 407px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1em;
}

.quote-text p {
    font-family: 'Nunito Regular';
    font-size: 24px;
    line-height: 28.8px;
    text-align: center;
    color: #333333;
    opacity: .8;
    margin-top: 2em;
}

.webshop-fluid {
    background-color: #F1ECF5;
    min-height: 421px;
    align-content: center;
}

.webshop-text {
    font-family: 'Nunito SemiBold';
    font-size: 32px;
    line-height: 42.66px;
    text-align: center;
    margin-bottom: 1em;
}

.longbtn-block {
    margin-top: 1em;
}

.longbtn {
    border: 3px solid #333333;
    background-color: #333333;
    width: 519px;
}

.longbtn:hover {
    color: white;
}

.card {
    border: none;
    margin-bottom: 2em;
}

.card-header {
    border: none;
    background: none;
    padding: 0;
}

.card-body:not(.login-card-body) {
    padding: 0;
    font-family: 'Nunito Medium';
    font-size: 24px;
    line-height: 31.99px;
    text-align: left;
}

.btn-link {
    font-family: 'Nunito SemiBold';
    font-size: 32px;
    line-height: 42.66px;
    text-align: left;
    color: #333333;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.svg-arrow {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transition: .3s all ease;
}

.btn-link:focus,
.btn-link:active {
    text-decoration: none;
}

.btn-link:hover {
    color: var(--custom-purple);
    text-decoration: none;
}

.clicked {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transition: .3s all ease;
}

.contact-img {
    width: 100%;
    height: 353px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1em;
}

.contact-fluid {
    background-color: var(--custom-lightpurple);
    padding: 3.5em 15px;
}

.contact-container {
    background-color: white;
    border-radius: 25px;
    overflow: hidden;
    padding: 3.5em 5.5em;
}

.contact-bigtitle {
    font-size: 36px;
    line-height: 47.99px;
    text-align: left;
    margin-bottom: 1em;
}

#contact_form_content_page input,
#contact_form_content_page textarea {
    width: 100%;
    border-radius: 25px;
    background-color: #f5f5f5;
    border: none;
    padding: 12px 30px;
    font-family: 'Nunito Regular';
    font-size: 20px;
    color: #333333;
}

#contact_form_content_page input {
    height: 56px;
}

#contact_form_content_page input::placeholder,
#contact_form_content_page textarea::placeholder {
    font-family: 'Nunito Medium';
    font-size: 24px;
    line-height: 31.99px;
    text-align: left;
    color: #333333;
}

.aszf-text {
    font-family: 'Montserrat Regular';
    font-size: 18px;
    line-height: 21.94px;
    text-align: left;
}

.aszf-text a {
    font-family: 'Montserrat Bold';
    font-size: 18px;
    line-height: 21.94px;
    text-align: left;
    position: relative;
    z-index: 1;
}

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

.custom-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    border: 1px solid black;
    background: #FFFFFF66;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

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

.card-hoverlink {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all .3s ease;
    text-transform: uppercase;
}

.services-link:hover~.card-title {
    bottom: 40px;
    transition: all .3s ease;
}

.services-link:hover~.card-hoverlink {
    bottom: 15px;
    transition: all .3s ease;
}

.card-hoverlink .standard-btn {
    font-family: 'Quicksand Regular';
    font-size: 16px;
    line-height: 20.11px;
    text-align: center;
    width: 112px;
    height: 32px;
    display: block;
}

.webshop-fluid .standard-btn {
    background-color: transparent;
}

.webshop-fluid .standard-btn:hover {
    background-color: var(--custom-purple);
    color: white;
}

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

.heading.sidepage {
    background-image: url(../images/sidepage_bg.png);
    position: relative;
}

.sidepage::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0F0F0F80;
    position: absolute;
}

.sidepage-title {
    font-family: 'Quicksand Bold';
    font-size: 40px;
    line-height: 50.28px;
    text-align: center;
    color: white;
}

.bemutatkozas-fluid {
    padding: 7em 15px;
}

.static-content p {
    font-family: 'Nunito Regular';
    font-size: 24px;
    line-height: 31.99px;
    text-align: left;
}

.static-content h1 {
    font-family: 'Nunito SemiBold';
    font-size: 30px;
    line-height: 39.99px;
    text-align: center;
}

.static-content h2 {
    font-family: 'Nunito Medium';
    font-size: 32px;
    line-height: 42.66px;
    text-align: left;
}

.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-img {
    height: 609px;
    border-radius: 25px;
    overflow: hidden;
}

.static-content li {
    font-family: 'Nunito Regular';
    font-size: 24px;
    line-height: 31.99px;
    text-align: left;
}

.extracontent-col {
    margin-top: 3em;
}

.extracontent-col p {
    text-align: center;
}

.extracontent-col table div {
    background-color: var(--custom-lightpurple);
    width: 281px;
    height: 57px;
    align-content: center;
}

.extracontent-col table div p {
    font-family: 'Montserrat Regular';
    font-size: 40px;
    line-height: 48.76px;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.extracontent-col table ul {
    margin-bottom: 0;
    height: 107px;
    align-content: center;
}

.szolglist-fluid .mainservices-col {
    margin-bottom: 3em;
}

.szolglist-fluid .mainservices-col:last-child {
    margin-bottom: 0;
}

.szolglist-fluid .services-link:hover~.card-title {
    bottom: 20px;
    transition: unset;
}

.subservice-card {
    height: 230px;
}

.subservice-card .card-title {
    bottom: 0;
}

.subservice-card .services-link:hover~.card-title {
    bottom: 10px;
    transition: all .3s ease;
}

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

.subservice-box {
    display: flex;
    margin-bottom: 1em;
    width: 100%;
}

.subservice-galleryimg {
    width: 100%;
    height: 272px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1em;
}

.custom-margin {
    margin-bottom: 4em;
}

.types-title {
    margin-bottom: .5em;
}

.navbar-nav .active-link {
    color: black;
}

.partnersimg {
    width: 100%;
    height: 234px;
    margin-bottom: 2em;
}

.partner-fluid .medium-title {
    margin-bottom: 1em;
}

.opening-title {
    font-family: 'Nunito SemiBold';
    font-size: 20px;
    line-height: 26.66px;
    text-align: center;
}

.opening-content p {
    font-family: 'Nunito Regular';
    font-size: 20px;
    line-height: 26.66px;
    text-align: center;
    margin-bottom: 0;
}

.custom-row {
    margin: 3.5em auto;
}

.undermap-info {
    font-family: 'Nunito Medium';
    font-size: 24px;
    line-height: 31.99px;
    text-align: center;
    margin: 1em auto;
}

.undermap-extrainfo {
    font-family: 'Nunito Medium';
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

.onesection-fluid:has(.contactp-container) {
    margin-bottom: 2em;
}

.contactp-fluid .map {
    height: 323px;
}

.contactp-img {
    height: 593px;
    border-radius: 25px;
    overflow: hidden;
}

.homeserives-row .services-card {
    margin-bottom: 2em;
}

.eloadasok-fluid .eloadas-img {
    height: 307px;
}

.eloadasok-fluid .row div:has(.eloadas-img):not(:last-child) {
    margin-bottom: 2em;
}

.custom-table {
    border-radius: 25px;
    overflow: hidden;
}

.custom-table table {
    width: 100%;
}

.custom-table table thead {
    background-color: var(--custom-lightpurple);
    text-indent: 10px;
    height: 100px;
}

.custom-table table tbody>tr {
    height: 71px;
    text-indent: 10px;
}

.custom-table table tbody>tr:nth-child(odd) {
    background-color: #FAF5FE;
}

.custom-table table tbody>tr:nth-child(even) {
    background-color: #FDFAFF;
}

.custom-table table tbody>tr:nth-child(even):hover,
.custom-table table tbody>tr:nth-child(odd):hover,
.custom-plusinfo:hover {
    background-color: #c8acdd;
}

.tablefluid .row:not(:first-child) .table-title {
    margin: .8em auto;
}

.tablefluid .row:first-child .table-title {
    margin: 0 auto .8em auto;
}

.custom-table tbody>tr>td {
    font-family: 'Quicksand Regular';
    font-size: 20px;
    line-height: 25.14px;
    text-align: left;
    color: #333333;
}

.custom-table thead>tr>th {
    font-family: 'Quicksand Bold';
    font-size: 24px;
    line-height: 30.17px;
    text-align: left;
    color: white;
    text-transform: uppercase;
}

.custom-table thead>tr>th:first-child {
    text-indent: 30px;
}

.custom-table tbody>tr>td:first-child {
    text-indent: 30px;
}

.custom-plusinfo {
    display: flex;
    justify-content: space-between;
    background-color: #E3D3ED80;
    padding: 1.5em 1em;
    border-radius: 25px;
    margin-top: 3em;
}

.plusinfo1,
.plusinfo2 {
    font-family: 'Quicksand Regular';
    font-size: 20px;
    line-height: 25.14px;
    text-align: left;
}

.plusinfo1 {
    margin-left: .8em;
}

.plusinfo2 {
    margin-right: 3em;
}

.wbb:hover {
    color: white;
}

.szolgv-title {
    padding-bottom: .3em;
}

/*NEW CSS END*/