/*.services-card{
    background-color: rgba(255, 255, 255, .15);
    cursor: pointer;
    border: 3px solid transparent;
}

.services-card:hover{
    background-color: rgba(255, 255, 255, .25);
}

.services-card h2{
    font-size: 20px;
}

.services-card p{
    font-size: 16px;
}

.services-card-expanded{
    background-color: #8334eb !important;
}

.services-card .services-card-content{
    display: none;
}

.services-card-expanded .services-card-content{
    display: block;
}

.services-card-content .btn-link{
    font-weight: 500;
    text-decoration: none;
    transition: .25s;
    opacity: .8;
}

.services-card-content .btn-link i{
    transition: .25s;
}

.services-card-content .btn-link:hover{
    transition: .25s;
    opacity: 1;
}

.services-card-content .btn-link:hover i{
    transition: .25s;
    padding-left: 5px;
}

.services-card .services-card-content a{
    color: #fff;
}

.services-card .services-card-content a:hover{
    text-decoration-style: dashed;
}*/

html, body {
  overflow-x: hidden;
}


.bg-hero{
    background-image: url("../imgs/hero_bg.png");
    background-size: cover;
    background-position: center bottom;
}

.glassy-bg{
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 15px;
}

.glassy-border{
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, .07);
}

.glassy-outline{
    border-radius: 15px;
    outline: 1px solid rgba(255, 255, 255, .07);
}

.glassy-hover{
    transition: .25s;
}

.glassy-hover:hover{
    transform: translate(0, -5px) scale(1.02);
}

