@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}
html{
  font-size: 10px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:link {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

ul .hidden,
ul #hidden, li .hidden,
li #hidden {
  display: none;
}


footer {
  grid-area: footer;
  background-color: #507E8D;
  width: 100%;
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 15% 15% 15%;
      grid-template-columns: 40% 15% 15% 15%;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
}

footer span.company {
  margin-top: 15px;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 1;
}

footer span.email {
  -ms-grid-column: 2;
      grid-column-start: 2;
  grid-column-end: 2;
  margin-top: 15px;
}

footer span.number {
  -ms-grid-column: 3;
      grid-column-start: 3;
  grid-column-end: 3;
  margin-top: 15px;
}

footer span.facebook {
  margin-top: 15px;
  -ms-grid-column: 4;
      grid-column-start: 4;
  grid-column-end: 4;
}

@media only screen and (min-width: 1px) and (max-width: 1145px) {
  footer {
    height: 125px;
    display: -ms-grid;
    display: grid;
    position: absolute;
    margin-top: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-area: footer;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
  }
  footer span.company {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
  }
  footer span.email {
    -ms-grid-column: 1;
    grid-column: 1 / 1;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
  }
  footer span.number {
    -ms-grid-column: 2;
    grid-column: 2 / 2;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
  }
  footer span.facebook {
    -ms-grid-column: 3;
    grid-column: 3 / 3;
    -ms-grid-row: 2;
    grid-row: 2 / 2;
  }
}

.acf-error-message {
    height: 40px;
    position: relative;
    display: inline-block;
    color: #fff;
    background: #F55E4F;
    margin: 5px 0 15px;
    padding: 1px 12px;
    min-height: 0px;
    border-left: #dd4232 solid 6px;
    font: normal 400 16px 'Open sans', sans-serif;
    border-radius: 3px;
    transition: 0.3ms;
    pointer-events: none;
}

.acf-error-message p {
    margin-top: 7px;
}

.acf-error-message:after {
    content: "";
    width: 0;
    height: 0;
    border: transparent 5px solid;
    border-top-color: #F55E4F;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 10px;
}

.acf-error-message.closeError {
    animation-name: closeError;
    animation-direction: forwards;
    animation-duration: 0.3s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes closeError {
    0% {
        opacity: 1;
        height: 40px;
        margin: 5px 0 15px;
        padding: 1px 12px;
        display: inline-block;
    }

    99% {
        height: 0px;
        margin: 0px;
        padding: 0px;
        opacity: 0;
        display: inline-block;
    }  
    100% {
        height: 0px;
        margin: 0px;
        padding: 0px;
        opacity: 0;
        display:none;
    }
}
