/* -------------------------------
  Breakpoints
------------------------------- */
/* -------------------------------
  Fonts
------------------------------- */
/* -------------------------------
  Breakpoints
------------------------------- */
/* -------------------------------
  Mixins
------------------------------- */

/* --- ornaments --- */
.m-ornaments {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.m-ornaments img {
  width: 8rem;
  height: auto;
  display: block;
  position: absolute;
}
@media (max-width: 480px) {
  .m-ornaments img {
    width: 5rem;
  }
}
.m-ornaments img.t-l, .m-ornaments img.t-r {
  top: 1rem;
  position: absolute;
}

.m-ornaments img.b-l, .m-ornaments img.b-r {
  bottom: 1rem;
}
.m-ornaments img.b-l, .m-ornaments img.t-l {
  left: 0;
}
@media (max-width: 960px) {
  .m-ornaments img.b-l, .m-ornaments img.t-l {
    left: 1rem;
  }
}
.m-ornaments img.b-r, .m-ornaments img.t-r {
  right: 0;
}
@media (max-width: 960px) {
  .m-ornaments img.b-r, .m-ornaments img.t-r {
    right: 1rem;
  }
}
.m-ornaments img.t-l {
  transform: rotate(90deg);
}
.m-ornaments img.t-r {
  transform: rotate(180deg);
}
.m-ornaments img.b-r {
  transform: rotate(-90deg);
}

/* --- content --- */
.m-content {
  width: 100%;
  padding: 6rem 4rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .m-content {
    padding: 6rem 2rem 8rem;
  }
}
@media (max-width: 350px) {
  .m-content {
    padding: 6rem 1rem 8rem;
  }
}
.m-content h3 {
  font-size: 2.5rem;
  color: #111111;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 480px) {
  .m-content h3 {
    font-size: 1.85rem;
    padding-bottom: 1.25rem;
  }
}
.m-content ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2.5rem;
  max-width: 45rem;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .m-content ul {
    grid-gap: 2rem;
  }
}
.m-content ul li {
  width: 100%;
  padding: 2rem 2.5rem 2.5rem;
  color: #34373c;
  background: #F7F7F7;
  /*background: linear-gradient(135deg, transparent 0.5rem, #F7F7F7 0) top left, linear-gradient(225deg, transparent 0.5rem, #F7F7F7 0) top right, linear-gradient(315deg, transparent 0.5rem, #F7F7F7 0) bottom right, linear-gradient(45deg, transparent 0.5rem, #F7F7F7 0) bottom left;
  */background-size: 50% 50%;
  background-repeat: no-repeat;
 /* background-image: radial-gradient(circle at 0 0, rgba(204, 0, 0, 0) 0.75rem, #F7F7F7 0.75rem), radial-gradient(circle at 100% 0, rgba(204, 0, 0, 0) 0.75rem, #F7F7F7 0.75rem), radial-gradient(circle at 100% 100%, rgba(204, 0, 0, 0) 0.75rem, #F7F7F7 0.75rem), radial-gradient(circle at 0 100%, rgba(204, 0, 0, 0) 0.75rem, #F7F7F7 0.75rem);
  */transition: transform 0.15s;
  position: relative;
}


@media (max-width: 960px) {
  .m-content ul li {
    max-width: 40rem;
  }
}
@media (max-width: 480px) {
  .m-content ul li {
    padding: 1.5rem 2rem;
  }
}
/*Arrow background colour*/
.m-content ul li:after {
  content: url("../assets/img/arrow-circle.svg");
  width: 3.5rem;
  height: 3.5rem;
  display: block;
  position: absolute;
  bottom: -0.75rem;
  right: 3rem;
  border: 2px solid #111111;
  border-radius: 50%;
  background-color: #f7f7f7;
  transition: transform 0.15s;
}


@media (max-width: 480px) {
  .m-content ul li:after {
    width: 2.75rem;
    height: 2.75rem;
    right: 2rem;
  }
}
.m-content ul li:hover:after {
  transform: translateX(0.5rem);
}
.m-content ul li h2 {
  font-size: 4rem;
  line-height: 1em;
  padding-bottom: 0.25rem;
}
@media (max-width: 480px) {
  .m-content ul li h2 {
    font-size: 2.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 350px) {
  .m-content ul li h2 {
    font-size: 2.5rem;
  }
}
/*Subheading text colour*/
.m-content ul li .m-time {
  font-size: 1.25rem;
  font-family: "NeueMontreal-Regular", sans-serif;
  color: rgba(52, 55, 60, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .m-content ul li .m-time {
    font-size: 1.125rem;
  }
}
.m-content .m-footer {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  text-align: center;
  padding-top: 12rem;
}
@media (max-width: 480px) {
  .m-content .m-footer {
    padding-top: 6rem;
  }
}
.m-content .m-footer .footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .m-content .m-footer .footer-info {
    padding-bottom: 0.25rem;
    flex-direction: column;
  }
}
.m-content .m-footer .footer-info span {
  color: #4c4c4c;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
@media (max-width: 480px) {
  .m-content .m-footer .footer-info span {
    font-size: 1rem;
    padding-bottom: 0.25rem;
    padding-right: 0;
  }
}
.m-content .m-footer .footer-info span:after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #4c4c4c;
  display: block;
  margin-left: 0.75rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 480px) {
  .m-content .m-footer .footer-info span:after {
    content: none;
  }
}
.m-content .m-footer .footer-info span:last-of-type:after {
  content: none;
}

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