/* ==========================
   O NAMA - HERO
========================== */

.about-hero{
    position:relative;
    height:650px;
    overflow:hidden;
}

.hero-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center -80px;
    display:block;
}

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-start;
    padding-top:105px;
}

.hero-content{
    max-width:460px;
    margin-left:45px;
}

.hero-content span{
    display:inline-block;
    color:#df1e25;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:14px;
}

.hero-content h1{
    color:#13294b;
    font-size:40px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
    max-width:390px;
}

.hero-line{
    width:65px;
    height:4px;
    background:#df1e25;
    border-radius:30px;
    margin-bottom:22px;
}

.hero-content p{
    color:#5f6b78;
    font-size:16px;
    line-height:1.85;
    max-width:420px;
    margin-bottom:34px;
}

.hero-icons{
    display:flex;
    gap:30px;
}

.hero-icons div{
    text-align:center;
}

.hero-icons i{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#fff;
    color:#df1e25;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    margin:auto auto 10px;
    transition:.3s;
}

.hero-icons i:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.16);
}

.hero-icons h4{
    color:#13294b;
    font-size:13px;
    font-weight:700;
    letter-spacing:.3px;
}

/* ==========================
   CTA
========================== */

.cta{
    margin-top:60px;
}

.cta-wrapper{
    background:
    linear-gradient(rgba(15,31,58,.82), rgba(15,31,58,.82)),
    url(images/o-nama-bg.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

.about-hero{
    height:600px;
}

.hero-content{
    margin-left:30px;
    max-width:420px;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:15px;
}

}

@media(max-width:992px){

.about-hero{
    height:560px;
}

.hero-bg{
    object-position:center;
}

.hero-overlay{
    padding-top:85px;
}

.hero-content{
    margin-left:20px;
    max-width:390px;
}

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:15px;
}

.hero-icons{
    gap:20px;
}

.hero-icons i{
    width:50px;
    height:50px;
    font-size:18px;
}

}

@media(max-width:768px){

.about-hero{
    height:auto;
}

.hero-bg{
    min-height:650px;
    object-position:center;
}

.hero-overlay{
    align-items:flex-start;
    padding-top:90px;
}

.hero-content{
    margin:0 20px;
    max-width:100%;
}

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:15px;
    line-height:1.7;
}

.hero-icons{
    flex-wrap:wrap;
    gap:18px;
}

.hero-icons i{
    width:48px;
    height:48px;
    font-size:18px;
}

.hero-icons h4{
    font-size:12px;
}

/* =========================================================
   O NAMA - MOBILNA VERZIJA
========================================================= */

@media(max-width:768px){

    /* =========================
       HERO
    ========================= */

    .about-hero {
        width: 92%;
        height: auto;
        margin: 20px auto 0;
        overflow: hidden;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(0,0,0,.08);
    }

    /* Slika ide PRVA */
    .hero-bg {
        width: 100%;
        height: 250px;
        min-height: 0;
        object-fit: cover;
       object-position: 90% center;
        display: block;
    }

    /* Tekst više nije preko slike */
    .hero-overlay {
        position: static;
        display: block;
        padding: 0;
        background: #ffffff;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 30px 24px 28px;
    }

    /* O NAMA */
    .hero-content span {
        display: block;
        color: #df1e25;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }

    /* Naslov */
    .hero-content h1 {
        color: #13294b;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
        max-width: none;
        margin: 0 0 16px;
    }

    /* Crvena linija */
    .hero-line {
        width: 60px;
        height: 4px;
        margin: 0 0 18px;
    }

    /* Tekst */
    .hero-content p {
        color: #66717d;
        font-size: 13px;
        line-height: 1.7;
        max-width: none;
        margin: 0 0 25px;
    }

    /* =========================
       IKONICE
    ========================= */

    .hero-icons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 0;
    }

    .hero-icons div {
        text-align: center;
    }

    .hero-icons i {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin: 0 auto 9px;
    }

    .hero-icons h4 {
        color: #13294b;
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: .2px;
    }


    /* =========================
       CTA
    ========================= */

    .cta {
        width: 92%;
        margin: 35px auto 30px;
    }

    .cta-wrapper {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }

}

}