@charset "UTF-8";
/*
	----------------
	- Reset styles
	----------------
*/
* {
  margin: 0;
  padding: 0;
}
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 62.5%;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  overflow-y: scroll;
}
main { display: block; }
iframe { border: 0; }
img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
b, strong { font-weight: bolder; }
ul, ol { list-style: none; }
blockquote, q { quotes: none; }
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, textarea, select, button {
  background: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
}
[type='search'] { -webkit-appearance: textfield; }
button, [type='submit'] {
  -webkit-appearance: none;
  cursor: pointer;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  -webkit-user-select: none; user-select: none;
}
svg {
  fill: currentcolor;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
address { font-style: inherit; }

/* Screen reader text */
.sr-only, .logo__text, .labels\:none .input__label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px;
}

/*
	----------------
	- css Variables
	----------------
*/
:root {
  --site-gutter: 6vw;
  --push: 5.4rem;
  --sp-1: 0.64rem;
  --sp-2: 1.28rem;
  --sp-3: 2.24rem;
  --sp-4: 3.2rem;
  --sp-5: 4.16rem;
  --sp-6: 5.12rem;
  --sp-7: 6.08rem;
  --sp-8: 7.04rem;
  --sp-9: 8rem;
  --placeholder--opacity: 0.6;
  --line-height: 1.6;
  --text-crop-top: 0.65;
  --text-crop-bottom: 0.77;
}

@media (min-width: 860px) {
  :root {
    --push: 9rem;
    --sp-1: 0.8rem;
    --sp-2: 1.6rem;
    --sp-3: 2.8rem;
    --sp-4: 4rem;
    --sp-5: 5.2rem;
    --sp-6: 6.4rem;
    --sp-7: 7.6rem;
    --sp-8: 8.8rem;
    --sp-9: 10rem;
  }
}

/*
	----------------
	- Custom Fonts
	----------------
*/
/*
@font-face {
	font-family: "proxima-nova";
	src: url("../fonts/proxima-nova.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "proxima-nova";
	src: url("../fonts/proxima-nova-700.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}
*/
/*
	----------------
	- Width
	----------------
*/
.width {
  --width: 1000px;
  max-width: 1000px;
  width: calc(100% - 6vw);
  width: calc(100% - var(--site-gutter));
  margin-left: auto;
  margin-right: auto;
}
.width .width { width: auto; }
.width--ch {
  --width: 80ch;
  max-width: 80ch;
}
.width--min {
  /*
  --width: 800px;
  max-width: 800px;
  */
  --width: 866px;
  max-width: 866px;
}
.width--max {
  --width: 1400px;
  max-width: 1400px;
}
.w\:100 { width: 100%; }

@supports (padding: 0px) {
  @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
    body .width, body .mobile-header, body .mobile-nav .nav__link, body .mobile-nav .nav__dropdown a {
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }
    body .width { width: auto; }
    body .width .width {
      padding-left: 0;
      padding-right: 0;
    }
  }
}

/*
	----------------
	- max-width classes
	----------------
*/
.max\:50 { max-width: 50px; }
.max\:100 { max-width: 100px; }
.max\:150 { max-width: 150px; }
.max\:200 { max-width: 200px; }
.max\:250 { max-width: 250px; }
.max\:300 { max-width: 300px; }
.max\:350 { max-width: 350px; }
.max\:400 { max-width: 400px; }
.max\:450 { max-width: 450px; }
.max\:500 { max-width: 500px; }
.max\:550 { max-width: 550px; }
.max\:600 { max-width: 600px; }
.max\:650 { max-width: 650px; }
.max\:700 { max-width: 700px; }
.max\:750 { max-width: 750px; }
.max\:800 { max-width: 800px; }
.max\:850 { max-width: 850px; }
.max\:900 { max-width: 900px; }
.max\:950 { max-width: 950px; }
.max\:1000 { max-width: 1000px; }
.max\:1050 { max-width: 1050px; }
.max\:1100 { max-width: 1100px; }
.max\:1150 { max-width: 1150px; }
.max\:1200 { max-width: 1200px; }
.max\:1250 { max-width: 1250px; }
.max\:1300 { max-width: 1300px; }
.max\:1350 { max-width: 1350px; }
.max\:1400 { max-width: 1400px; }

/*
	----------------
	- Hide content based on screen size
	----------------
*/
@media (max-width: 419px) { .hide\:lt-sm { display: none !important; } }
@media (min-width: 420px) { .hide\:sm { display: none !important; } }
@media (max-width: 639px) { .hide\:lt-md { display: none !important; } }
@media (min-width: 640px) { .hide\:md { display: none !important; } }
@media (max-width: 859px) { .hide\:lt-lg { display: none !important; } }
@media (min-width: 860px) { .hide\:lg { display: none !important; } }
/*
@include media-lt-xl(){
	.hide\:lt-xl{ display: none !important; }
}
@include media-xl(){
	.hide\:xl{ display: none !important; }
}
*/
/*
	----------------
	- Hide or show header elements depending on width
	----------------
*/
@media (min-width: 771px) { .header\:mobile { display: none !important; } }
@media (max-width: 770px) {
  .header\:desktop { display: none !important; }
  .off-screen--active body { overflow: hidden; }
}

/*
	----------------
	- Commonly used patterns
	----------------
*/
.p\:cover, .site-navigation .nav__item::after, .off-screen__nav .nav__arrow::after, .social-icons a::before,
.owl-nav button::before, .modal__close::before, .modal-overlay, .hero__overlay, .button--ghost::after,
.ratio > :not(.ratio__content), .ratio > picture > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bs\:cover, .hero, .ratio {
  background-size: cover;
  background-position: 50%;
}
.ratio > *, .ratio > picture > img { object-fit: cover; }

