/* HEADER */
#header {
  background-color: #f8f8f9;
  z-index: 100;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}

#header .pageWidth {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 89px;
}

#header .logo {
  background-repeat: no-repeat;
  background-image: url("logo_impacto_finnegans_black.svg");
  background-position: 0 center;
  background-size: contain;
  display: inline-block;
  width: 200px;
  height: 90px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#header a.phone {
  color: #4f4da7;
  padding-top: 30px;
  font-size: 23px;
  font-weight: 600;
  position: relative;
}

#header a.phone span {
  font-size: 17px;
}

#header a.cta {
  border-radius: 1em;
  padding: 0.3em 1em;
  font-weight: 700;
  font-size: clamp(0.85rem, 4vw, 0.9rem);
  background-color: var(--dorado-2);
  color: var(--marino);
  transition: all 0.2s;
  white-space: nowrap;
  align-self: flex-end;
  align-self: center;
}

#header a.cta:hover {
  background-color: var(--dorado-1);
}

@media screen and (max-width: 1100px) {
  #header .pageWidth {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1010px) {
  #header .pageWidth {
    height: 89px !important;
  }
}

@media screen and (max-width: 800px) {
  #header .logo {
    height: 30px;
    margin-top: 10px;
    order: -2;
    width: 100%;
  }
  #header a.phone {
    padding-top: 0;
    display: inline-block;
    margin: 0 auto;
    height: 26px;
  }
  #header a.cta {
    display: inline-block;
    margin: 0.5em auto 0.2em auto;
  }
  #header .pageWidth {
    height: auto !important;
    padding-bottom: 10px;
  }
  #header a.phone:before {
    top: 6px;
  }
  #header .pageWidth {
    box-sizing: border-box;
    padding-top: 6px;
    display: block;
    text-align: center;
  }

  #header {
    position: relative;
  }
}

/* FOOTER */
footer {
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  line-height: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

footer {
  background-color: #273347;
  /*     background-color: #8897A3; */
  /* padding: 60px 0 60px 0; */
  display: block;
}

footer .url {
  font-size: 19px;
  font-weight: 400;
}

footer .url a:hover {
  text-decoration: none;
  color: #80e6ff;
}

footer .location li:nth-child(2) {
  padding-left: 22px;
}

footer .location li:nth-child(3) {
  padding-left: 22px;
}

footer .location li.phone {
  position: relative;
  margin-top: 2px;
}

footer .location li.mail {
  position: relative;
  margin-top: 2px;
}

footer a {
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
}

footer .pageWidth {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .pageWidth ul {
  display: flex;
}

footer .social {
  margin: 0;
  /* height: 24px; */
  display: flex;
}

footer .social a {
  display: inline-block;
  background-color: #273347;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social a:not(:last-child) {
  margin-right: 7px;
}
footer .social a i {
  color: #fff;
  font-size: 17px;
}

footer .social a span {
  display: none;
}

footer .social a:hover {
  background-color: #02ceff;
  text-decoration: none;
}

@media screen and (max-width: 650px) {
  footer .pageWidth {
    flex-direction: column;
    padding-bottom: 20px;
  }
  footer .location {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  footer .pageWidth .location {
    flex-direction: column;
    align-items: center;
  }

  footer .location li.phone {
    position: relative;
    margin-top: 2px;
  }

  footer .location li.phone:before {
    left: 0;
  }

  footer .location li.mail {
    position: relative;
    margin-top: 2px;
  }

  footer .location li.mail:before {
    left: 0;
  }

  footer .location li:nth-child(2) {
    padding-left: 0;
  }

  footer .location li:nth-child(3) {
    padding-left: 0;
    margin-bottom: 20px;
    margin-top: 0;
  }
  footer .location li:nth-child(3):hover {
    cursor: pointer;
  }
}
