:root{
    --font-heading:'Bebas Neue',sans-serif;
    --font-text:'Inter',sans-serif;
}

body{
    font-family:var(--font-text);
    background:#f2f2f0;
    color:#111;
}

/* HERO */

.hero-section{
    position:relative;
    overflow:hidden;
    min-height:500px;
}

.hero-house{
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
    background:url('../images/hero-house.jpg') right top no-repeat;
    background-size:contain;
    z-index:1;
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    padding:40px 60px 60px;
}

.hero-left{
    max-width:600px;
    margin-top:10px;
}

.hero-title{
    font-family:var(--font-heading);
    font-size:3.5rem;
    line-height:1.1;
    letter-spacing:.02em;
    font-weight:400;
    text-transform:uppercase;
}

.hero-text{
    position:relative;
    display:inline-block;
    padding-bottom:12px;
    color:#222;

    text-shadow:
        0 0 8px rgba(255,255,255,.4);
}

.hero-text::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:80px;
    height:2px;

    background:rgba(255,255,255,.6);
}

.hero-card{
    max-width:420px;
    background:rgba(110,110,110,.72);
backdrop-filter:blur(12px);
    color:#fff;
    border-radius:24px;
    padding:20px;
        background:rgba(255,255,255,.18);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.2);
}

.hero-card h5{
margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-card a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.video-btn{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
}

.video-text{
    font-size:.95rem;
    line-height:1.3;
}

/* NAVBAR */

.navbar{
    position:relative;
    z-index:3;
}

.nav-link{
    font-weight:500;
    color:#111;
}

.nav-link:hover{
    color:#000;
}

.btn-dark{
    background:#000;
    border:none;
}

/* BENEFITY */

.stats-section{
    padding:25px 0;
    position:relative;
    z-index:5;
}

.info-box{
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:30px;
    
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.info-box h5{
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:10px;
}

.info-box p{
    color:#555;
    margin-bottom:25px;
}


/* KROKY */

.steps-section{
    padding-bottom:20px;
}

.card-1{background-image:url('../images/card1.jpg');}
.card-2{background-image:url('../images/card2.jpg');}
.card-3{background-image:url('../images/card3.jpg');}
.card-4{background-image:url('../images/card4.jpg');}
.card-5{background-image:url('../images/card5.jpg');}
.card-6{background-image:url('../images/card6.jpg');}

.step-card{
    position:relative;
    height:320px;
    border-radius:20px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    padding:20px;
    color:#fff;
}

.step-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            rgba(0,0,0,.05)
        );

    transition:.3s;
}
.step-card:hover::before{
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.35),
            rgba(0,0,0,.0)
        );
}
.step-card span{
    transition:.3s;
}

.step-card:hover span{
    transform:translateX(4px);
}

.step-card span,
.step-card h4{
    position:relative;
    z-index:2;
}

.step-card span{
    display:block;
    font-family:var(--font-heading);
    font-size:3rem;
    line-height:1;
    letter-spacing:.03em;
    color:#ffc107;
}

.step-card h4{
    font-family:var(--font-heading);
    font-size:2rem;
    letter-spacing:.03em;
    text-transform:uppercase;
        position:absolute;
    left:20px;
    bottom:20px;
}
.footer-big-title{
    font-family:var(--font-heading);
    font-size:6rem;
    line-height:.9;
    text-transform:uppercase;
    letter-spacing:.02em;
}


.contact-section{
    background:#000;
    overflow:hidden;
    min-height:420px;
    
    padding:40px 0;
}
.contact-section .container-xxl{
    border-radius:30px;
    overflow:hidden;
}

.contact-form-wrap{
    height:100%;
    padding:80px;
    color:#fff;
}

.contact-subtitle{
    display:block;
    color:#bdbdbd;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
}

.contact-title{
    font-family:var(--font-heading);
    font-size:5.5rem;
    line-height:.95;
    letter-spacing:.02em;
    font-weight:400;
    text-transform:uppercase;
}

.contact-text{
    color:#d0d0d0;
    max-width:550px;
    margin-bottom:30px;
}

.contact-form-wrap .form-control{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    border-radius:12px;
    padding:7px 8px;
}

.contact-form-wrap .form-control:focus{
    background:rgba(255,255,255,.12);
    border-color:#fff;
    color:#fff;
    box-shadow:none;
}

.contact-form-wrap .form-control::placeholder{
    color:#bdbdbd;
}

.contact-image{
    min-height:380px;
    background-position:right bottom;
    background-size:auto 100% !important;   
    height:100%;
    background:url('../images/footer.jpg');
    background-repeat: no-repeat;    
    border-radius:0 30px 30px 0;
    
}
.contact-form-wrap{

    padding:40px 50px;
    color:#fff;
}

.contact-title{
    font-size:2.2rem;
    margin-bottom:15px;
}

.contact-text{
    font-size:1rem;
    margin-bottom:20px;
    max-width:500px;
}
.footer-section{
    padding:20px 10px 20px;
}

.footer-slogan{
    font-size:2rem;
    font-weight:700;
    line-height:1.1;
    color:#111;
    margin-bottom:10px;
}

