@font-face {
  font-family: 'AzoSans';
  src: url('fonts/Azo_Sans_Regular.woff2') format('woff2'),
       url('fonts/Azo_Sans_Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AzoSans';
  src: url('fonts/Azo_Sans_Bold.woff2') format('woff2'),
       url('fonts/Azo_Sans_Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}


main {

    font-family: AzoSans, sans-serif;

    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    position: relative;
    box-sizing: border-box;
}


img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
    font-size: 1.9em;
    color: #EA4E3B;
    margin-top: 2em;
}

h2 {
    font-size: 1.9em;
    color: #6BBDCC;
}

.callBlock {
    position: absolute;
    top:0.5em;
    right: 4em;
}


@media (max-width: 800px) {
    .callBlock {
        position: static;
        text-align: center;
        margin-top: 1em;
        margin-bottom: -3em;
    }
}

.pleaseMakeACall {

    display: block;
    font-size: 0.86em;
    margin-bottom: 0px;
    color: #6BBDCC;
}

.phoneNumber {
    font-size: 1.92em;
    font-weight: normal;
    color: #EA4E3B;
    text-decoration: none;
    text-wrap: nowrap;
}

p {
    font-size: 1.4em;
    line-height: 1.4em;
    color: #707070;
}

p a, p a:visited, p a:hover, p a:active {
    color: #6BBDCC;
}


.grid {
  display: grid;
  grid-template-columns: repeat(5, 230px); /* 2 columns × 2 rows = 4 cells */
  /* grid-template-columns: repeat(auto-fit, minmax(254px, 1fr)); */
  grid-auto-rows: 160px;
  gap: 20px;                 /* optional spacing */
  justify-content: center;
  margin-bottom: 2em;
}

@media (max-width: 1300px) {

    .grid {
        grid-template-columns: repeat(3, 230px); /* 2 columns × 2 rows = 4 cells */
    }
}

@media (max-width: 800px) {

    .grid {
        grid-template-columns: repeat(2, 230px); /* 2 columns × 2 rows = 4 cells */
    }
}

@media (max-width: 500px) {

    .grid {
        grid-template-columns: repeat(1, 230px); /* 2 columns × 2 rows = 4 cells */
    }
}

.grid div {
  width: 230px;
  height: 160px;
  background: #EA4E3B;          /* just to visualize the cells */

  padding: 0.5em;
  box-sizing: border-box;

  color: white;
  font-size: 1.8em;
}

.imprint {
    font-size: 0.94em;
    color: #6BBDCC;
    margin-top: 4em;
    margin-bottom: 2em;
    text-align: center;
}

.imprint a {
    color: #6BBDCC;
}



@media (max-width: 800px) {
    .callBlock {
        position: static;
        text-align: center;
        margin-top: 2em;
        margin-bottom: -4em;
    }

    h1 {
        font-size: 1.9em;
        color: #EA4E3B;
        margin-top: 3em;
        text-align: center;
    }

    .pets {
        width: 100%;
    }
}

