/* Sekcja hero � kontener */
.hero-fill {
    position: relative;
    overflow: hidden;  /* na wszelki wypadek, zeby overlay nie wystawal */}

/* Ciemna nakladka na zdjecie w tle */
.hero-fill::before {
    content: "";
    position: absolute;
    inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
    background: rgba(0, 0, 0, 0.6);  /* im wieksza liczba, tym ciemniej (0.3�0.7) */
    pointer-events: none;     /* nie blokuje klikania w linki itd. */}

/* Tresc ma byc ponad nakladka */
.hero-fill > * {
    position: relative;
    z-index: 1;}


#g-hero {
    background-image: url(../../../../../../../images/slide04.webp);
    background-size: cover;      /* na cala sekcje */
    background-position: center; /* wysrodkowane */
    background-repeat: no-repeat;
    color: #fff;}

#g-services {
    background: #fafafa;}


.info-fill {
    position: relative;
    overflow: hidden;  /* na wszelki wypadek, zeby overlay nie wystawal */}

.info-fill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 44, 109, 0.8);
    pointer-events: none;}

#g-info {
  
    color: #fff;}

.info-fill > * {
    position: relative;
    z-index: 1;}


/*----------------------------------------------------------------------------------------*/

.img1 {
    float: right;
    margin: 0px 10px 0px 20px;}

.img2 {
    max-height: 170px;}

.img3 {
    border: 1px solid #fafafa;
    border-radius: 40px;
    max-height: 200px;}


.txt1 {
    font-family: "Roboto", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 41px;
    color: #fff;}

.txt2 {
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;}

.txt3 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 18px;
    letter-spacing: 3.7px;
    color: #d5b100;}

.txt4 {
    font-family: "Roboto", Sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;}

.txt5 {
    font-family: "Roboto", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;}

.txt6 {
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;}





.info-box {
    border: 2px solid #012d6e;
    border-radius: 40px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    min-height: 150px;
    max-width: 400px;
    font-family: Arial, sans-serif;}

    /* Kolumna 1 � ikona */
    .info-box-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 10px;          /* maly margin po obu stronach ikony */
      font-size: 32px;         /* rozmiar ikony */
      flex: 0 0 auto;          /* szerokosc = tylko ikona + marginesy */
    }

    /* Kolumna 2 � tekst */
    .info-box-content {
      flex: 1 1 auto;
      text-align: center;      /* wysrodkowanie w poziomie */
      display: flex;
      flex-direction: column;
      justify-content: center; /* wysrodkowanie w pionie */
    }

    .info-box-title {
      font-size: 22px;
      font-weight: bold;
      letter-spacing: 1px;
      margin: 0;
      color: #012d6e;
    }

    .info-box-subtitle {
      font-size: 14px;
      margin: 4px 0 0;
      color: #555;
    }