/*
	----------------
	- Box Shadows
	----------------
*/
.mobile-header { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.modal { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/*
	----------------
	- Grid
	----------------
*/
.grid, .fluid {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 250px;
  --basis: 250px;
  --gap: 0px;
  --row-gap: 0px;
}
.grid > *, .fluid > * {
  flex: 1 1 0%;
  flex-basis: inherit;
  min-width: 0;
  max-width: calc(100vw - var(--site-gutter));
  box-sizing: content-box;
}
.grid__fix {
  margin-top: 0 !important;
  order: 1;
}
@supports (grid-area: auto) {
  .grid {
    display: grid;
    grid-gap: var(--row-gap) var(--gap);
    gap: var(--row-gap) var(--gap);
    grid-template-columns: repeat(auto-fill, minmax(var(--basis), 1fr));
  }
  .grid, .grid > * {
    padding: 0 !important;
    margin: 0 !important;
  }
  .grid__fix { display: none; }
}
@supports (width: calc(min(1%, 10%))) {
  .grid { grid-template-columns: repeat(auto-fill, minmax(min(var(--basis), 100%), 1fr)); }
  .grid > * { max-width: none; }
}

/*
	----------------
	- Columns: These classes force a certain amount of columns
	----------------
*/
[class*="columns:"] {
  grid-template-columns: repeat(var(--columns, 1), 1fr);
  flex-basis: calc(100% / var(--columns,1) - var(--gap));
  --basis: calc(100% / var(--columns,1) - var(--gap));
}
.columns\:1 { --columns: 1; }
.columns\:2 { --columns: 2; }
.columns\:3 { --columns: 3; }
.columns\:4 { --columns: 4; }
@media (min-width: 420px) {
  .sm__columns\:1 { --columns: 1; }
  .sm__columns\:2 { --columns: 2; }
  .sm__columns\:3 { --columns: 3; }
  .sm__columns\:4 { --columns: 4; }
}
@media (min-width: 640px) {
  .md__columns\:1 { --columns: 1; }
  .md__columns\:2 { --columns: 2; }
  .md__columns\:3 { --columns: 3; }
  .md__columns\:4 { --columns: 4; }
}
@media (min-width: 860px) {
  .lg__columns\:1 { --columns: 1; }
  .lg__columns\:2 { --columns: 2; }
  .lg__columns\:3 { --columns: 3; }
  .lg__columns\:4 { --columns: 4; }
}

/*
	----------------
	- .grid:x
	- These classes create grid columns using the most ideal basis value
	----------------
*/
.grid\:2 {
  --basis: calc((var(--width) - var(--gap, 0px) * 1) / 2.99);
  flex-basis: calc(1000px / 2.99);
}
.grid\:3 {
  --basis: calc((var(--width) - var(--gap, 0px) * 2) / 3.99);
  flex-basis: calc(1000px / 3.99);
}
.grid\:4 {
  --basis: calc((var(--width) - var(--gap, 0px) * 3) / 4.99);
  flex-basis: calc(1000px / 4.99);
}

/*
	----------------
	- Flexbox
	----------------
*/
.flex { display: flex; }
.flex > * {
  flex: 0 1 auto;
  min-width: 0;
  box-sizing: content-box;
}
.flex--inline { display: inline-flex; }
.flex-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-side > * {
  box-sizing: content-box;
  min-width: 0;
}
.flex-side__primary { flex: 9999 1 50%; }
.flex-side__secondary { flex: 1 1 auto; }

/* This pulls the right column up on the index page */
@media (min-width: 1150px) {
  .flex-side__secondary--overlaid {
    position: relative;
    top: -310px;
    margin-bottom: -310px;
  }
}

/*
	----------------
	- Ratio
	----------------
*/
/*
	1: Flexbox fallback
	2: Only necessary when .ratio has a max-height
*/
.ratio {
  display: flex;
  display: grid;
  align-items: center;
  position: relative;
}
.ratio::before {
  flex: 1 1 1%;
  content: '';
  padding-top: 100%;
  grid-area: 1 / 1 / 2 / 2;
  pointer-events: none;
}
.ratio > * {
  flex: 1 1 100%;
  min-width: 0;
  grid-area: 1 / 1 / 2 / 2;
  border-radius: inherit;
  max-height: inherit;
}
.ratio.ratio--contain > *, .ratio.ratio--contain > picture > img { object-fit: contain; }
.ratio > i { pointer-events: none; }
.ratio__content { position: relative; }
.ratio\:30::before { padding-top: 30%; }
.ratio\:40::before { padding-top: 40%; }
.ratio\:50::before { padding-top: 50%; }
.ratio\:60::before { padding-top: 60%; }
.ratio\:66::before { padding-top: 66%; }
.ratio\:70::before { padding-top: 70%; }
.ratio\:75::before { padding-top: 75%; }
.ratio\:80::before { padding-top: 80%; }
.ratio\:90::before { padding-top: 90%; }
.ratio\:100::before { padding-top: 100%; }
.ratio\:110::before { padding-top: 110%; }
.ratio\:120::before { padding-top: 120%; }
.ratio\:130::before { padding-top: 130%; }
.ratio\:140::before { padding-top: 140%; }
.ratio\:150::before { padding-top: 150%; }
.ratio\:160::before { padding-top: 160%; }
.ratio\:170::before { padding-top: 170%; }
.ratio\:180::before { padding-top: 180%; }
.ratio\:190::before { padding-top: 190%; }
.ratio\:200::before { padding-top: 200%; }
.ratio\:wide::before { padding-top: 56.25%; }

@media (min-width: 640px) {
  .md__ratio\:30::before { padding-top: 30%; }
  .md__ratio\:40::before { padding-top: 40%; }
  .md__ratio\:50::before { padding-top: 50%; }
  .md__ratio\:60::before { padding-top: 60%; }
  .md__ratio\:66::before { padding-top: 66%; }
  .md__ratio\:70::before { padding-top: 70%; }
  .md__ratio\:75::before { padding-top: 75%; }
  .md__ratio\:80::before { padding-top: 80%; }
  .md__ratio\:90::before { padding-top: 90%; }
  .md__ratio\:100::before { padding-top: 100%; }
  .md__ratio\:110::before { padding-top: 110%; }
  .md__ratio\:120::before { padding-top: 120%; }
  .md__ratio\:130::before { padding-top: 130%; }
  .md__ratio\:140::before { padding-top: 140%; }
  .md__ratio\:150::before { padding-top: 150%; }
  .md__ratio\:160::before { padding-top: 160%; }
  .md__ratio\:170::before { padding-top: 170%; }
  .md__ratio\:180::before { padding-top: 180%; }
  .md__ratio\:190::before { padding-top: 190%; }
  .md__ratio\:200::before { padding-top: 200%; }
  .md__ratio\:wide::before { padding-top: 56.25%; }
}

@media (min-width: 860px) {
  .lg__ratio\:30::before { padding-top: 30%; }
  .lg__ratio\:40::before { padding-top: 40%; }
  .lg__ratio\:50::before { padding-top: 50%; }
  .lg__ratio\:60::before { padding-top: 60%; }
  .lg__ratio\:66::before { padding-top: 66%; }
  .lg__ratio\:70::before { padding-top: 70%; }
  .lg__ratio\:75::before { padding-top: 75%; }
  .lg__ratio\:80::before { padding-top: 80%; }
  .lg__ratio\:90::before { padding-top: 90%; }
  .lg__ratio\:100::before { padding-top: 100%; }
  .lg__ratio\:110::before { padding-top: 110%; }
  .lg__ratio\:120::before { padding-top: 120%; }
  .lg__ratio\:130::before { padding-top: 130%; }
  .lg__ratio\:140::before { padding-top: 140%; }
  .lg__ratio\:150::before { padding-top: 150%; }
  .lg__ratio\:160::before { padding-top: 160%; }
  .lg__ratio\:170::before { padding-top: 170%; }
  .lg__ratio\:180::before { padding-top: 180%; }
  .lg__ratio\:190::before { padding-top: 190%; }
  .lg__ratio\:200::before { padding-top: 200%; }
  .lg__ratio\:wide::before { padding-top: 56.25%; }
}

.tagline {
  color:#fff;
  position:absolute;
  width:auto !important;
  height:auto !important;
  font-size:44px;
  line-height:1em;
  font-weight:900;
  letter-spacing:-1px;
}
.tagline strong {
  color:#b2956d;
}
.tagline_left_bottom {
  top:auto !important;
  right:auto !important;
  left:25px !important;
  bottom:25px !important;
}
.tagline_left_top {
  top:25px !important;
  right:auto !important;
  left:25px !important;
  bottom:auto !important;
}
.tagline_left_center {
  left:25px !important;
  right:auto !important;
  top:50% !important;
  transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
}
.tagline_center_bottom {
  left:50% !important;
  right:auto !important;
  bottom:25px !important;
  top:auto !important;
  transform:translateX(-50%);
  -webkit-transform:translateX(-50%);
}
.tagline_center_top {
  left:50% !important;
  right:auto !important;
  top:25px !important;
  bottom:auto !important;
  transform:translateX(-50%);
  -webkit-transform:translateX(-50%);
}
.tagline_center_center {
  left:50% !important;
  right:auto !important;
  top:50% !important;
  bottom:auto !important;
  transform:translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
}
.tagline_right_bottom {
  left:auto !important;
  right:25px !important;
  top:auto !important;
  bottom:25px !important;
}
.tagline_right_top {
  left:auto !important;
  right:25px !important;
  top:25px !important;
  bottom:auto !important;
}
.tagline_right_center {
  left:auto !important;
  right:25px !important;
  top:50% !important;
  bottom:auto !important;
  transform:translateY(-50%);
  -webkit-transform:translateY(-50%);
}
.thumb_tagline {
  font-size:26px;
  line-height:1em;
  font-weight:900;
}
.darken {
  background-color:#000;
  position:absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
}

/*
	----------------
	- Gaps: Used in grids, flexbox and cells
	----------------
*/
.gap\:1 {
  margin: -0.8rem;
  --row-gap: var(--sp-1);
  --gap: var(--sp-1);
}
.gap\:1 > * {
  margin-top: 0.8rem;
  padding-left: 0.8rem;
}
.gap\:2 {
  margin: -1.6rem;
  --row-gap: var(--sp-2);
  --gap: var(--sp-2);
}
.gap\:2 > * {
  margin-top: 1.6rem;
  padding-left: 1.6rem;
}
.gap\:3 {
  margin: -2.8rem;
  --row-gap: var(--sp-3);
  --gap: var(--sp-3);
}
.gap\:3 > * {
  margin-top: 2.8rem;
  padding-left: 2.8rem;
}
.gap\:4 {
  margin: -4rem;
  --row-gap: var(--sp-4);
  --gap: var(--sp-4);
}
.gap\:4 > * {
  margin-top: 4rem;
  padding-left: 4rem;
}
.gap\:5 {
  margin: -5.2rem;
  --row-gap: var(--sp-5);
  --gap: var(--sp-5);
}
.gap\:5 > * {
  margin-top: 5.2rem;
  padding-left: 5.2rem;
}
.gap\:6 {
  margin: -6.4rem;
  --row-gap: var(--sp-6);
  --gap: var(--sp-6);
}
.gap\:6 > * {
  margin-top: 6.4rem;
  padding-left: 6.4rem;
}
.gap\:7 {
  margin: -7.6rem;
  --row-gap: var(--sp-7);
  --gap: var(--sp-7);
}
.gap\:7 > * {
  margin-top: 7.6rem;
  padding-left: 7.6rem;
}
.gap\:8 {
  margin: -8.8rem;
  --row-gap: var(--sp-8);
  --gap: var(--sp-8);
}
.gap\:8 > * {
  margin-top: 8.8rem;
  padding-left: 8.8rem;
}
.gap\:9 {
  margin: -10rem;
  --row-gap: var(--sp-9);
  --gap: var(--sp-9);
}
.gap\:9 > * {
  margin-top: 10rem;
  padding-left: 10rem;
}
.gap\:push {
  margin: -9rem;
  --row-gap: var(--push);
  --gap: var(--push);
}
.gap\:push > * {
  margin-top: 9rem;
  padding-left: 9rem;
}
.row-gap\:0 { --row-gap: 0px; }
.row-gap\:1 { --row-gap: var(--sp-1); }
.row-gap\:2 { --row-gap: var(--sp-2); }
.row-gap\:3 { --row-gap: var(--sp-3); }
.row-gap\:4 { --row-gap: var(--sp-4); }
.row-gap\:5 { --row-gap: var(--sp-5); }
.row-gap\:6 { --row-gap: var(--sp-6); }
.row-gap\:7 { --row-gap: var(--sp-7); }
.row-gap\:8 { --row-gap: var(--sp-8); }
.row-gap\:9 { --row-gap: var(--sp-9); }
.row-gap\:push { --row-gap: var(--push); }
.wrap\:gap::before, .wrap\:gap::after {
  content: '';
  display: table;
}
[class*="gap:"] {
  margin: calc(var(--row-gap, 0px) * -1) calc(var(--gap, 0px) * -1);
  margin-right: 0;
  margin-bottom: 0;
}
[class*="gap:"] > * {
  margin-top: var(--row-gap, 0px);
  padding-left: var(--gap, 0px);
}

/*
	----------------
	- Body
	----------------
*/
body {
  background-color: #fff;
  color: #4b3f3f;
  font-size: 1.6rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}
a {
  color: #b2956d;
  text-decoration: none;
}
a:hover { color: #9b7c51; }
.button, a.button { color: #fff; }
.button {
  border-radius: 0;
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 1.8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
  vertical-align: middle;
}
.button:active { top: 1px; }
.button:hover { text-decoration: none; }
.button > * + * { margin-left: .5em; }
.button--primary { background-color: #b2956d; }
.button--primary:hover { background-color: #c5b092; }
.button--secondary { background-color: #927c7c; }
.button--secondary:hover { background-color: #b2a3a3; }
.button--minimal {
  background-color: #e5e0e0;
  color: #211c1c;
}
.button--minimal:hover {
  color: #211c1c;
  background-color: #d5cdcd;
}
.button--ghost, a.button--ghost { color: inherit; }
.button--ghost::after {
  content: '';
  border-radius: inherit;
  border: 1px solid currentColor;
  transition: opacity 0.2s ease-in-out;
}
.button--ghost:hover { color: inherit; }
.button--ghost:hover::after { opacity: 0.55; }
[type='submit'].button--ghost {
  border: 1px solid currentColor;
  padding-top: calc(0.8em - 1px);
  padding-bottom: calc(0.8em - 1px);
}
.button--simple {
  border-bottom: 2px solid #b2956d;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 0;
  justify-content: flex-start;
  padding: .4em .6em .4em 0;
  color: inherit !important;
}
.button--simple::after {
  content: '→';
  margin-left: .5em;
  transition: all 0.3s ease-in-out;
}
.button--simple:hover::after { transform: translateX(7px); }
.hero .button--simple { min-width: 230px; }
.button--form { width: 100%; }

/*
	----------------
	Format: This neatly formats blocks of text
	----------------
*/
.format > * {
  margin-top: 1.28em;
  margin-bottom: 1.28em;
  margin-top: var(--format, 1.28em);
  margin-bottom: var(--format, 1.28em);
}
.format h1, .format h2, .format h3, .format h4 {
  margin-top: 2.5em;
  margin-top: var(--format-headers, 2.5em);
  font-weight: bold;
}
.format h3 { font-weight: bold; }
.format h4 { font-weight: bold; }
.format > *:first-child { margin-top: 0; }
.format > *:last-child, .format h1, .format h2, .format h3, .format h4 { margin-bottom: 0; }
.format blockquote {
  background-color: #f2f0f0;
  padding: 0.8rem;
  border-left: 4px solid;
  border-left-color: #d5cdcd;
}
.format\:-3 { --format: 0; }
.format\:-2 { --format: calc(var(--line-height) * 0.3em); }
.format\:-1 { --format: calc(var(--line-height) * 0.6em); }
.format\:reset { --format: calc(var(--line-height) * 0.8em); }
.format\:1 { --format: calc(var(--line-height) * 1em); }

/*
	----------------
	- Forms
	----------------
*/
.form {
  display: flex;
  flex-wrap: wrap;
}
.form > * { flex: 1 1 100%; }
.input__label { display: block; }
.input__label_sm {
  font-size:12px;
  font-weight:bold;
}

/*
	----------------
	- Label styles
	----------------
*/
.labels\:none .input\:check + .input__label { display: inline-block; }

/*
	----------------
	- Animated labels
	----------------
*/
[data-animate-label] { position: relative; }
[data-animate-label] ::-webkit-input-placeholder { color: rgba(0, 0, 0, 0); }
[data-animate-label] ::placeholder { color: rgba(0, 0, 0, 0); }
[data-animate-label] .input__label {
  left: 1em;
  line-height: 50px;
  margin: 0;
  max-width: calc(100% - 2em);
  opacity: 0.6;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 0%;
  transition: all 0.2s linear;
  transform-origin: 0% 50%;
  white-space: nowrap;
  z-index: 1;
}
.labels\:animate-break [data-animate-label] .input__label {
  left: 0.5em;
  padding: 0 0.5em;
}
.labels\:animate-break [data-animate-label] .input__label::before {
  content: '';
  background-color: white;
  display: block;
  height: .6em;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.labels\:animate-break [data-animate-label].translate-label .input__label {
  font-weight: bold;
  opacity: 1;
  transform: translateY(-50%) scale(0.8);
}
.labels\:animate-break [data-animate-label].translate-label .input__label::before { opacity: 1; }

/*
	----------------
	- Form groups
	----------------
*/
/*
	----------------
	- Form submit
	----------------
*/
.form__submit {
  border-top: 1px solid;
  border-top-color: #e5e0e0;
  padding-top: var(--gap, 15px);
}
@media (min-width: 640px) {
  .form__group + .form__submit { padding-left: 33%; }
}

/*
	----------------
	- Form inherit
	----------------
*/
/*
	----------------
	- Form errors (Craft)
	----------------
*/
.form__errors { margin-top: 0; }
.form__errors span {
  background: #f7e2e2;
  color: #950606;
  padding: .4em .8em;
  border-radius: 4px;
}

/*
	----------------
	- Inputs and textareas
	----------------
*/
input#harberProtection { display: none !important; }
.input\:reset, .input\:text, .select select {
  -webkit-appearance: none;
  box-shadow: none;
  display: block;
  min-width: 0;
  outline: none;
  text-align: inherit;
  width: 100%;
}
.input\:text, .select {
  background-color: white;
  border: 1px solid;
  border-color: #927c7c;
  border-radius: 0px;
  height: 50px;
  line-height: calc(50px - 1px * 2);
  padding: 0 1em;
  transition: border-color 0.2s linear;
}
.select:focus-within, .input\:text:focus {
  border-color: #4b3f3f;
  outline: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #e5e0e0; }
input::placeholder, textarea::placeholder { color: #e5e0e0; }
@supports (--css: var) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: var(--placeholder--opacity);
  }
  input::placeholder, textarea::placeholder {
    color: inherit;
    opacity: var(--placeholder--opacity);
  }
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: calc(var(--placeholder--opacity) / 3);
}
input:focus::placeholder, textarea:focus::placeholder { opacity: calc(var(--placeholder--opacity) / 3); }
textarea.input\:text {
  height: auto;
  line-height: 1.6;
  padding: 1em;
  resize: vertical;
}
.select {
  padding: 0;
  position: relative;
  border:none;
}
/*.select::after {
  border: 2px solid currentColor;
  border-right-width: 0px;
  border-top-width: 0px;
  content: '';
  height: 6px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  width: 6px;
}*/
.select select {
  height: calc(50px - 1px * 2);
  padding: 0 1em;
}
.select option { background-color: white; }
.selectric {
  border:1px solid #927c7c;
  background:#fff;
}
.selectric .label {
  height:50px;
  line-height:48px;
  margin-left:18px;
  font-size:16px;
}
.selectric .button {
  font:normal 14px 'FontAwesome';
  background:#fff;
  color:#000;
  height:48px;
  line-height:48px;
  padding:0;
}
.selectric .button:after { content:none; }
.selectric-items ul, .selectric-items li {
  font-size:16px;
  line-height:48px;
  min-height:48px;
}
.selectric-items ul { padding:0; }
.selectric-items li {
  padding-left:18px;
  padding-right:18px;
  padding-top:0;
  padding-bottom:0;
}

.country-select.inside { width:100%; }
.country_input {
  border:1px solid #927c7c;
  outline:none;
  height:50px;
  width:100%;
}
.country-select.inside input, .country-select.inside input[type=text] {
  padding-left:56px;
}
.country-select.inside .selected-flag {
  width:52px;
}
.country-select .selected-flag {
  padding-left:15px;
}

@media (max-width: 859px) {
  /* Prevent iOS from zooming on inputs */
  .input\:text, .input\:reset, .select { font-size: 16px; }
}

/*
	----------------
	- Hero
	----------------
*/
.hero {
  background-color: #927c7c;
  color: #fff;
  min-height: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__overlay {
  background: #595050;
  opacity: .8;
  mix-blend-mode: multiply;
}
.hero__h {
  font-weight: 900;
  line-height: 1;
}
.hero.hero--small {
  min-height: 25vmin;
  align-items: flex-end;
  padding: 80px 0 40px 0;
}
.hero__content {
  position: relative;
  min-width: 0;
  flex: 0 0 100%;
}

/*
	----------------
	- Modals
	----------------
*/
[data-modal] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
[data-modal].modal--visible {
  visibility: visible;
  opacity: 1;
}
[data-modal], .modal { transition: all 0.25s ease-in-out; }
.modal-overlay {
  background: #595050;
  opacity: .95;
}
.modal {
  display: flex;
  flex-direction: column;
  background-color: #f9f8f8;
  position: relative;
  width: 98%;
  max-width: 750px;
  max-height: 80vh;
  transform: translateY(-50px);
  border-radius: 0px;
}
.modal--visible .modal { transform: translateY(0px); }
.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  padding: .9em;
  border-radius: 0px;
  color: inherit;
}
.modal__close svg {
  position: relative;
  height: 1em;
}
.modal__close svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.modal__close::before {
  content: '';
  border-radius: inherit;
  transition: opacity 0.1s linear;
  background: currentColor;
  opacity: 0;
}
.modal__close:hover::before { opacity: 0.05; }
.modal > .modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
}
.modal__header {
  background-color: #f2f0f0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  padding-left: 30px;
  border-bottom: 1px solid currentColor;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.modal__content {
  flex: 0 1 auto;
  padding: 30px;
  overflow: auto;
}
.modal__footer {
  background-color: #f2f0f0;
  flex: 0 0 auto;
  padding: 30px;
  border-top: 1px solid currentColor;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.modal__header, .modal__footer { border-color: #e5e0e0; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.carousel_outer { position:relative; }
[data-owl-carousel='hero']:not(.owl-loaded) {
  display: grid;
  visibility: hidden;
}
[data-owl-carousel='hero']:not(.owl-loaded) > * {
  grid-column: 1/2;
  grid-row: 1/2;
}
[data-owl-carousel='panels']:not(.owl-loaded) { display: none; }
[data-owl-carousel="featured"] { max-width:867px; }
.owl-carousel {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel.owl-loaded { display: block; }
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden { opacity: 0; }
.owl-stage {
  display: flex;
  position: relative;
  touch-action: manipulation;
  /* fix firefox animation glitch */
  -moz-backface-visibility: hidden;
}
.owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-wrapper, .owl-item {
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.owl-item {
  flex: 0 0 auto;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-item > *:only-child { height: 100%; }
.owl-refresh .owl-item { visibility: hidden; }
.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none; user-select: none;
}
.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-nav {
  font-size: 40px;
  margin-top: 10px;
  -webkit-tap-highlight-color: transparent;
  height: 1em;
  display: flex;
  justify-content: center;
}
[data-owl-carousel="featured"] .owl-nav {
  position:absolute;
  margin-top:0;
  right:-116px;
  top:50%;
  -webkit-transform:translateY(-50%); transform:translateY(-50%);
  width:60px;
  height:auto;
  display:block;
}
.owl-nav button {
  width: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0.1em;
  outline: none;
  opacity: .35;
  transition: opacity 0.15s ease-in-out;
}
.owl-nav button::before {
  content: '';
  background: currentColor;
  opacity: .5;
  border-radius: inherit;
}
.owl-nav button:hover { opacity: 1; }
.owl-nav button svg {
  position: relative;
  width: .35em;
  height: .35em;
  color: #fff;
}
[data-owl-carousel="featured"] .owl-nav button svg {
  width:100%;
  height:100%;
  fill:none;
  stroke:#000;
  stroke-width:1.7px;
}
.owl-nav .owl-next { margin-left: 5px; }
[data-owl-carousel="featured"] .owl-nav button {
  display:block;
  margin-bottom:10px;
  width:60px;
  height:60px;
  opacity:1;
  /*background-repeat:no-repeat;
  background-position:center center;
  background-size:contain;
  background-image:url(../images/arrow_prev.svg);
  */
  transition: all 0.3s ease-in-out;
}
[data-owl-carousel="featured"] .owl-nav button:hover {
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
}
[data-owl-carousel="featured"] .owl-nav button::before { content:none; }
[data-owl-carousel="featured"] .owl-nav button span { display:none; }
[data-owl-carousel="featured"] .owl-nav .owl-next {
  margin-left:0;
  /*background-image:url(../images/arrow_next.png);*/
}
.carousel-arrows\:inside .owl-nav, .carousel-arrows\:outside .owl-nav {
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 1em);
  transform: translate(-50%, -50%);
  max-width: 98vw;
  margin: 0;
  pointer-events: none;
}
.carousel-arrows\:inside .owl-nav button, .carousel-arrows\:outside .owl-nav button {
  pointer-events: auto;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 1;
}
.carousel-arrows\:inside .owl-nav button::before, .carousel-arrows\:outside .owl-nav button::before {
  background: #211c1c;
  opacity: .4;
  transition: opacity 0.2s ease-in-out;
}
.carousel-arrows\:inside .owl-nav button:hover::before, .carousel-arrows\:outside .owl-nav button:hover::before {
  opacity: .7;
}
.carousel-arrows\:inside:not(.carousel-dots\:inside) .owl-nav,
.carousel-arrows\:outside:not(.carousel-dots\:inside) .owl-nav {
  margin-top: -20px;
}
.carousel-arrows\:outside .owl-nav { width: calc(100% + 3em); }
.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  min-height: 40px;
  text-align: center;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-dot {
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}
.owl-dot:not(.active):not(:hover) { opacity: 0.2; }
.owl-dot span {
  width: 1em;
  height: 1em;
  margin: .25em;
  background: currentColor;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%;
}
.carousel-dots\:inside .owl-dots {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.carousel-dots\:inside .owl-dot span {
  border: 2px solid rgba(0, 0, 0, 0.7);
  box-sizing: content-box;
  background-clip: padding-box;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.owl-carousel .disabled {
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  margin: 0;
}
.carousel_outer .slide_num {
  position: absolute;
  right: 18px;
  bottom: 120px;
  z-index: 100;
  color: #000;
  font-size: 23px;
  font-weight: 900;
  text-align: center;
  width: 60px;
  transition: all 0.25s;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .carousel_outer .slide_num { display:none; }
  .carousel_outer .appeal { margin-bottom:20px; }
}
.carousel_outer .slide_num.blur {
  -webkit-filter:blur(3px); filter:blur(3px);
  -webkit-transform:scale(1.2); transform:scale(1.2);
}
.carousel_outer .slide_num div {
  padding-left: 15px;
  color: #B2956D;
  transform: rotate(90deg);
}
.carousel_outer .carousel_all {
  text-align:center;
  position:absolute;
  right:0px;
  bottom:40px;
}
.carousel_outer .carousel_all a { text-transform:uppercase; }
/*
	----------------
	- Social icons
	----------------
*/
.social-icons {
  display: flex;
  font-size: 20px;
}
.social-icons li {
  flex: 0 0 auto;
  margin-right: 5px;
}
.social-icons li:last-of-type { margin-right: 0; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1em;
  height: 1em;
  color: inherit !important;
  border-radius: 50%;
}
.social-icons a::before {
  content: '';
  border-radius: inherit;
  background: #000;
  opacity: 1;
}
.social-icons a:hover::before { opacity: .6; }
.social-icons span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.social-icons svg {
  height: .5em;
  position: relative;
}
.social-icons--colour { color: #fff; }
.social-icons--colour a { background: #211c1c; }
.social-icons--colour a[href*="facebook"] { background: #304c87; }
.social-icons--colour a[href*="twitter"] { background: #0097d3; }
.social-icons--colour a[href*="instagram"] { background: #de416a; }
.social-icons--colour a[href*="linkedin"] { background: #0073b1; }
.social-icons--colour a[href*="youtube"] { background: #cc332d; }
.social-icons--colour a[href*="pinterest"] { background: #cd1d1f; }

.text-logo {
  color: #000;
  font-weight: bold;
}
.text-logo a {
  display: flex;
  align-items: center;
  color: inherit;
}
.logo {
  display: flex;
  align-items: center;
  color: #000;
  --logo-fill: #000;
}
.logo a {
  display: flex;
  align-items: center;
  align-self: stretch;
  color: inherit;
  flex: 1 1 100%;
}
.logo img, .logo svg {
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
}
header .logo img, .modal .custom-logo {
  max-height:60px;
  width:auto;
}
.footer_logo {
  max-height:108px;
  width:auto;
}

/* Animated hamburger icon */
.hamburger {
  font-size: 20px;
  width: 1em;
  height: .7em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.hamburger::before, .hamburger::after, .hamburger > i::before, .hamburger > i::after {
  content: '';
  display: block;
  width: 100%;
  height: .1em;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.hamburger i {
  position: relative;
  height: .1em;
}
.hamburger > i::before, .hamburger > i::after {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
}
.hamburger.is-active::before {
  transform: translateY(-0.25em);
  opacity: 0;
}
.hamburger.is-active::after {
  transform: translateY(0.25em);
  opacity: 0;
}
.hamburger.is-active > i::before { transform: rotate(45deg); }
.hamburger.is-active > i::after { transform: rotate(-45deg); }

/*
	----------------
	- Off screen Navigation
	----------------
*/
.off-screen__panel {
  background: #f2f0f0;
  color: #211c1c;
  height: 100%;
  right: 0;
  padding-top: 55px;
  overflow: auto;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  transform: translateX(101%);
  transition: transform ease-in-out 0.3s;
  width: 100%;
  max-width: 480px;
  z-index: 5;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}
.off-screen__panel a { color: inherit; }
.off-screen__panel.is-active {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
  transform: translateX(0);
}
.off-screen__panel::after {
  content: '';
  display: block;
  height: 90px;
}
.off-screen__overlay {
  position: fixed;
  background: #211c1c;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.001;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.off-screen__overlay.is-active {
  visibility: visible;
  opacity: 0.8;
}
.off-screen__nav .nav__item {
  transform: translateX(40px);
  transition: all 0.15s ease-in-out;
  opacity: 0;
  position: relative;
}
.off-screen__nav .nav__item::after {
  content: '';
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  opacity: 0.1;
  pointer-events: none;
}
.is-active .off-screen__nav .nav__item {
  transform: translateX(0);
  opacity: 1;
}
.is-active .off-screen__nav .nav__item:nth-child(1) { transition-delay: .1s; }
.is-active .off-screen__nav .nav__item:nth-child(2) { transition-delay: .15s; }
.is-active .off-screen__nav .nav__item:nth-child(3) { transition-delay: .2s; }
.is-active .off-screen__nav .nav__item:nth-child(4) { transition-delay: .25s; }
.is-active .off-screen__nav .nav__item:nth-child(5) { transition-delay: .3s; }
.is-active .off-screen__nav .nav__item:nth-child(6) { transition-delay: .35s; }
.is-active .off-screen__nav .nav__item:nth-child(7) { transition-delay: .4s; }
.is-active .off-screen__nav .nav__item:nth-child(8) { transition-delay: .45s; }
.is-active .off-screen__nav .nav__item:nth-child(9) { transition-delay: .5s; }
.is-active .off-screen__nav .nav__item, .is-active .off-screen__nav .nav__item:nth-child(10) { transition-delay: .55s; }
.off-screen__nav .nav__link {
  display: block;
  padding: 15px;
  position: relative;
}
.off-screen__nav .nav__dropdown {
  display: none;
  font-size: 0.9em;
  opacity: 0.8;
  padding-bottom: 15px;
}
.off-screen__nav .nav__dropdown a {
  display: block;
  padding: 10px;
  padding-left: 35px;
}
.off-screen__nav .nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  bottom: 5px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 50px;
}
.off-screen__nav .nav__arrow::before {
  content: '';
  display: inline-block;
  border: 2px solid currentColor;
  border-top-width: 0px;
  border-right-width: 0px;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg) scale(1);
  transition: transform 0.2s linear;
}
.off-screen__nav .nav__arrow.is-active::before { transform: rotate(-45deg) scale(-1); }
.off-screen__nav .nav__arrow::after {
  content: '';
  background: currentColor;
  opacity: 0.1;
  border-radius: inherit;
}

/*
	----------------
	- Header
	----------------
*/
.site-header {
  background: #fff;
  color: #000;
  flex: 0 0 auto;
  position: relative;
  z-index: 50;
}
.site-header .logo { flex: 0 1 370px; }
.site-header .text-logo {
  display: flex;
  flex: 0 0 auto;
  font-size: 2rem;
}

@media (min-width: 900px) {
  .site-header__right {
    position: absolute;
    right: 0;
  }
}

.site-header__align {
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  height: 1px;
  width: auto;
}
.site-header__menu-button {
  height: 70px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 40px;
}
a.site-header__donate-button, a.site-header__sadaaqa-button {
  line-height: 70px;
  background: #595050;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
/*  padding: 0 90px;*/
  padding:0px;
  display: block;
  width:209px;
  text-align:center;
}
a.site-header__sadaaqa-button { background:#211C1C; }
a.site-header__donate-button:hover { background: #474040; }
a.site-header__sadaaqa-button:hover { background: #000; }
.side-header__top {
  z-index:50;
}

/*
	----------------
	- Desktop Navigation
	----------------
*/
.navigation-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  z-index: 50;
  text-transform: uppercase;
  display: none;
}
.navigation-menu.is-active { display: block; }
.navigation-menu a {
  display: block;
  padding: .6em 1.5em;
  color: inherit;
  background: rgba(255, 255, 255, 0.6);
  border-left: 5px solid #b2956d;
  margin-top: 4px;
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
}
.navigation-menu a:hover { background: rgba(255, 255, 255, 0.8); }
.site-navigation {
  flex: 0 1 auto;
  font-size: 1.3rem;
  line-height: 44px;
  white-space: nowrap;
  align-self: center;
  margin-left: 2rem;
}
.site-navigation .nav { display: flex; }
.site-navigation .nav__item {
  border-radius: 4px;
  flex: 0 1 auto;
  position: relative;
  z-index: 0;
}
.site-navigation .nav__item::after {
  border-radius: inherit;
  background: currentColor;
  content: '';
  opacity: 0;
  z-index: -1;
  transition: opacity 0.15s ease-in-out;
}
.site-navigation .nav__item:hover::after { opacity: 0.06; }
.site-navigation .nav__item.is-active::after { opacity: 0.1; }
.site-navigation .nav__link {
  font-weight: 600;
  padding: 0 1.5em;
  color: currentColor;
  display: block;
  position: relative;
  cursor: pointer;
}

/*
	----------------
	- Dropdown navigation menu
	----------------
*/
@media (min-width: 771px) {
  .site-navigation {
    /* Navigation dropdown menu */
  }
  .site-navigation .nav__arrow {
    display: inline-block;
    border: 2px solid currentColor;
    border-top-width: 0px;
    border-right-width: 0px;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
    transform-origin: 0 0;
    margin-left: 6px;
  }
  .site-navigation .nav__item:hover { z-index: 10; }
  .site-navigation .nav__dropdown {
    background: #f9f8f8;
    color: #675656;
    font-size: 1.3rem;
    padding: 5px 0;
    line-height: 1.6;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 3px 40px, rgba(0, 0, 0, 0.1) 0px 1px 2px;
    min-width: 190px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    white-space: nowrap;
    pointer-events: none;
    transition: visibility 0.25s ease-in-out 0.25s, opacity 0.25s ease-in-out 0s, transform 0.25s ease-in-out 0s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    /* Show dropdown menu on hover */
    /* Dropdown arrow */
    /* Cover gap with pseudo element */
  }
  .nav__item:nth-last-of-type(1):not(:nth-of-type(1)) .site-navigation .nav__dropdown {
    right: 0;
    left: auto;
  }
  .nav__item:hover .site-navigation .nav__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0s;
    pointer-events: auto;
  }
  .site-navigation .nav__dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 24px;
    border: 6px solid transparent;
    border-bottom-color: #f9f8f8;
    /* Align dropdown arrow on right menus */
  }
  .nav__item:nth-last-of-type(1):not(:nth-of-type(1)) .site-navigation .nav__dropdown::before {
    right: 24px;
    left: auto;
  }
  .site-navigation .nav__dropdown::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
  }
  .site-navigation .nav__dropdown a {
    display: block;
    padding: 0.75em 0.9em;
    color: currentColor;
  }
  .site-navigation .nav__dropdown a:hover { background: #f2f0f0; }
}

/*
	----------------
	- Mobile Header
	----------------
*/
.mobile-header-wrap {
  flex: 0 0 auto;
  order: -1;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
}
.mobile-header-wrap .custom-logo { width:50%; }
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  background: #fff;
  height: 55px;
  padding: 0 0 0 10px;
  position: relative;
  transform-style: preserve-3d;
  z-index: 10;
}
.mobile-header a { color: currentColor; }
.mobile-header .logo { flex: 0 1 280px; }
.mobile-header .text-logo {
  flex: 0 1 auto;
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 55px;
}
.mobile-header__button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  height: 55px;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
}
.mobile-header__button > * + * { margin-left: 10px; }
a.mobile-header__donate-button, a.mobile-header__sadaaqa-button, .mobile-header a.site-header__donate-button {
  line-height: 55px;
  background: #595050;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  /*padding: 0 20px;*/
  padding:0px;
  display: block;
  font-size: 1.2rem;
  min-width:100px;
  text-align:center;
  white-space:nowrap;
  width: 40%; text-align: center; line-height: 45px;
}
a.mobile-header__sadaaqa-button { background:#211C1C; }
a.mobile-header__donate-button:hover { background: #474040; }
a.mobile-header__sadaaqa-button:hover { background: #000; }
/*
	----------------
	- Footer
	----------------
*/
.site-footer {
  background: #595050;
  color: #fff;
  flex: 0 0 auto;
}
.site-footer a { color: inherit; }
.site-footer .social-icons { font-size: 31px; }
.site-footer__newsletter ::-webkit-input-placeholder { text-transform: uppercase; }
.site-footer__newsletter ::placeholder { text-transform: uppercase; }
.site-footer__newsletter .input\:text { border-color: transparent; }
.site-footer__newsletter .button {
  background: #000;
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
  width: 100%;
}
.footer-columns__item {
  padding: .6em 1.5em;
  border-left: 1px solid currentColor;
}
.footer-columns__item h2.widgettitle { font-weight:bold; }
@media (max-width: 870px) {
  .footer-columns__item {
    border-width: 0;
    padding: 2px 1em;
  }
}

/*
	----------------
	- Layout
	----------------
*/
.site-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-main { flex: 1 0 auto; }

/*
	----------------
	- Content
	----------------
*/
.page-header {
  background: #e5e0e0;
  color: #211c1c;
}
.page-header__title { font-weight: bold; }

/*
	----------------
	- Headings
	----------------
*/
.h1 { font-weight: 100; }
.h2 { font-weight: 100; }

/*
	----------------
	- Carousel
	----------------
*/
.carousel-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 896px;
  max-width: 100%;
  z-index: 1;
  pointer-events: none;
}

/*
	----------------
	- Appeals
	----------------
*/
.appeal__registered-charity {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 82px;
  pointer-events: none;
}

/*
	----------------
	- Quote
	----------------
*/
.quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-image: url("../images/quote-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  transform: translate(-20%, -20%);
  opacity: .25;
  pointer-events: none;
}

/*
	----------------
	- Partners
	----------------
*/
.grid--partners {
  background: #000;
  border: 1px solid #000;
  --gap: 1px;
  --row-gap: var(--gap);
}
.grid--partners > * { background: #fff; }
.grid--partners > *:hover { background: #f2f0f0; }
.partner__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner__logo img {
  flex: 0 0 auto;
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/*
	----------------
	- Other
	----------------
*/
.d\:block { display: block; }
.d\:inline { display: inline; }
.d\:inline-block { display: inline-block; }
.d\:none, [hidden], .hidden { display: none !important; }
[data-toggle-me] { display: none; }
.h\:100 { min-height: 100%; }
.h\:100vh { min-height: 100vh; }
.p\:relative { position: relative; }
.bs\:contain { background-size: contain; }
.o\:hidden { overflow: hidden; }
.pe\:none { pointer-events: none; }
.pe\:auto { pointer-events: auto; }
.transition { transition: all 0.15s ease-in-out; }

/*
	----------------
	- Border
	----------------
*/
.border { border: 1px solid currentColor; }

/*
	----------------
	- Opacity
	----------------
*/
.o\:0, .hover__o\:0:hover, .hover:hover .hover__o\:0 { opacity: 0; }
.o\:1, .hover__o\:1:hover, .hover:hover .hover__o\:1 { opacity: 0.1; }
.o\:2, .hover__o\:2:hover, .hover:hover .hover__o\:2 { opacity: 0.2; }
.o\:3, .hover__o\:3:hover, .hover:hover .hover__o\:3 { opacity: 0.3; }
.o\:4, .hover__o\:4:hover, .hover:hover .hover__o\:4 { opacity: 0.4; }
.o\:5, .hover__o\:5:hover, .hover:hover .hover__o\:5 { opacity: 0.5; }
.o\:6, .hover__o\:6:hover, .hover:hover .hover__o\:6 { opacity: 0.6; }
.o\:7, .hover__o\:7:hover, .hover:hover .hover__o\:7 { opacity: 0.7; }
.o\:8, .hover__o\:8:hover, .hover:hover .hover__o\:8 { opacity: 0.8; }
.o\:9, .hover__o\:9:hover, .hover:hover .hover__o\:9 { opacity: 0.9; }
.o\:10, .hover__o\:10:hover, .hover:hover .hover__o\:10 { opacity: 1; }

/*
	----------------
	- Border-radius
	----------------
*/
.br\:1 { border-radius: 3px; }
.br\:2 { border-radius: 5px; }
.br\:3 { border-radius: 7px; }
.br\:4 { border-radius: 9px; }
.br\:5 { border-radius: 11px; }
.br\:inherit { border-radius: inherit; }
.br\:50 { border-radius: 1000px; }

/*
	----------------
	Text Align
	----------------
*/
.ta\:center { text-align: center; }
.ta\:left { text-align: left; }
.ta\:right { text-align: right; }
@media (min-width: 420px) {
  .sm__ta\:center { text-align: center; }
  .sm__ta\:left { text-align: left; }
  .sm__ta\:right { text-align: right; }
}
@media (min-width: 640px) {
  .md__ta\:center { text-align: center; }
  .md__ta\:left { text-align: left; }
  .md__ta\:right { text-align: right; }
}
@media (min-width: 860px) {
  .lg__ta\:center { text-align: center; }
  .lg__ta\:left { text-align: left; }
  .lg__ta\:right { text-align: right; }
}

/*
	----------------
	Font Weight
	----------------
*/
.fw\:100 { font-weight: 100; }
.fw\:200 { font-weight: 200; }
.fw\:300 { font-weight: 300; }
.fw\:400, .fw\:normal { font-weight: 400; }
.fw\:500 { font-weight: 500; }
.fw\:600 { font-weight: 600; }
.fw\:700, .fw\:bold { font-weight: 700; }
.fw\:800 { font-weight: 800; }
.fw\:900 { font-weight: 900; }

/*
	----------------
	- Font sizes
	----------------
*/
.fs\:-2 { font-size: 1.2rem; }
.fs\:-1 { font-size: 1.4rem; }
.fs\:0 { font-size: 1.6rem; }
.fs\:1, .format h3 { font-size: 1.8rem; }
.fs\:2 { font-size: 2.1rem; }
.fs\:3, .format h2, .modal__header, .h4 {
  font-size: 2.4rem;
  line-height: 1.38;
  --line-height: 1.38;
  --fluid-max: 24;
  --fluid-min: 23;
}
.fs\:4, .h3 {
  font-size: 2.8rem;
  line-height: 1.35;
  --line-height: 1.35;
  --fluid-max: 28;
  --fluid-min: 25;
}
.fs\:5, .format h1, .h2 {
  font-size: 3.4rem;
  line-height: 1.3;
  --line-height: 1.3;
  --fluid-max: 34;
  --fluid-min: 27;
}
.fs\:6, .page-header__title {
  font-size: 4rem;
  line-height: 1.3;
  --line-height: 1.3;
  --fluid-max: 40;
  --fluid-min: 30;
}
.fs\:7 {
  font-size: 4.8rem;
  line-height: 1.25;
  --line-height: 1.25;
  --fluid-max: 48;
  --fluid-min: 34;
}
.fs\:8, .hero__h, .h1 {
  font-size: 5.5rem;
  line-height: 1.15;
  --line-height: 1.15;
  --fluid-max: 55;
  --fluid-min: 37;
}
.fs\:9 {
  font-size: 7.5rem;
  line-height: 1.1;
  --line-height: 1.1;
  --fluid-max: 75;
  --fluid-min: 40;
}

/*
	----------------
	- Fluid font sizes
	----------------
*/
@media only screen and (max-width: 549px) {
  .fs\:3, .format h2, .modal__header, .h4, .fs\:4, .h3, .fs\:5, .format h1, .h2, .fs\:6, .page-header__title, .fs\:7, .fs\:8, .hero__h, .h1, .fs\:9 {
    font-size: calc(var(--fluid-min) * 0.1rem);
  }
}

@media only screen and (min-width: 550px) and (max-width: 999px) {
  .fs\:3, .format h2, .modal__header, .h4, .fs\:4, .h3, .fs\:5, .format h1, .h2, .fs\:6, .page-header__title, .fs\:7, .fs\:8, .hero__h, .h1, .fs\:9 {
    font-size: calc(calc(var(--fluid-min) * 0.1rem) + (var(--fluid-max) - var(--fluid-min)) * ((100vw - 550px) / 450 ));
  }
}

@media only screen and (min-width: 1000px) {
  .fs\:3, .format h2, .modal__header, .h4, .fs\:4, .h3, .fs\:5, .format h1, .h2, .fs\:6, .page-header__title, .fs\:7, .fs\:8, .hero__h, .h1, .fs\:9 {
    font-size: calc(var(--fluid-max) * 0.1rem);
  }
}

/*
	----------------
	Typography
	----------------
*/
/* Crop white space above and below text */
@supports (--css: var) {
  .text-crop::before, .format h1::before, .format h2::before, .format h3::before, .hero__h::before, .page-header__title::before, .h1::before, .h2::before, .h3::before {
    content: '';
    display: block;
    height: .01px;
    margin-bottom: calc((var(--text-crop-top) - var(--line-height)) * 0.5em);
  }
  .text-crop::after, .format h1::after, .format h2::after, .format h3::after, .hero__h::after, .page-header__title::after, .h1::after, .h2::after, .h3::after {
    content: '';
    display: block;
    height: .01px;
    margin-top: calc((var(--text-crop-bottom) - var(--line-height)) * 0.5em);
  }
}

/*
	----------------
	- Text-decoration
	----------------
*/
.tt\:uppercase { text-transform: uppercase; }
.tt\:none { text-transform: none; }
.td\:underline, .link__td\:underline a, .link-hover__td\:underline a:hover { text-decoration: underline; }
.td\:none, .link__td\:none a, .link-hover__td\:none a:hover { text-decoration: none; }
/* Faint underlines on links */
.td\:faint-underline, .link__td\:faint-underline a { position: relative; }
.td\:faint-underline::after, .link__td\:faint-underline a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: calc(1px + .03em);
  background: currentColor;
  opacity: .3;
  transition: opacity 0.2s ease-in-out;
}
.td\:faint-underline:hover::after, .link__td\:faint-underline a:hover::after { opacity: .75; }
.fs\:italic { font-style: italic; }
.fs\:normal { font-style: normal; }

/*
	----------------
	- Line-height
	----------------
*/
.lh\:-2 { line-height: 1; }
.lh\:-1 { line-height: 1.3; }
.lh\:1 { line-height: 1.78; }
.lh\:2 { line-height: 1.96; }

/*
	----------------
	- Letter-spacing
	----------------
*/
.ls\:-2 { letter-spacing: -.07em; }
.ls\:-1 { letter-spacing: -.04em; }
.ls\:1 { letter-spacing: .05em; }
.ls\:2 { letter-spacing: .12em; }

/*
	----------------
	- Line clamp
	----------------
*/
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
	----------------
	- Width classes
	----------------
*/
.w\:10 { width: 10%; }
.w\:20 { width: 20%; }
.w\:25 { width: 25%; }
.w\:30 { width: 30%; }
.w\:33 { width: 33.333%; }
.w\:40 { width: 40%; }
.w\:50 { width: 50%; }
.w\:60 { width: 60%; }
.w\:66 { width: 66.666%; }
.w\:70 { width: 70%; }
.w\:75 { width: 75%; }
.w\:80 { width: 80%; }
.w\:90 { width: 90%; }
.w\:100 { width: 100%; }

@media (min-width: 420px) {
  .sm__w\:10 { width: 10%; }
  .sm__w\:20 { width: 20%; }
  .sm__w\:25 { width: 25%; }
  .sm__w\:30 { width: 30%; }
  .sm__w\:33 { width: 33.333%; }
  .sm__w\:40 { width: 40%; }
  .sm__w\:50 { width: 50%; }
  .sm__w\:60 { width: 60%; }
  .sm__w\:66 { width: 66.666%; }
  .sm__w\:70 { width: 70%; }
  .sm__w\:75 { width: 75%; }
  .sm__w\:80 { width: 80%; }
  .sm__w\:90 { width: 90%; }
  .sm__w\:100 { width: 100%; }
}

@media (min-width: 640px) {
  .md__w\:10 { width: 10%; }
  .md__w\:20 { width: 20%; }
  .md__w\:25 { width: 25%; }
  .md__w\:30 { width: 30%; }
  .md__w\:33 { width: 33.333%; }
  .md__w\:40 { width: 40%; }
  .md__w\:50 { width: 50%; }
  .md__w\:60 { width: 60%; }
  .md__w\:66 { width: 66.666%; }
  .md__w\:70 { width: 70%; }
  .md__w\:75 { width: 75%; }
  .md__w\:80 { width: 80%; }
  .md__w\:90 { width: 90%; }
  .md__w\:100 { width: 100%; }
}

@media (min-width: 860px) {
  .lg__w\:10 { width: 10%; }
  .lg__w\:20 { width: 20%; }
  .lg__w\:25 { width: 25%; }
  .lg__w\:30 { width: 30%; }
  .lg__w\:33 { width: 33.333%; }
  .lg__w\:40 { width: 40%; }
  .lg__w\:50 { width: 50%; }
  .lg__w\:60 { width: 60%; }
  .lg__w\:66 { width: 66.666%; }
  .lg__w\:70 { width: 70%; }
  .lg__w\:75 { width: 75%; }
  .lg__w\:80 { width: 80%; }
  .lg__w\:90 { width: 90%; }
  .lg__w\:100 { width: 100%; }
}

/*
	----------------
	- Flexbox utility classes
	----------------
*/
.ai\:start { align-items: flex-start; }
.ai\:center { align-items: center; }
.ai\:end { align-items: flex-end; }
.ai\:stretch { align-items: stretch; }
.as\:start { align-self: flex-start; }
.as\:center { align-self: center; }
.as\:end { align-self: flex-end; }
.as\:stretch { align-self: stretch; }
.jc\:start { justify-content: flex-start; }
.jc\:center { justify-content: center; }
.jc\:end { justify-content: flex-end; }
.jc\:around { justify-content: space-around; }
.jc\:between { justify-content: space-between; }
.fd\:column { flex-direction: column; }
.fd\:row-reverse { flex-direction: row-reverse; }
.fw\:wrap { flex-wrap: wrap; }
.fw\:wrap-reverse { flex-wrap: wrap-reverse; }

@media (min-width: 640px) {
  .md__fd\:row { flex-direction: row; }
  .md__fd\:column { flex-direction: column; }
  .md__fd\:row-reverse { flex-direction: row-reverse; }
}

@media (min-width: 860px) {
  .lg__fd\:row { flex-direction: row; }
  .lg__fd\:column { flex-direction: column; }
  .lg__fd\:row-reverse { flex-direction: row-reverse; }
}

/*
	----------------
	- Flex grow and shrink
	----------------
*/
body .flex\:00, ._flex\:00 > * {
  flex-grow: 0;
  flex-shrink: 0;
}
body .flex\:10, ._flex\:10 > * {
  flex-grow: 1;
  flex-shrink: 0;
}
body .flex\:11, ._flex\:11 > * {
  flex-grow: 1;
  flex-shrink: 1;
}
body .flex\:01, ._flex\:01 > * {
  flex-grow: 0;
  flex-shrink: 1;
}
body .flex\:91, ._flex\:91 > * {
  flex-grow: 9999;
  flex-shrink: 1;
}

/*
	----------------
	- Basis classes control the widths of children under .fluid, .grid and .flex
	----------------
*/
.basis\:10 {
  --basis: 10px;
  flex-basis: 10px;
}
.basis\:20 {
  --basis: 20px;
  flex-basis: 20px;
}
.basis\:30 {
  --basis: 30px;
  flex-basis: 30px;
}
.basis\:40 {
  --basis: 40px;
  flex-basis: 40px;
}
.basis\:50 {
  --basis: 50px;
  flex-basis: 50px;
}
.basis\:60 {
  --basis: 60px;
  flex-basis: 60px;
}
.basis\:70 {
  --basis: 70px;
  flex-basis: 70px;
}
.basis\:80 {
  --basis: 80px;
  flex-basis: 80px;
}
.basis\:90 {
  --basis: 90px;
  flex-basis: 90px;
}
.basis\:100 {
  --basis: 100px;
  flex-basis: 100px;
}
.basis\:120 {
  --basis: 120px;
  flex-basis: 120px;
}
.basis\:140 {
  --basis: 140px;
  flex-basis: 140px;
}
.basis\:160 {
  --basis: 160px;
  flex-basis: 160px;
}
.basis\:180 {
  --basis: 180px;
  flex-basis: 180px;
}
.basis\:200 {
  --basis: 200px;
  flex-basis: 200px;
}
.basis\:220 {
  --basis: 220px;
  flex-basis: 220px;
}
.basis\:240 {
  --basis: 240px;
  flex-basis: 240px;
}
.basis\:260 {
  --basis: 260px;
  flex-basis: 260px;
}
.basis\:280 {
  --basis: 280px;
  flex-basis: 280px;
}
.basis\:300 {
  --basis: 300px;
  flex-basis: 300px;
}
.basis\:320 {
  --basis: 320px;
  flex-basis: 320px;
}
.basis\:340 {
  --basis: 340px;
  flex-basis: 340px;
}
.basis\:360 {
  --basis: 360px;
  flex-basis: 360px;
}
.basis\:380 {
  --basis: 380px;
  flex-basis: 380px;
}
.basis\:400 {
  --basis: 400px;
  flex-basis: 400px;
}
.basis\:420 {
  --basis: 420px;
  flex-basis: 420px;
}
.basis\:440 {
  --basis: 440px;
  flex-basis: 440px;
}
.basis\:460 {
  --basis: 460px;
  flex-basis: 460px;
}
.basis\:480 {
  --basis: 480px;
  flex-basis: 480px;
}
.basis\:500 {
  --basis: 500px;
  flex-basis: 500px;
}
.basis\:520 {
  --basis: 520px;
  flex-basis: 520px;
}
.basis\:540 {
  --basis: 540px;
  flex-basis: 540px;
}
.basis\:560 {
  --basis: 560px;
  flex-basis: 560px;
}
.basis\:580 {
  --basis: 580px;
  flex-basis: 580px;
}
.basis\:600 {
  --basis: 600px;
  flex-basis: 600px;
}
.basis\:620 {
  --basis: 620px;
  flex-basis: 620px;
}
.basis\:640 {
  --basis: 640px;
  flex-basis: 640px;
}
.basis\:660 {
  --basis: 660px;
  flex-basis: 660px;
}
.basis\:680 {
  --basis: 680px;
  flex-basis: 680px;
}
.basis\:700 {
  --basis: 700px;
  flex-basis: 700px;
}
.basis\:720 {
  --basis: 720px;
  flex-basis: 720px;
}
.basis\:740 {
  --basis: 740px;
  flex-basis: 740px;
}
.basis\:760 {
  --basis: 760px;
  flex-basis: 760px;
}
.basis\:780 {
  --basis: 780px;
  flex-basis: 780px;
}
.basis\:800 {
  --basis: 800px;
  flex-basis: 800px;
}
.basis\:820 {
  --basis: 820px;
  flex-basis: 820px;
}
.basis\:840 {
  --basis: 840px;
  flex-basis: 840px;
}
.basis\:860 {
  --basis: 860px;
  flex-basis: 860px;
}
.basis\:880 {
  --basis: 880px;
  flex-basis: 880px;
}
.basis\:900 {
  --basis: 900px;
  flex-basis: 900px;
}
.basis\:920 {
  --basis: 920px;
  flex-basis: 920px;
}
.basis\:940 {
  --basis: 940px;
  flex-basis: 940px;
}
.basis\:960 {
  --basis: 960px;
  flex-basis: 960px;
}
.basis\:980 {
  --basis: 980px;
  flex-basis: 980px;
}
.basis\:1000 {
  --basis: 1000px;
  flex-basis: 1000px;
}
.basis\:10p { flex-basis: 10%; }
.basis\:20p { flex-basis: 20%; }
.basis\:25p { flex-basis: 25%; }
.basis\:30p { flex-basis: 30%; }
.basis\:33p { flex-basis: 33%; }
.basis\:40p { flex-basis: 40%; }
.basis\:50p { flex-basis: 50%; }
.basis\:60p { flex-basis: 60%; }
.basis\:66p { flex-basis: 66%; }
.basis\:70p { flex-basis: 70%; }
.basis\:75p { flex-basis: 75%; }
.basis\:80p { flex-basis: 80%; }
.basis\:90p { flex-basis: 90%; }
.basis\:100p { flex-basis: 100%; }
._basis\:inherit > * { flex-basis: inherit; }

/*
	----------------
	- Margins
	----------------
*/
._my\:1 > * + *, body .mt\:1, body .my\:1 {
  margin-top: 0.8rem;
  margin-top: var(--sp-1);
}
body .mb\:1, body .my\:1 {
  margin-bottom: 0.8rem;
  margin-bottom: var(--sp-1);
}
._mx\:1 > * + *, body .ml\:1, body .mx\:1 {
  margin-left: 0.8rem;
  margin-left: var(--sp-1);
}
body .mr\:1, body .mx\:1 {
  margin-right: 0.8rem;
  margin-right: var(--sp-1);
}
._my\:2 > * + *, body .mt\:2, body .my\:2 {
  margin-top: 1.6rem;
  margin-top: var(--sp-2);
}
body .mb\:2, body .my\:2 {
  margin-bottom: 1.6rem;
  margin-bottom: var(--sp-2);
}
._mx\:2 > * + *, body .ml\:2, body .mx\:2 {
  margin-left: 1.6rem;
  margin-left: var(--sp-2);
}
body .mr\:2, body .mx\:2 {
  margin-right: 1.6rem;
  margin-right: var(--sp-2);
}
._my\:3 > * + *, body .mt\:3, body .my\:3 {
  margin-top: 2.8rem;
  margin-top: var(--sp-3);
}
body .mb\:3, body .my\:3 {
  margin-bottom: 2.8rem;
  margin-bottom: var(--sp-3);
}
._mx\:3 > * + *, body .ml\:3, body .mx\:3 {
  margin-left: 2.8rem;
  margin-left: var(--sp-3);
}
body .mr\:3, body .mx\:3 {
  margin-right: 2.8rem;
  margin-right: var(--sp-3);
}
._my\:4 > * + *, body .mt\:4, body .my\:4 {
  margin-top: 4rem;
  margin-top: var(--sp-4);
}
body .mb\:4, body .my\:4 {
  margin-bottom: 4rem;
  margin-bottom: var(--sp-4);
}
._mx\:4 > * + *, body .ml\:4, body .mx\:4 {
  margin-left: 4rem;
  margin-left: var(--sp-4);
}
body .mr\:4, body .mx\:4 {
  margin-right: 4rem;
  margin-right: var(--sp-4);
}
._my\:5 > * + *, body .mt\:5, body .my\:5 {
  margin-top: 5.2rem;
  margin-top: var(--sp-5);
}
body .mb\:5, body .my\:5 {
  margin-bottom: 5.2rem;
  margin-bottom: var(--sp-5);
}
._mx\:5 > * + *, body .ml\:5, body .mx\:5 {
  margin-left: 5.2rem;
  margin-left: var(--sp-5);
}
body .mr\:5, body .mx\:5 {
  margin-right: 5.2rem;
  margin-right: var(--sp-5);
}
._my\:6 > * + *, body .mt\:6, body .my\:6 {
  margin-top: 6.4rem;
  margin-top: var(--sp-6);
}
body .mb\:6, body .my\:6 {
  margin-bottom: 6.4rem;
  margin-bottom: var(--sp-6);
}
._mx\:6 > * + *, body .ml\:6, body .mx\:6 {
  margin-left: 6.4rem;
  margin-left: var(--sp-6);
}
body .mr\:6, body .mx\:6 {
  margin-right: 6.4rem;
  margin-right: var(--sp-6);
}
._my\:7 > * + *, body .mt\:7, body .my\:7 {
  margin-top: 7.6rem;
  margin-top: var(--sp-7);
}
body .mb\:7, body .my\:7 {
  margin-bottom: 7.6rem;
  margin-bottom: var(--sp-7);
}
._mx\:7 > * + *, body .ml\:7, body .mx\:7 {
  margin-left: 7.6rem;
  margin-left: var(--sp-7);
}
body .mr\:7, body .mx\:7 {
  margin-right: 7.6rem;
  margin-right: var(--sp-7);
}
._my\:8 > * + *, body .mt\:8, body .my\:8 {
  margin-top: 8.8rem;
  margin-top: var(--sp-8);
}
body .mb\:8, body .my\:8 {
  margin-bottom: 8.8rem;
  margin-bottom: var(--sp-8);
}
._mx\:8 > * + *, body .ml\:8, body .mx\:8 {
  margin-left: 8.8rem;
  margin-left: var(--sp-8);
}
body .mr\:8, body .mx\:8 {
  margin-right: 8.8rem;
  margin-right: var(--sp-8);
}
._my\:9 > * + *, body .mt\:9, body .my\:9 {
  margin-top: 10rem;
  margin-top: var(--sp-9);
}
body .mb\:9, body .my\:9 {
  margin-bottom: 10rem;
  margin-bottom: var(--sp-9);
}
._mx\:9 > * + *, body .ml\:9, body .mx\:9 {
  margin-left: 10rem;
  margin-left: var(--sp-9);
}
body .mr\:9, body .mx\:9 {
  margin-right: 10rem;
  margin-right: var(--sp-9);
}
._my\:push > * + *, body .mt\:push, body .my\:push {
  margin-top: 9rem;
  margin-top: var(--push);
}
body .mb\:push, body .my\:push {
  margin-bottom: 9rem;
  margin-bottom: var(--push);
}
._mx\:push > * + *, body .ml\:push, body .mx\:push {
  margin-left: 9rem;
  margin-left: var(--push);
}
body .mr\:push, body .mx\:push {
  margin-right: 9rem;
  margin-right: var(--push);
}
._my\:0 > * + *, body .mt\:0, body .my\:0 { margin-top: 0; }
body .mb\:0, body .my\:0 { margin-bottom: 0; }
._mx\:0 > * + *, body .ml\:0, body .mx\:0 { margin-left: 0; }
body .mr\:0, body .mx\:0 { margin-right: 0; }
.mx\:auto {
  margin-left: auto;
  margin-right: auto;
}

/*
	----------------
	- Padding
	----------------
*/
.pt\:1, .py\:1, .p\:1 {
  padding-top: 0.8rem;
  padding-top: var(--sp-1);
}
.pr\:1, .px\:1, .p\:1 {
  padding-right: 0.8rem;
  padding-right: var(--sp-1);
}
.pb\:1, .py\:1, .p\:1 {
  padding-bottom: 0.8rem;
  padding-bottom: var(--sp-1);
}
.pl\:1, .px\:1, .p\:1 {
  padding-left: 0.8rem;
  padding-left: var(--sp-1);
}
.pt\:2, .py\:2, .p\:2 {
  padding-top: 1.6rem;
  padding-top: var(--sp-2);
}
.pr\:2, .px\:2, .p\:2 {
  padding-right: 1.6rem;
  padding-right: var(--sp-2);
}
.pb\:2, .py\:2, .p\:2 {
  padding-bottom: 1.6rem;
  padding-bottom: var(--sp-2);
}
.pl\:2, .px\:2, .p\:2 {
  padding-left: 1.6rem;
  padding-left: var(--sp-2);
}
.pt\:3, .py\:3, .p\:3 {
  padding-top: 2.8rem;
  padding-top: var(--sp-3);
}
.pr\:3, .px\:3, .p\:3 {
  padding-right: 2.8rem;
  padding-right: var(--sp-3);
}
.pb\:3, .site-footer, .py\:3, .p\:3 {
  padding-bottom: 2.8rem;
  padding-bottom: var(--sp-3);
}
.pl\:3, .px\:3, .p\:3 {
  padding-left: 2.8rem;
  padding-left: var(--sp-3);
}
.pt\:4, .py\:4, .p\:4 {
  padding-top: 4rem;
  padding-top: var(--sp-4);
}
.pr\:4, .px\:4, .p\:4 {
  padding-right: 4rem;
  padding-right: var(--sp-4);
}
.pb\:4, .py\:4, .p\:4 {
  padding-bottom: 4rem;
  padding-bottom: var(--sp-4);
}
.pl\:4, .px\:4, .p\:4 {
  padding-left: 4rem;
  padding-left: var(--sp-4);
}
.pt\:5, .py\:5, .p\:5 {
  padding-top: 5.2rem;
  padding-top: var(--sp-5);
}
.pr\:5, .px\:5, .p\:5 {
  padding-right: 5.2rem;
  padding-right: var(--sp-5);
}
.pb\:5, .py\:5, .p\:5 {
  padding-bottom: 5.2rem;
  padding-bottom: var(--sp-5);
}
.pl\:5, .px\:5, .p\:5 {
  padding-left: 5.2rem;
  padding-left: var(--sp-5);
}
.pt\:6, .site-footer, .py\:6, .page-header, .p\:6 {
  padding-top: 6.4rem;
  padding-top: var(--sp-6);
}
.pr\:6, .px\:6, .p\:6 {
  padding-right: 6.4rem;
  padding-right: var(--sp-6);
}
.pb\:6, .py\:6, .page-header, .p\:6 {
  padding-bottom: 6.4rem;
  padding-bottom: var(--sp-6);
}
.pl\:6, .px\:6, .p\:6 {
  padding-left: 6.4rem;
  padding-left: var(--sp-6);
}
.pt\:7, .py\:7, .p\:7 {
  padding-top: 7.6rem;
  padding-top: var(--sp-7);
}
.pr\:7, .px\:7, .p\:7 {
  padding-right: 7.6rem;
  padding-right: var(--sp-7);
}
.pb\:7, .py\:7, .p\:7 {
  padding-bottom: 7.6rem;
  padding-bottom: var(--sp-7);
}
.pl\:7, .px\:7, .p\:7 {
  padding-left: 7.6rem;
  padding-left: var(--sp-7);
}
.pt\:8, .py\:8, .p\:8 {
  padding-top: 8.8rem;
  padding-top: var(--sp-8);
}
.pr\:8, .px\:8, .p\:8 {
  padding-right: 8.8rem;
  padding-right: var(--sp-8);
}
.pb\:8, .py\:8, .p\:8 {
  padding-bottom: 8.8rem;
  padding-bottom: var(--sp-8);
}
.pl\:8, .px\:8, .p\:8 {
  padding-left: 8.8rem;
  padding-left: var(--sp-8);
}
.pt\:9, .py\:9, .p\:9 {
  padding-top: 10rem;
  padding-top: var(--sp-9);
}
.pr\:9, .px\:9, .p\:9 {
  padding-right: 10rem;
  padding-right: var(--sp-9);
}
.pb\:9, .py\:9, .p\:9 {
  padding-bottom: 10rem;
  padding-bottom: var(--sp-9);
}
.pl\:9, .px\:9, .p\:9 {
  padding-left: 10rem;
  padding-left: var(--sp-9);
}
.pt\:push, .py\:push, .hero, .section, .p\:push {
  padding-top: 9rem;
  padding-top: var(--push);
}
.pr\:push, .px\:push, .p\:push {
  padding-right: 9rem;
  padding-right: var(--push);
}
.pb\:push, .py\:push, .hero, .section, .p\:push {
  padding-bottom: 9rem;
  padding-bottom: var(--push);
}
.pl\:push, .px\:push, .p\:push {
  padding-left: 9rem;
  padding-left: var(--push);
}
.pt\:0, .py\:0, .p\:0 { padding-top: 0; }
.pr\:0, .px\:0, .p\:0 { padding-right: 0; }
.pb\:0, .py\:0, .p\:0 { padding-bottom: 0; }
.pl\:0, .px\:0, .p\:0 { padding-left: 0; }

/*
	----------------
	- z-index
	----------------
*/
.zi\:auto { z-index: auto; }
.zi\:-1 { z-index: -1; }
.zi\:0 { z-index: 0; }
.zi\:1 { z-index: 1; }
.zi\:2 { z-index: 2; }
.zi\:3 { z-index: 3; }

/*
	----------------
	- Colours
	----------------
*/
.c\:primary, a.c\:primary, .hover:hover .hover__c\:primary, .hover__c\:primary:hover, .link__c\:primary a, .link-hover__c\:primary a:hover {
  color: #b2956d;
}
.c\:primary-light, a.c\:primary-light, .hover:hover .hover__c\:primary-light, .hover__c\:primary-light:hover, .link__c\:primary-light a, .link-hover__c\:primary-light a:hover {
  color: #c5b092;
}
.c\:primary-dark, a.c\:primary-dark, .hover:hover .hover__c\:primary-dark, .hover__c\:primary-dark:hover, .link__c\:primary-dark a, .link-hover__c\:primary-dark a:hover {
  color: #96784f;
}
.c\:secondary { color: #595050; }
.c\:secondary-light { color: #867878; }
.c\:secondary-dark { color: #474040; }
.c\:soft, a.c\:soft { color: #927c7c; }
.c\:hard, a.c\:hard { color: #211c1c; }
.c\:light, a.c\:light { color: #f2f0f0; }
.c\:dark, a.c\:dark { color: #211c1c; }
.c\:white, a.c\:white { color: #fff; }
.c\:inherit, a.c\:inherit, .link__c\:inherit a { color: inherit; }
.c\:reset, a.c\:reset, .hover:hover .hover__c\:reset, .hover__c\:reset:hover, .link__c\:reset a, .link-hover__c\:reset a:hover {
  color: #4b3f3f;
}
.c\:1, a.c\:1, .hover:hover .hover__c\:1, .hover__c\:1:hover, .link__c\:1 a, .link-hover__c\:1 a:hover {
  color: #f9f8f8;
}
.c\:2, a.c\:2, .hover:hover .hover__c\:2, .hover__c\:2:hover, .link__c\:2 a, .link-hover__c\:2 a:hover {
  color: #f2f0f0;
}
.c\:3, a.c\:3, .hover:hover .hover__c\:3, .hover__c\:3:hover, .link__c\:3 a, .link-hover__c\:3 a:hover {
  color: #e5e0e0;
}
.c\:4, a.c\:4, .hover:hover .hover__c\:4, .hover__c\:4:hover, .link__c\:4 a, .link-hover__c\:4 a:hover {
  color: #d5cdcd;
}
.c\:5, a.c\:5, .hover:hover .hover__c\:5, .hover__c\:5:hover, .link__c\:5 a, .link-hover__c\:5 a:hover {
  color: #b2a3a3;
}
.c\:6, a.c\:6, .hover:hover .hover__c\:6, .hover__c\:6:hover, .link__c\:6 a, .link-hover__c\:6 a:hover {
  color: #927c7c;
}
.c\:7, a.c\:7, .hover:hover .hover__c\:7, .hover__c\:7:hover, .link__c\:7 a, .link-hover__c\:7 a:hover {
  color: #675656;
}
.c\:8, a.c\:8, .hover:hover .hover__c\:8, .hover__c\:8:hover, .link__c\:8 a, .link-hover__c\:8 a:hover {
  color: #4b3f3f;
}
.c\:9, a.c\:9, .hover:hover .hover__c\:9, .hover__c\:9:hover, .link__c\:9 a, .link-hover__c\:9 a:hover {
  color: #211c1c;
}

.bg { background-color: currentColor; }
.bg\:primary, .hover:hover .hover__bg\:primary, .hover__bg\:primary:hover { background-color: #b2956d; }
.bg\:primary-light, .hover:hover .hover__bg\:primary-light, .hover__bg\:primary-light:hover {
  background-color: #c5b092;
}
.bg\:primary-dark, .hover:hover .hover__bg\:primary-dark, .hover__bg\:primary-dark:hover {
  background-color: #96784f;
}
.bg\:secondary, .hover:hover .hover__bg\:secondary, .hover__bg\:secondary:hover { background-color: #595050; }
.bg\:secondary-light, .hover:hover .hover__bg\:secondary-light, .hover__bg\:secondary-light:hover {
  background-color: #867878;
}
.bg\:secondary-dark, .hover:hover .hover__bg\:secondary-dark, .hover__bg\:secondary-dark:hover {
  background-color: #474040;
}
.bg\:soft, .hover:hover .hover__bg\:soft, .hover__bg\:soft:hover { background-color: #927c7c; }
.bg\:hard, .hover:hover .hover__bg\:hard, .hover__bg\:hard:hover { background-color: #211c1c; }
.bg\:light, .hover:hover .hover__bg\:light, .hover__bg\:light:hover { background-color: #f2f0f0; }
.bg\:dark, .hover:hover .hover__bg\:dark, .hover__bg\:dark:hover { background-color: #211c1c; }
.bg\:reset, .hover:hover .hover__bg\:reset, .hover__bg\:reset:hover { background-color: #fff; }
.bg\:1, .hover:hover .hover__bg\:1, .hover__bg\:1:hover { background-color: #f9f8f8; }
.bg\:2, .hover:hover .hover__bg\:2, .hover__bg\:2:hover { background-color: #f2f0f0; }
.bg\:3, .hover:hover .hover__bg\:3, .hover__bg\:3:hover { background-color: #e5e0e0; }
.bg\:4, .hover:hover .hover__bg\:4, .hover__bg\:4:hover { background-color: #d5cdcd; }
.bg\:5, .hover:hover .hover__bg\:5, .hover__bg\:5:hover { background-color: #b2a3a3; }
.bg\:6, .hover:hover .hover__bg\:6, .hover__bg\:6:hover { background-color: #927c7c; }
.bg\:7, .hover:hover .hover__bg\:7, .hover__bg\:7:hover { background-color: #675656; }
.bg\:8, .hover:hover .hover__bg\:8, .hover__bg\:8:hover { background-color: #4b3f3f; }
.bg\:9, .hover:hover .hover__bg\:9, .hover__bg\:9:hover { background-color: #211c1c; }

.wrap\:input, #amount { position:relative; }
.amount_button {
  display:block;
  font-size:26px;
  font-weight:bold;
  height:73px;
  line-height:73px;
  width:100%;
  padding-left:26px;
  color:#888B8D;
  border:1px solid #927c7c;
}
.amount_button.selected {
  background:#B2956D;
  color:#000;
}
#amount { border:1px solid #927c7c; }
#amount span {
  display:inline-block;
  font-size:26px;
  font-weight:bold;
  height:71px;
  line-height:71px;
  width:71px;
  text-align:center;
  background:#B2956D;
  color:#fff;
}
#amount input {
  border:none;
  padding-left:10px;
  outline:none;
  display:inline-block;
  font-size:26px;
  font-weight:bold;
  height:71px;
  line-height:71px;
  max-width:200px;
  color:#000;
}
@media screen and (max-width:767px) {
  .amount_button { padding-left:10px; }
  #amount input { max-width:100px; }
}
.khums { display:none; }
.khums.active { display:block; }

.err {
  position:absolute;
  right:4px;
  bottom:0px;
  display:none;
  color:red;
  font-size:12px;
}
.select .err { bottom:-15px; }
#payment-processing {
  display:none;
  line-height:48px;
  color:#b2956d;
}
#payment-processing i { vertical-align:middle; }
.appeal { font-size:18px; }
.toggle a {
  display:block;
  color:#888B8D;
  border:1px solid #888B8D;
  line-height:48px;
  height:48px;
  text-align:center;
  text-transform:uppercase;
}
.toggle a.active {
  background:#B2956D;
  border:1px solid #B2956D;
  color:#fff;
}
.toggleable {
  overflow:hidden;
  max-height:0px;
  opacity:0;
  transition:all 0.5s;
  -webkit-transition:all 0.5s;
}
.toggleable.active {
  max-height:999px;
  opacity:1;
}
#eft_details > div:first-child > div {
  padding:30px;
  background:#F0EDEB;
  color:#888B8D;
  margin-bottom:10px;
}
#eft_details h2 {
  color:#B2956D;
  font-size:22px;
  line-height:1em;
  margin-bottom:0.2em;
  font-weight:bold;
}
.donation_fields { display:none; }
.donation_fields.active {
  display: flex;
  flex-wrap: wrap;
}
.coupon_fields { display:none; }
.coupon_fields.active { display:block; }
