@import url(
  https://fonts.googleapis.com/css?family=Montserrat|Playfair+Display:400,
  700&display=swap
);
/*Fonts*/
/*Colours*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

a {
  text-decoration: none;
}

body,
html {
  margin: 0;
  padding: 0;
  font-size: 10px;
}

b,
strong {
  font-weight: bold;
}

body,
html {
  font-size: 10px;
}

@media only screen and (max-width: 1024px) {
  html {
    overflow-x: hidden;
  }
}

body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #061729;
}

.container {
  max-width: 90%;
  width: 148rem;
  margin: 0 auto;
}
.container.container-small {
  width: 130rem;
}
.container.container-smaller {
  width: 110rem;
}
.container.container-smallest {
  width: 94rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 0 0 100%;
}

.col-2 {
  flex: 0 0 49%;
  margin-right: 2%;
}
.col-2:nth-of-type(2n + 2) {
  margin-right: 0;
}

.col-3 {
  flex: 0 0 32%;
  margin-right: calc(4% / 2);
}
.col-3:nth-of-type(3n + 3) {
  margin-right: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
}

.img-container {
  position: relative;
  overflow: hidden;
}
.img-container > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  height: auto;
  width: auto;
  max-width: none;
}
.img-container > img + .container {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
}

h1 {
  font-size: 7.5em;
  color: #b1ebf5;
}

h2 {
  font-size: 4.2em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.3;
}

p,
li {
  font-size: 1.5em;
  line-height: 1.4;
}

.sub-title {
  font-size: 1.3em;
  color: #1e4580;
  letter-spacing: 3px;
  margin: 0 0 1.5rem;
}

a,
span {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}

a {
  color: #1e4580;
}
a:hover {
  color: #061729;
}

.read-more {
  display: flex;
  align-items: center;
  color: #4ba3c2;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  transition: all ease-in-out 0.3s;
  margin: 0;
}
.read-more span {
  background-color: #b1ebf5;
  margin-left: 1.5rem;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.3s;
}
.read-more span i {
  color: #4ba3c2;
}
.read-more:hover {
  opacity: 0.7;
}
.read-more:hover span {
  transform: rotateY(180deg);
}

@media only screen and (max-width: 1360px) {
  body,
  html {
    font-size: 9px;
  }
}

@media only screen and (max-width: 760px) {
  html {
    font-size: 6px;
  }
}

.buttons {
  display: flex;
  align-items: center;
}
.buttons .button {
  margin-right: 1rem;
}
.buttons .button:last-of-type {
  margin-right: 0;
}

.button {
  display: inline-block;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  color: white;
  font-size: 1.6em;
  border-radius: 25px;
  background-color: #4ba3c2;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  padding: 1.6rem 3.5rem;
  margin: 0 auto;
  border: 1px solid transparent;
}
.button:hover {
  border-color: #4ba3c2;
  color: #4ba3c2;
  background-color: white;
}

@media only screen and (max-width: 760px) {
  .button {
    padding: 2.5rem 4.5rem;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1.5rem 0;
}
header #header-logo {
  max-width: 43rem;
  width: 30%;
  margin-right: 1rem;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav > ul > li {
  font-size: 1.6em;
}
header nav > ul > li a {
  display: block;
  font-size: inherit;
  padding: 1.5rem;
}
header nav > ul > li.menu-item-has-children {
  position: relative;
  margin-right: 1rem;
}
header nav > ul > li.menu-item-has-children .expand-child-items {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header nav > ul > li.menu-item-has-children .expand-child-items i {
  color: #000000;
  transition: all ease-in-out 0.2s;
}
header nav > ul > li.menu-item-has-children .sub-menu {
  position: absolute;
  top: 90%;
  left: 0;
  display: block;
  width: 20rem;
  background-color: white;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all ease-in-out 0.2s;
}
header nav > ul > li.menu-item-has-children .sub-menu li {
  border-bottom: 1px solid #000000;
}
header nav > ul > li.menu-item-has-children .sub-menu li a {
  padding: 1.5rem 1rem;
}
header nav > ul > li.menu-item-has-children .sub-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
header nav > ul > li.menu-item-has-children .sub-menu li:last-of-type {
  border-bottom: none;
}
header nav > ul > li.menu-item-has-children:hover .expand-child-items i {
  transform: rotate(180deg);
}
header nav > ul > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: calc(100vh - 5.6rem);
}
header #mobile-menu {
  display: none;
  height: 3rem;
  width: 6rem;
  position: relative;
  cursor: pointer;
}
header #mobile-menu span {
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  transform: translateY(-50%);
  transition: all ease-in-out 0.3s;
  transition-delay: 0;
}
header #mobile-menu span:nth-of-type(2) {
  top: 50%;
}
header #mobile-menu span:nth-of-type(3) {
  top: 100%;
}

@media only screen and (max-width: 1200px) {
  header #header-logo {
    width: 25%;
  }
  header nav > ul > li a {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 1024px) {
  header #header-logo {
    width: auto;
  }
  header nav {
    position: absolute;
    top: 96px;
    left: -100%;
    width: 100%;
    background-color: white;
    transition: all ease-in-out 0.2s;
    max-height: calc(100vh - 5.6rem);
    overflow: hidden;
    z-index: 2;
  }
  header nav ul {
    display: block;
    border-top: 0.3rem solid #000000;
    border-bottom: 0.2rem solid #000000;
  }
  header nav ul li {
    border-bottom: 0.1rem solid #000000;
    font-size: 1.8em !important;
  }
  header nav ul li a {
    font-size: inherit !important;
    padding: 2rem 3rem !important;
  }
  header nav ul li.menu-item-has-children {
    margin: 0;
  }
  header nav ul li.menu-item-has-children:hover .expand-child-items i {
    transform: rotate(0deg);
  }
  header nav ul li.menu-item-has-children:hover .sub-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  header nav ul li.menu-item-has-children .expand-child-items {
    padding: 2rem;
    width: auto;
    height: 5.6rem;
    cursor: pointer;
  }
  header nav ul li.menu-item-has-children .expand-child-items.active i {
    transform: rotate(180deg);
  }
  header nav ul li.menu-item-has-children .sub-menu {
    position: relative;
    width: 100%;
    border: none;
  }
  header nav ul li.menu-item-has-children .sub-menu li a {
    padding: 1.5rem 3rem;
  }
  header nav ul li.menu-item-has-children .sub-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
    border-top: 0.2rem solid #000000;
    border-bottom: 0.1rem solid #000000;
  }
  header #mobile-menu {
    display: block;
  }
  header.mobile-active nav {
    left: 0;
  }
  header.mobile-active #mobile-menu span:first-of-type {
    top: 50%;
    transform: rotate(45deg);
  }
  header.mobile-active #mobile-menu span:nth-of-type(2) {
    left: -100%;
    opacity: 0;
  }
  header.mobile-active #mobile-menu span:last-of-type {
    top: 50%;
    transform: rotate(-45deg);
  }
}

footer {
  padding: 2rem 0;
  background-color: #061729;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container p {
  color: white;
  font-size: 1.4em;
}
footer .container p span {
  opacity: 0.7;
}
footer .container p a {
  color: inherit;
}
footer .container p a:hover {
  color: #f1efbc;
}

.banner {
  padding: 15% 0;
  display: flex;
  align-items: flex-end;
  width: 90%;
  margin-left: auto;
  text-align: right;
}
.banner p {
  color: white;
  font-size: 4.5em;
  font-family: "Playfair Display", serif;
  margin: 0 0 3rem;
}
.banner h1 {
  font-style: italic;
  color: #b1ebf5;
  font-family: "Playfair Display", serif;
  font-size: 7.5em;
  max-width: 50rem;
  margin-left: auto;
  margin: 0 0 0 auto;
}

.secondary-banner {
  padding: 11% 0;
  display: flex;
  align-items: flex-end;
  width: 90%;
  margin-left: auto;
  text-align: right;
}
.secondary-banner h1 {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 7em;
  max-width: 60rem;
  margin-left: auto;
  margin: 0 0 0 auto;
  font-weight: 400;
}

@media only screen and (max-width: 760px) {
  .banner,
  .secondary-banner {
    width: 100%;
    text-align: center;
  }
  .banner h1,
  .secondary-banner h1 {
    font-size: 4.5em;
    max-width: 100%;
  }
  .banner p,
  .secondary-banner p {
    font-size: 3em;
    margin-bottom: 1rem;
  }

  header nav {
    top: 65px;
  }
}

.accordion-item:last-child .accordion-item--title {
  border-bottom: 1px solid black;
}

.accordion-item:last-child .accordion-item--content .accordion-content--inner {
  border-bottom: 1px solid black;
  border-top: none;
}

.accordion-item--title {
  border: 1px solid black;
  border-bottom: none;
  padding: 1rem;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.accordion-item--title.active + .accordion-item--content {
  opacity: 1;
}
.accordion-item--title.active .accordion-item--toggle .fa-minus {
  opacity: 1;
  visibility: visible;
  z-index: 0;
  position: static;
}
.accordion-item--title.active .accordion-item--toggle .fa-plus {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
}
.accordion-item--title.active .accordion-item--toggle .fa-angle-down {
  transform: rotate(180deg);
}
.accordion-item--title .accordion-item--toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.accordion-item--title .accordion-item--toggle .fa-angle-down {
  transition: all ease-in-out 0.2s;
}
.accordion-item--title .accordion-item--toggle .fa-minus,
.accordion-item--title .accordion-item--toggle .fa-plus {
  transition: opacity ease-in-out 0.2s;
}
.accordion-item--title .accordion-item--toggle .fa-minus {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
}

.accordion-item--content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.2s;
}
.accordion-item--content .accordion-content--inner {
  padding: 2rem 1rem;
  border: 1px solid black;
  border-bottom: none;
}

.slider .img-container {
  width: 100%;
  padding-bottom: 56.25%;
}

.flex-columns {
  padding: 7rem 0;
  z-index: 1;
  position: relative;
  width: 80%;
  margin-top: -7rem;
}
.flex-columns h2 {
  font-size: 3.6em;
  line-height: 1.5;
}
.flex-columns h2 + p {
  margin-top: 3rem;
}
.flex-columns .sub-title {
  font-size: 1.3em;
}
.flex-columns p {
  font-size: 1.5em;
}
.flex-columns .button {
  margin-top: 2rem;
}
.flex-columns.flex-columns-grey {
  background-color: #f7f7f7;
}
.flex-columns.flex-columns-grey p {
  color: rgba(41, 48, 61, 0.65);
}
.flex-columns.flex-columns-blue {
  background-color: #1e4580;
}
.flex-columns.flex-columns-blue h2 {
  color: white;
}
.flex-columns.flex-columns-blue .sub-title {
  color: white;
  opacity: 0.5;
  margin-top: -2.5rem;
}
.flex-columns.flex-columns-blue p {
  color: white;
  opacity: 0.75;
}
.flex-columns .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex-columns .container .flex-column {
  flex: 1 0 47%;
  margin-right: 6%;
}
.flex-columns .container .flex-column:last-of-type {
  margin-right: 0;
}
.flex-columns iframe {
  min-height: 35rem;
}

@media only screen and (max-width: 980px) {
  .flex-columns .container {
    display: block;
  }
  .flex-columns .container .flex-column {
    margin-bottom: 5rem;
    width: 100%;
    flex: 0 0 100%;
  }
  .flex-columns .container .flex-column iframe {
    min-height: 45rem;
  }
}

@media only screen and (max-width: 760px) {
  .flex-columns {
    text-align: center;
    margin-top: 0 !important;
    width: 100%;
  }
}

.call-to-action {
  padding: 14rem 0 13rem;
  background-image: url(images/donation-bg.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: -10% center;
}
.call-to-action .container div {
  display: flex;
  align-items: center;
}
.call-to-action .container div .button {
  white-space: nowrap;
  margin-left: 1rem;
}

@media only screen and (max-width: 760px) {
  .call-to-action {
    text-align: center;
    padding: 9rem 0;
  }
  .call-to-action .container div {
    display: block;
  }
  .call-to-action .container div .button {
    margin: 3rem 0 0;
  }
}

.testimonials {
  background-color: #061729;
  padding: 8.5rem 0 8rem;
}
.testimonials .sub-title {
  margin: 0 auto 2.5rem;
  color: white;
  text-align: center;
  opacity: 0.5;
}

.testimonials-slider .testimonial {
  width: 100%;
  text-align: center;
  padding: 0 20%;
}
.testimonials-slider .testimonial p {
  color: white;
}
.testimonials-slider .testimonial .testimonial-title {
  margin-top: 5rem;
  font-family: "Playfair Display", serif;
  color: #4ba3c2;
  font-weight: 700;
  font-size: 1.6em;
}

@media only screen and (max-width: 760px) {
  .testimonials-slider .testimonial {
    padding: 0;
  }
}

.latest-news {
  background-color: #f1efbc;
  text-align: center;
  padding: 14rem 0 10rem;
}
.latest-news h2 {
  margin-bottom: 8rem;
}
.latest-news .latest-news--item {
  background-color: white;
  flex: 0 0 30%;
  margin-right: calc(10% / 2);
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
}
.latest-news .latest-news--item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.latest-news .latest-news--item .latest-news-item--content {
  text-align: left;
  padding: 3.5rem;
  display: flex;
  flex-wrap: wrap;
}
.latest-news .latest-news--item .latest-news-item--content > * {
  flex: 0 0 100%;
}
.latest-news .latest-news--item .latest-news-item--content .read-more {
  flex: 0 0 auto;
}
.latest-news .latest-news--item .latest-news-item--content h3 {
  font-size: 3em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 2rem;
}
.latest-news .latest-news--item .latest-news-item--content .post-excerpt {
  color: rgba(41, 48, 61, 0.65);
  font-size: 1.5em;
  line-height: 2;
  margin: 0 0 1.5rem;
}
.latest-news .latest-news--item:hover .read-more {
  opacity: 0.7;
}
.latest-news .latest-news--item:hover .read-more span {
  transform: rotateY(180deg);
}
.latest-news .latest-news--item .read-more {
  margin-top: auto;
}

@media only screen and (max-width: 980px) {
  .latest-news {
    padding: 8rem 0;
  }
  .latest-news .container {
    align-items: center;
    flex-direction: column;
  }
  .latest-news .container .latest-news--item {
    margin: 0 0 5rem;
    max-width: 420px;
    flex: auto;
    width: 420px;
  }
  .latest-news .container .button {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 500px) {
  .latest-news .container .latest-news--item {
    width: 90%;
  }
}

.partners {
  padding: 3rem 0;
}
.partners .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners .container img {
  max-width: calc((100% - 3rem) / 4);
  margin-right: 1rem;
}
.partners .container img:last-of-type {
  margin-right: 0;
}

.column-services {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.column-services > img {
  margin-bottom: -5rem;
  position: absolute;
  top: 0;
  right: 55%;
  height: calc(100% + 5rem);
  object-fit: cover;
  width: auto;
  min-width: 45%;
}
.column-services > img + .side-content {
  width: 55%;
  text-align: left;
}
.column-services > img + .side-content h2 {
  margin: 0 0 2.5rem;
}
.column-services > img + .side-content p {
  margin: 0;
}
.column-services > img + .side-content .sub-title {
  margin: 0 0 1.5rem;
}
.column-services > img + .side-content .services .service {
  flex: 0 0 48%;
  margin-right: 4%;
}
.column-services > img + .side-content .services .service:nth-of-type(3n + 3) {
  margin-right: 4%;
}
.column-services > img + .side-content .services .service:nth-of-type(2n + 2) {
  margin-right: 0;
}
.column-services .side-content {
  padding: 8rem 9rem;
  margin-left: auto;
  width: 100%;
  text-align: center;
}
.column-services .side-content h2 {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}
.column-services .side-content p {
  font-size: 1.5em;
  color: rgba(41, 48, 61, 0.65);
  max-width: 56rem;
  margin: 0 0 auto;
}
.column-services .side-content .sub-title {
  margin: 0 auto 1.5rem;
}
.column-services .side-content .services {
  margin-top: 4rem;
}
.column-services .side-content .services.service-content--yes {
  margin-top: 7em;
}
.column-services .side-content .services .service {
  flex: 0 0 32%;
  margin-right: calc(4% / 3);
}
.column-services .side-content .services .service:nth-of-type(3n + 3) {
  margin-right: 0;
}

.services {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.services .service {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  text-align: left;
}
.services .service .service-icon {
  width: 6rem;
  height: 6rem;
  flex: 0 0 6rem;
  border-radius: 50%;
  background-color: #b1ebf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
.services .service .service-icon img {
  max-width: 4.5rem;
}
.services .service h3 {
  font-size: 2em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.4;
}
.services .service p {
  font-size: 1.3em;
  color: rgba(41, 48, 61, 0.65);
  line-height: 1.5;
}

@media only screen and (max-width: 980px) {
  .column-services {
    display: block;
    text-align: center;
  }
  .column-services > img {
    position: static;
    width: auto;
    max-width: 50rem;
    margin: 9rem auto 0;
  }
  .column-services > img + .side-content {
    width: 100%;
    text-align: center;
  }
  .column-services > img + .side-content h2,
  .column-services > img + .side-content p {
    max-width: 100%;
  }
  .column-services > img + .side-content .button {
    margin: 0 auto;
  }
  .column-services > img + .side-content .services {
    margin-top: 7rem;
  }
}

@media only screen and (max-width: 760px) {
  .column-services .side-content {
    padding: 8rem 0;
    max-width: 90%;
    margin: 0 auto;
  }
  .services .service {
    flex: 0 0 45% !important;
    margin-right: 2% !important;
  }
  .services .service:nth-of-type(even) {
    margin-right: 0 !important;
  }
  .services .service .service-icon {
    width: 8rem;
    height: 8rem;
    flex: 0 0 8rem;
  }
}

@media only screen and (max-width: 480px) {
  .services .service {
    flex: 0 0 100% !important;
    margin-right: 0% !important;
  }
}

.story {
  background-color: #061729;
  padding: 9rem 0 16rem;
}
.story .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.story .container .story-left {
  width: 50%;
}
.story .container .story-left * {
  color: white;
}
.story .container .story-left h2 {
  margin-bottom: 2.5rem;
}
.story .container .story-left .sub-title {
  opacity: 0.5;
}
.story .container .story-left p {
  opacity: 0.75;
}
.story .container > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
}

@media only screen and (max-width: 760px) {
  .story {
    padding: 9rem 0;
  }
  .story .container {
    display: block;
    text-align: center;
  }
  .story .container .story-left {
    width: 100%;
  }
  .story .container > img {
    position: static;
    width: auto;
    margin: 5rem auto 0;
  }
}

.get-in-touch {
  position: relative;
  padding: 10% 0;
}
.get-in-touch .container * {
  max-width: 54rem;
}
.get-in-touch .container h2 {
  margin-bottom: 6rem;
}

@media only screen and (max-width: 760px) {
  .get-in-touch h2 {
    font-size: 3em;
  }
}

.checkmark-listing {
  text-align: center;
  background-color: #061729;
  padding: 8rem 0 9rem;
}
.checkmark-listing * {
  color: white;
}
.checkmark-listing .sub-title {
  opacity: 0.5;
}
.checkmark-listing .listing {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 91rem;
  margin: 5rem auto 0;
  padding-left: 10%;
}
.checkmark-listing .listing p {
  flex: 0 0 32%;
  width: 32%;
  margin-right: calc(4% / 2);
  text-align: left;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.checkmark-listing .listing p i {
  margin-right: 1rem;
  font-size: 1.5em;
  opacity: 0.5;
  margin-top: 0.2rem;
}
.checkmark-listing .listing p:nth-of-type(3n + 3) {
  margin-right: 0;
}

@media only screen and (max-width: 760px) {
  .checkmark-listing .listing {
    padding-left: 0;
  }
}

@media only screen and (max-width: 660px) {
  .checkmark-listing .listing p {
    flex: 0 0 50%;
    width: 50%;
    margin-right: 0;
    padding-right: 1rem;
  }
}

.location {
  padding: 8rem 0;
}
.location .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location .container > div {
  flex: 0 0 30%;
}
.location .container > div .button {
  margin-top: 5.5rem;
}
.location .container > div p {
  margin: 0;
}
.location .container > div .address {
  font-weight: 700;
  margin: 3rem 0 2rem;
}
.location .container > img {
  flex: 0 0 60%;
  width: 60%;
}

@media only screen and (max-width: 760px) {
  .location {
    text-align: center;
  }
  .location .container {
    display: block;
  }
  .location .container > img {
    width: 100%;
    margin-top: 5rem;
  }
}

.post-thumbnail {
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  overflow: hidden;
}
.post-thumbnail .post-image {
  padding-bottom: 16vw;
}
.post-thumbnail .post-content {
  padding: 2rem;
  background-color: white;
}
.post-thumbnail .post-content .post-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.post-thumbnail .post-content .post-info * {
  font-size: 1.4rem;
  padding: 0;
  text-transform: uppercase;
}
.post-thumbnail .post-content .post-info span {
  margin: 0 0.5rem;
}
.post-thumbnail .post-content h3 {
  font-size: 2.4rem;
  font-weight: 400;
}

.categories {
  display: flex;
  flex-wrap: wrap;
}
.categories .category {
  display: block;
  padding: 0.5rem;
}

.archive-categories {
  padding: 3rem 0;
}
.archive-categories .container {
  text-align: center;
}
.archive-categories .container a {
  display: inline-block;
  padding: 1rem;
  font-size: 1.8em;
}

.section-single-post {
  padding: 7rem 0 0;
}
.section-single-post .post-container {
  width: 1300px;
  max-width: 90%;
  margin: 0 auto;
  background-color: white;
  padding: 8rem 10rem 1.5rem;
}
.section-single-post .post-container .date {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}
.section-single-post .post-container h1 {
  text-align: center;
  font-size: 4.2em;
}
.section-single-post .post-container .container {
  max-width: 100%;
}
.section-single-post .post-navigation {
  padding: 4rem 0;
}
.section-single-post .post-navigation .container {
  position: relative;
  text-align: center;
}
.section-single-post .post-navigation .container a {
  font-size: 1.6em;
}
.section-single-post .post-navigation .post-prev,
.section-single-post .post-navigation .post-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.section-single-post .post-navigation .post-next {
  left: auto;
  right: 0;
}

/*# sourceMappingURL=app.min.css.map*/