.glass-badge {
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.glass-badge i{
    position: relative;
    top: 2px;
}

.contact-us-card{
    position: relative;
    background-image: url('https://mlza.hu/src/imgs/bg_effect_circle.png');
    background-size: cover;
    border-width: 2px;

    background-position: center -60px;

    box-shadow: inset 0 -30px 50px #8334eb30;

    transition: .25s;
    transition-timing-function: ease-in-out;
}

.contact-us-card-light{
    position: absolute;
    background-color: #8334eb40;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    width: 250px;
    height: 250px;
    transition: .5s;
}

.contact-us-card img{
    transition: .5s;
}

.contact-us-card img:nth-of-type(2){
    transition-delay: .15s;
}

.contact-us-card:hover{
    transform: scale(1.02);

    box-shadow: inset 0 -30px 50px #8334eb50;

}

.contact-us-card:hover img:nth-of-type(1){
    transform: scale(1.2);
}

.contact-us-card:hover img:nth-of-type(2){
    transform: scale(1.2) rotate(-10deg) translate(-10px, -10px);
}

.contact-us-card:hover .contact-us-card-light{
    opacity: .5;
    transform: scale(2);
}

.contact-us-card h2, .contact-us-card .btn, .contact-us-card p{
    position: relative;
    z-index: 10;
}

.contact-us-card::before{
    /*content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(1px);

    z-index: 0;*/
}



.services-card{
    --color: #FAE8EB;
    --colorLowOpacity: #FAE8EB25;
    position: relative;

    padding: 30px;
    overflow: hidden;
    transition: .25s;
    margin-bottom: 20px;
    height: 95%;

    max-width: 100%;
    display: block;
    text-decoration: none !important;
}

.services-card-header{
    display: flex;
    align-items: center;
    justify-content: start;
}

.services-card-header h2{
    color: var(--color);
    font-size: 25px;
    margin-bottom: 0;
    padding: 0;
    padding-left: 5px;
}

.services-card-header i{
    color: var(--color);
    font-size: 25px;
    color: var(--color);
    background-color: var(--colorLowOpacity);
    padding: 15px;
    aspect-ratio: 1/1;
    vertical-align: center;
    line-height: 100%;
    padding-top: 18px;
    border-radius: 10px;
    margin-right: 10px;
}

.services-card p{
    opacity: .5;
    margin: 15px 0;
}

.services-card-tagContainer span{
    background-color: rgba(255, 255, 255, .1);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 13px;
}

.services-card .btn-link{
    width: 100%;

    padding: 0;
    text-align: end;
    text-decoration: none;
    font-weight: 500;
    transition: .25s;
    opacity: .8;

}

.services-card .btn-link i{
    transition: .25s;
    position: relative;
    top: 2px;
    padding-left: 10px;
}

.services-card .btn-link:hover{
    transition: .25s;
}

.services-card:hover .btn-link i{
    transition: .25s;
    transform: translate(5px, -5px) scale(1.2);
    /*padding-left: 15px;*/
}

.services-card:hover{
    transform: scale(1.05);
}

.services-card::after{
    content: " ";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    background-color: var(--color);
    right: -80px;
    bottom: -80px;
    z-index: -1;
    opacity: .5;
    filter: blur(100px);
    transition: .25s;
}

.services-card:hover::after{
    filter: blur(150px);
    opacity: 1;
    width: 300px;
    height: 300px;
}

.services-card-2{
    --color: #5B74F8ff;
    --colorLowOpacity: #5B74F825;
}

.services-card-3{
    --color: #FD52FEff;
    --colorLowOpacity: #FD52FE25;
}

.services-card-4{
    --color: #9cfc97;
    --colorLowOpacity: #9cfc9725;
}

/**/
.bg-gradient-new{
    background: #8334EB;
    background: linear-gradient(180deg, rgba(131, 52, 235, 1) 0%, rgba(107, 39, 196, 1) 100%);
}

.partner-logo{
    width: 150px;
    margin: 30px;
    opacity: .7;
    transition: opacity .25s;
}

.partner-logo:hover{
    opacity: 1;
}


/* Scrolling strip */
.animated-text-strip{

    position: relative;
    width: 120%;
    left: -5%;

    transform: rotate(1.3deg);

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
    padding: 1rem 0;

}

.marquee {
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    max-width: none;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.marquee{
    font-size: 17px;
    text-transform: uppercase;
    color: white;
}

.marquee i{
    font-size: 10px;
    margin: 10px;
}
/* */


.placeholder-illustration{
    width: 120px;
    height: 370px;
    margin: 10px;
    border-radius: 100px;
    background-color: white;
    border: 2px solid rgba(255, 255, 255, .1);

    transition: .5s;
}

.placeholder-illustration:hover{
    transform: scale(.95);
}

.placeholder-illustration:nth-of-type(1){
    background-image: url("../imgs/illustrations/1.png");
    background-size: cover;
    background-position: center bottom;
    box-shadow: 0 0 90px 20px #8334eb50;
}

.placeholder-illustration:nth-of-type(2){
    margin-top: 150px;

    background-image: url("../imgs/illustrations/2.png");
    background-size: cover;
    background-position: center bottom;
    box-shadow: 0 0 90px 20px rgba(52, 113, 235, 0.3);
}

.placeholder-illustration:nth-of-type(3){
    background-image: url("../imgs/illustrations/3.png");
    background-size: cover;
    background-position: center top;
    box-shadow: 0 0 90px 20px rgba(52, 235, 137, 0.31);
}

.floating-idle-animation1{
    animation-name: floatingIdle1;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-idle-animation2{
    animation-name: floatingIdle2;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-delay: 3s;
}

@keyframes floatingIdle1 {
    0% {
        transform: translate(0, 0) rotate(-8deg);
    }

    50% {
        transform: translate(0, -20px) rotate(-6deg) scale(1.05);
    }

    100% {
        transform: translate(0, 0) rotate(-8deg);
    }
}

@keyframes floatingIdle2 {
    0% {
        transform: translate(0, 0) rotate(8deg);
    }

    50% {
        transform: translate(0, 20px) rotate(-2deg);
    }

    100% {
        transform: translate(0, 0) rotate(8deg);
    }
}

/* Accordion */
.accordion {
    --bs-accordion-border-color: transparent !important;
    --bs-accordion-btn-focus-border-color: transparent !important;
    --bs-accordion-active-color: transparent !important;
    overflow: visible;
}

.accordion-item{
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07) !important;
    backdrop-filter: blur(3px);
    border-radius: 15px;
    outline: 0 !important;
    overflow: hidden;

}

.accordion .accordion-header,
.accordion .accordion-button {
    background-color: transparent !important;
    color: #fff;

    box-shadow: none;
    outline: 0 !important;
    border: 0 !important;
}

.accordion-header{
    border: 0 !important;
    border-color: transparent !important;
}

.accordion .accordion-button.collapsed::after {
    background: url("../imgs/arrow1.svg");
    text-shadow: 0 0 5px #8334eb;

}

.accordion .accordion-button:not(.collapsed)::after {
    background: url("../imgs/arrow2.svg");
    text-shadow: 0 0 5px #8334eb;
}

.accordion .collapsed {
    border: 0 !important;
}

.accordion .accordion-item {

    border-radius: 15px;
}

.accordion .accordion-button {

    font-weight: 700;
    border: 0 !important;
    border-color: transparent !important;
    outline: 0 !important;
}

.accordion .accordion-body {
    font-size: 13px;
    opacity: 0.8;
    padding-top: 0;
    border: 0 !important;
    border-color: transparent !important;
    outline: 0 !important;
}

.accordion-body::after{
    content: " ";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    background-color: #8334eb;
    right: -80px;
    bottom: -80px;
    z-index: -1;
    opacity: .5;
    filter: blur(100px);
    transition: .25s;
}

/* Projects */
.project-card{
    position: relative;
    background-color: rgba(255, 255, 255, .1);
    min-height: 400px;
    border-radius: 15px;
    background-image: url("../imgs/mlzaweb.png");
    background-size: cover;
    background-position: top center;
    overflow: hidden;

    box-shadow: inset 0 0 0 10px #6809dd80;
}

.project-card::after{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;


    background: rgba(0, 0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .8) 100%);
}

.project-card img{
    position: absolute;
    bottom: 25px;
    width: 50%;
    left: 25%;
    z-index: 999;

}

.btn-arrow{
    border: 0 !important;
    background-color: transparent !important;
    font-size: 25px;
    transition: .25s;
}

.btn-arrow:first-of-type{
    margin-right: 20px;
}

.btn-arrow:hover{
    opacity: .5;
}

.overflow-hide-fg{
    position: relative;
}

.overflow-hide-fg::after{
    content: " ";
    position: absolute;
    top: 0;
    left: -5%;
    height: 100%;
    width: 110%;
    z-index: 9999;

    background: #050516;
    background: linear-gradient(270deg, rgba(5, 5, 22, 1) 0%, rgba(5, 5, 22, 0) 50%, rgba(5, 5, 22, 0) 75%, rgba(5, 5, 22, 1) 100%);

    pointer-events: none;
}

.projects-scroll-container {
    overflow-x: scroll;
    position: relative;
    padding-left: calc((100vw - 1320px) / 2);
    padding-right: calc((100vw - 1320px) / 2);
}

.projects-scroll-row {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    min-width: 100%;
}

.project-card {
    flex: 0 0 auto;
    min-width: 150px;
    width: 33vw;
    max-width: 400px;
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: .25s;
}

.project-card:hover{
    opacity: .5;
}

.projects-scroll-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card{
    position: relative;
    z-index: 80;

    cursor: crosshair;
    transition: .2s;
    box-shadow: inset 0px -40px 50px -10px #8334eb30;
}

.testimonial-card:hover{
    box-shadow: inset 0px -40px 50px 2px #8334eb30, 0px 5px 50px #8334eb30;
    transform: scale(1.03);
    backdrop-filter: blur(5px);
}

.testimonial-card .testimonial{
    position: relative;
    opacity: .75;
    transition: .2s;
}

.testimonial-card img{
    width: 50px;
    aspect-ratio: 1/1;
}

.testimonial-card .testimonial-emoji{
    position: absolute;
    right: -15px;
    bottom: -30px;
    font-size: 40px;
    transform: rotate(5deg);
    z-index: 999999;
    transition: .2s;
}

.testimonial-card:hover .testimonial-emoji{
    transform: rotate(-5deg) scale(2);
    right: 0px;
    bottom: -30px;
}

.testimonial-card:hover .testimonial{
    opacity: 1;
}

.testimonial-card::before{
    /*content: " ";
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    width: 100px;
    height: 100px;

    background-color: #8334eb70;
    z-index: -50;
    filter: blur(40px);*/
}

.testimonial-card hr{
    border-top: 2px dashed #fff;
    opacity: .05;
}

.terrain-bg{
    background-image: url('https://mlza.hu/src/imgs/bg_topographic.png'); background-size: contain; background-repeat: repeat-x; background-position: center center;
}

.new-project-card{
    background-size: cover;
    min-height: 270px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background-position: center center;
    transition: .25s;
}

.new-project-card::after{
    position: absolute;
    content: " ";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .9) 80%, rgba(0, 0, 0, 1) 100%);
    opacity: .85;
    z-index: 10;
    transition: .25s;
}

