@keyframes rotatemagic {
  0% {
    opacity: 0;
    transform: rotate(0deg);
    top: -24px;
    left: -253px;
  }
  100% {
    transform: rotate(-30deg);
    top: -24px;
    left: -78px;
  }
}
@keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
@-webkit-keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
@-moz-keyframes animate-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -80px 0;
  }
}
:root {
  --blue: #00a1e4;
  --green: #72bf44;
  --dkblue: #00378b;
  --font-color: #1d2d35;
}

body > main {
  background-color: #F1F1F1;
}
body > main .page-hero {
  display: block;
  padding: 0;
  background: #ccbdae url("/img/spray-painting.jpg") no-repeat center center;
  background-attachment: fixed;
}
body > main .page-hero__wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  body > main .page-hero__container {
    padding: 120px 20px 80px;
  }
}
body > main .page-hero__container span {
  line-height: 1;
  background: transparent !important;
}
body > main h1 {
  text-align: center;
}
body > main #home-weather {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  color: white;
  background-color: var(--blue);
}
@media (min-width: 768px) {
  body > main #home-weather {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
body > main #home-weather__locale {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  body > main #home-weather__locale {
    text-align: left;
  }
}
body > main #home-weather__locale span {
  display: block;
}
body > main #home-weather__dtm {
  font-size: 15px;
  font-style: italic;
}
body > main #home-weather__title {
  font-size: 26px;
  font-weight: 700;
}
body > main #home-weather__info {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
body > main #home-weather__icon {
  width: 50px;
  height: 50px;
}
body > main #home-weather__icon img {
  width: 50px;
  height: 50px;
}
body > main #home-weather__temp {
  font-size: 40px;
  font-weight: 600;
}
body > main #home-weather__overview {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  body > main #home-weather__overview {
    font-size: 14px;
    text-align: right;
  }
}
body > main #main__our-ranges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
@media (min-width: 768px) {
  body > main #main__our-ranges {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  body > main #main__our-ranges {
    grid-template-columns: repeat(4, 1fr);
  }
}
body > main #main__our-ranges > article {
  padding: 20px 10px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
body > main #main__our-ranges > article a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > main #main__our-ranges > article a .index__our-ranges__icon {
  width: 150px;
  height: 150px;
  margin: 20px 0;
  padding: 36px;
  background-color: #BFFF91;
  border-radius: 50%;
}
body > main #main__our-ranges > article a .index__our-ranges__icon > svg {
  fill: #3F8C11;
  max-height: 75px;
}
body > main #main__our-ranges > article a strong {
  padding-bottom: 16px;
  color: black;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
body > main #main__our-ranges > article a span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  padding-bottom: 24px;
}
body > main #main__our-ranges > article figure {
  margin: 0;
  position: relative;
}
body > main #main__our-ranges > article figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 310px;
  border-radius: 10px;
}
body > main #main__our-ranges > article figure figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px;
  width: 100%;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  text-shadow: 1px 1px #000;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  body > main #main__our-ranges > article figure figcaption {
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px #000;
  }
}
body > main #main__our-ranges > article.span-range {
  padding: 0;
}
@media (min-width: 768px) {
  body > main #main__our-ranges > article.span-range {
    grid-column: span 2;
  }
}
body > main #main__our-ranges > article:hover {
  box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.35);
}
body > main > #cta__newsletter {
  display: grid;
  justify-items: center;
  padding: 26px;
  background: #00acec url("/img/psg-new-zeland-map-2.jpg") no-repeat center center;
  background-attachment: fixed;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  body > main > #cta__newsletter {
    padding: 60px 40px;
  }
}
body > main > #cta__newsletter a {
  display: grid;
  width: 100%;
  max-width: 1200px;
}
body > main > #cta__newsletter a > article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  color: white;
}
@media (min-width: 576px) {
  body > main > #cta__newsletter a > article {
    grid-template-columns: 2fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  body > main > #cta__newsletter a > article {
    grid-template-columns: 1fr 1fr;
  }
}
body > main > #cta__newsletter a > article h3 {
  margin-top: 0;
  padding-top: 10px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-top: 1px solid white;
}
body > main > #cta__newsletter a > article p {
  padding: 40px 0 60px;
  font-size: 18px;
}
body > main > #cta__newsletter a > article p + p {
  padding: 0;
}
body > main > #cta__newsletter a > article p strong {
  font-size: 42px;
  line-height: 1.2;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}
body > main > #cta__newsletter a > article p span {
  display: inline-block;
  padding: 16px 24px;
  background: #00acec;
  border: 2px solid white;
  border-radius: 8px;
  transition: all 0.3s;
}
body > main > #cta__newsletter a > article p span:hover, body > main > #cta__newsletter a > article p span:focus {
  text-decoration: underline;
  background-color: #0088CB;
}
body > main > #cta__newsletter a > article figure {
  display: grid;
  align-content: center;
  height: 100%;
}
body > main > #cta__newsletter a > article figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#locations {
  background-color: white;
  margin-bottom: -60px;
  padding: 40px 0 60px;
}
#locations__service-areas {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "service-info" "service-map";
  grid-gap: 40px;
}
@media screen and (min-width: 768px) {
  #locations__service-areas {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "service-map service-info";
    grid-gap: 100px;
  }
}

#service-areas__service-map {
  grid-area: service-map;
  align-self: center;
  text-align: center;
}
#service-areas__branch-info {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
#service-areas__branch-info article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "branch-info branch-directions";
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #ebebeb;
  background-color: white;
}
@media screen and (min-width: 1200px) {
  #service-areas__branch-info article {
    border-left: 1px solid #ebebeb;
  }
}
#service-areas__branch-info article:hover, #service-areas__branch-info article:active {
  background: #fafafa;
}
#service-areas__branch-info article:hover .branch-info h3, #service-areas__branch-info article:active .branch-info h3 {
  text-decoration: underline;
}
#service-areas__branch-info > p {
  text-align: right;
  background: #f7f7f7;
  margin: 0;
  padding: 15px;
}
@media screen and (min-width: 1200px) {
  #service-areas__branch-info > p {
    grid-column: span 2;
  }
}
#service-areas__branch-info > p a {
  text-decoration: none;
  color: var(--dkblue);
}
#service-areas__branch-info > p a:hover {
  text-decoration: underline;
}

.branch-info {
  grid-area: branch-info;
}
.branch-info h3 {
  margin: 10px 0;
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 700;
}
.branch-info h3 a {
  color: #00378b;
}
.branch-info p {
  color: rgba(0, 0, 0, 0.54);
}
.branch-info p a {
  color: var(--dkblue);
}
.branch-info p a:hover, .branch-info p a:active {
  text-decoration: underline;
}
.branch-info__phone {
  display: inline-block;
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--dkblue);
}
@media only screen and (min-width: 768px) {
  .branch-info__phone {
    color: var(--dkblue) !important;
    padding: 0;
    background: none;
  }
}
.branch-info__phone:hover, .branch-info__phone:active {
  background: var(--green);
}
@media only screen and (min-width: 768px) {
  .branch-info__phone:hover, .branch-info__phone:active {
    background: none;
  }
}
.branch__directions {
  grid-area: branch-directions;
}
.branch__directions > p a {
  display: inline-block;
  text-align: center;
  color: var(--font-color);
}
.branch__directions > p a > i.fa-directions {
  display: block;
  font-size: 5em;
  margin-bottom: 5px;
}
.branch__directions > p a:hover, .branch__directions > p a:active {
  color: var(--green);
}

/*# sourceMappingURL=home.css.map */