.footer-text{
    color:#777;
    font-size:1rem;
}

.footer-copy{
    color:#999;
    font-size:.95rem;
}
.info-number{
    font-weight:700;
    font-family:var(--font-heading);
    font-size:3rem;
    line-height:1;
    letter-spacing:.02em;
}
.nav-link{
    font-size:.95rem;
    font-weight:600;
    letter-spacing:.02em;
}
.btn-pill{
    display:inline-flex;
    align-items:center;
    gap:14px;

    background:#0f1117;
    color:#fff;

    padding:8px 8px 8px 22px;

    border-radius:999px;
    text-decoration:none;

    font-weight:600;

    transition:.25s;
}

.btn-pill:hover{
    color:#fff;
    transform:translateY(-1px);
}

.btn-circle{
    width:36px;
    height:36px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:700;
}

.btn-pill-large{
    padding:10px 10px 10px 24px;
}

.btn-pill-large .btn-circle{
    width:42px;
    height:42px;
}
.hero-card-link{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:15px;
}

.hero-card-arrow{
    width:28px;
    height:28px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    display:flex;
    align-items:center;
    justify-content:center;
}
.nav-main{
    margin-left:auto;
    margin-right:30px;
}

.nav-main .nav-item{
    margin:0 14px;
}

.nav-link{
    font-size:15px;
    font-weight:500;
}
.navbar{
    min-height:70px;
}
.btn-circle{
    width:38px;
    height:38px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:12px;
}
.hero-card-link{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-top:18px;

    color:#fff;
    font-weight:500;
    font-size:.95rem;
}

.hero-card-arrow{
    width:30px;
    height:30px;

    border-radius:50%;

    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.25s;
}

.hero-card-link:hover .hero-card-arrow{
    background:rgba(255,255,255,.28);
    transform:translateX(2px);
}
.btn-contact{
    display:inline-flex;
    align-items:center;
    gap:14px;

    border:none;

    background:#e5e5e5;
    color:#111;

    padding:8px 8px 8px 22px;

    border-radius:999px;

    font-weight:600;

    transition:.25s;
}

.btn-contact:hover{
    background:#e2e2e2;
    transform:translateY(-1px);
}

.btn-contact-icon{
    width:36px;
    height:36px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;

    flex-shrink:0;
}
.step-card{
    position:relative;
    display:block;

    height:260px;
    border-radius:20px;
    overflow:hidden;

    background-size:cover;
    background-position:center;

    padding:20px;
    color:#fff;
    text-decoration:none;

    filter:grayscale(100%);
    transform:translateY(0);

    transition:
        transform .3s ease,
        filter .3s ease,
        box-shadow .3s ease;
        
    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}
.step-card:hover{
    filter:grayscale(0%);
    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.18);
}
.step-arrow{
    position:absolute;
    top:15px;
    right:15px;

    width:32px;
    height:32px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:2;

    opacity:0;
    transition:.3s;
}

.step-card:hover .step-arrow{
    opacity:1;
}
.page-header{
  padding: 20px 0 0px 0;
}

.page-subtitle{
    display:block;
    color:#777;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.page-title{
font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: .95;
  margin-bottom: 15px;
}

.page-text{
    color:#fff;
    font-size:1.1rem;
}

.service-block{
    background:#fff;
    border-radius:30px;

    padding:50px;
    margin-bottom:25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

.service-content{
    max-width:550px;
}

.service-number{
    font-family:var(--font-heading);
    font-size:4rem;
    color:#d4a017;
    line-height:1;
    margin-bottom:15px;
}

.service-content h2{
    font-family:var(--font-heading);
    font-size:3rem;
    line-height:.95;
    margin-bottom:20px;
}

.service-content ul{
    margin:0;
    padding-left:20px;
}

.service-content li{
    margin-bottom:12px;
    color:#444;
    line-height:1.6;
}

.service-block video{
    width:100%;
    display:block;

    border-radius:24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}
.video-box{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.service-video{
    width:100%;
    display:block;
    border-radius:24px;
}

.video-play{
    position:absolute;
    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:80px;
    height:80px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.92);
    color:#111;

    font-size:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.video-play:hover{
    transform:translate(-50%,-50%) scale(1.08);
}
.video-play{
    opacity:1;
    transition:.3s;
}

.video-box.playing .video-play{
    opacity:0;
    pointer-events:none;
}

.video-box.playing:hover .video-play{
    opacity:1;
    pointer-events:auto;
}

.page-header{
color: #fff;background: #000;
}
.hero-full-bg{
    background:url('/theme/enerias/images/hero-house2.jpg') center bottom no-repeat;
    background-size:auto 100%;
      background-color: #000;
}

.hero-section{
    position:relative;
    min-height:600px;
}

.hero-content{
    position:relative;
    z-index:2;
    
    padding-top:80px;
}
.video-btn-custom{
    width:56px;
    height:56px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.25s;
}

.video-btn-custom:hover{
    transform:scale(1.08);
    color:#111;
}
.info-number.finished{
    animation:counterPop .4s ease;
}

@keyframes counterPop{
    0%{transform:scale(1);}
    50%{transform:scale(1.15);}
    100%{transform:scale(1);}
}