.new-project-card h2, .new-project-card div{
    position: relative;
    z-index: 99;
}

.new-project-card h2{
    font-weight: 700 !important;
    text-transform: uppercase;
}

.new-project-card .glass-badge{
    font-size: 12px;
}

.new-project-card i{
    color: #fff;
    position: absolute;
    right: 25px;
    bottom: 20px;
    z-index: 999;
    font-size: 20px;
    opacity: .3;
    transition: .25s;
}

.new-project-card:hover{
    transform: scale(1.04);
    outline-color: transparent !important;
}

.new-project-card:hover::after{
    opacity: 1;
}

.new-project-card:hover i{
    transform: scale(1.5) rotate(180deg);

    opacity: 1;
}

.aboutus_new_card{
    cursor: crosshair;
    transition: .25s;
}

.aboutus_new_card i{
    background: #b278f0;
    background: linear-gradient(180deg, rgba(178, 120, 240, 1) 0%, rgba(131, 52, 235, 1) 100%);
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    vertical-align: center;
    border-radius: 50%;
    padding-top: 5px;
    transition: .25s;
}

.gift-wrapper{
    position: relative;
    border: 2px dashed #b278f0;
    background-color: #b278f010;
    border-radius: 50px;
    transition: .25s;
}

.gift-wrapper:hover{
    transform: scale(1.03);
}

.gift-wrapper img{
    position: absolute;
    right: -100px;
    top: -10px;
    width: 200px;
    transform: rotate(8deg);
    transition: .25s;
}

.gift-wrapper:hover img{
    transform: rotate(-8deg) scale(1.4);
}

.gift-wrapper:hover .h1-hero-marker{
    transform: scale(1.1);
}

.aboutus_new_card:hover{
    transform: translateY(-10px) scale(1.03);
}

.aboutus_new_card:hover i{
    box-shadow: 0 0 20px #b278f085;
}

.miert_fontos_egy_jo_weboldal_tag{
    width: fit-content;
    margin: 10px;
    font-size: 18px;
    transition: .25s;
    cursor: crosshair;
}

.miert_fontos_egy_jo_weboldal_tag i{
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.miert_fontos_egy_jo_weboldal_tag:hover{
    transform: scale(1.45);
    z-index: 99999;
}

.szolgaltatas_card{
    transition: .25s;
    cursor: crosshair;
}

.szolgaltatas_card:hover{
    transform: scale(1.04);
}

.countdownNumber{
    position: relative;
    display: inline-block;

    width: 15vw;
    max-width: 80px;
    font-size: min(5vw, 30px) !important;
}

.countdownNumber::after{
    position: absolute;
    content: "";
    left: 0;
    bottom: -25px;
    font-size: min(3.5vw, 15px);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    opacity: .5;
}

.countdownNumber:nth-of-type(1)::after{
    content: "Nap";
}

.countdownNumber:nth-of-type(3)::after{
    content: "Óra";
}

.countdownNumber:nth-of-type(5)::after{
    content: "Perc";
}

.countdownNumber:nth-of-type(7)::after{
    content: "MP";
}

.referencia_card_hero{
    position: relative;
    max-height: 300px;
    height: 400px;
    padding: 8px 8px;
    width: fit-content;
    margin: 7px;
    left: -200px;
}

.referencia_card_hero img{
    height: 100%;
    border-radius: 10px;
    margin: 0;
}

.referencia_card_row{
    position: relative;

    -webkit-mask-image: linear-gradient(90deg, transparent 1%, black, 25%, black, black 75%, transparent 98%);
    mask-image: linear-gradient(90deg, transparent 1%, black, 25%, black, black 75%, transparent 98%);
}


.slider-container {
    overflow: hidden;
    width: 100%;
    background: #00000010; /* igény szerint */
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.slider-track img {
    height: 200px;
    margin: 0 10px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



@keyframes pulse {
    0%, 100%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.2);
    }
}

.pulse-animation{
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotating {
    0%, 70%, 100%{
        transform: rotate(0);
    }

    10%, 40%{
        transform: rotate(-3deg);
    }

    20%, 60%{
        transform: rotate(1deg);
    }
}

.rotating-animation{
    display: inline-block;
    animation: rotating 2s ease-in-out infinite;
}


/* Responsive */

@media (width <= 800px) {
    .partner-logo{
        margin: 20px;
    }

    .miert_fontos_egy_jo_weboldal_tag{
        width: 100%;
    }

    .miert_fontos_egy_jo_weboldal_tag:hover, .aboutus_new_card:hover, .szolgaltatas_card:hover, .testimonial-card:hover{
        transform: scale(0.95);
    }
}

.fs-60px{
    font-size: min(60px, 10vw);
}

.fs-50px{
    font-size: min(50px, 10vw);
}