.d-flex, .footer-card, .sponsor-card-amount, .sponsor-card h3, .hero-controls {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline-block {
  display: inline-block;
  vertical-align: middle;
}

.align-items-center, .sponsor-card-amount, .sponsor-card h3, .hero-controls {
  align-items: center;
}

.align-items-start, .footer-card {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-center, .sponsor-card-amount, .sponsor-card h3 {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-between, .footer-card, .hero-controls {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

.flex-column, .footer-card {
  flex-direction: column;
}

.transition, a, .btn, button {
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
}

.flex-grow {
  flex-grow: 1;
}

.order-2 {
  order: 2;
}

.grad {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 224, 72) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 224, 72) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 224, 72) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffe048",GradientType=1);
}

.fs-16 {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .fs-16 {
    font-size: 14px;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  font-size: 100.01%;
}

input, button, select, textarea {
  font-family: "Akko Pro";
  font-weight: 400;
  outline: none;
}

body {
  background-color: #cfcfcf;
  font-family: "Akko Pro";
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400;
  line-height: 1.3;
  color: #654536;
  font-size: 20px;
}

.container {
  width: 100%;
  margin: auto;
  max-width: 1430px;
}

strong {
  font-weight: 700;
}

small {
  font-size: 90%;
}

a, .btn {
  outline: none !important;
}

a {
  color: #000;
  text-decoration: none !important;
}
a:hover {
  text-decoration: underline;
}

p, ul {
  margin-bottom: 1em;
}
p:last-child, ul:last-child {
  margin-bottom: 0;
}

h1, h2, h3, .h1, .h2, .h3 {
  line-height: 1.2;
  font-weight: 900;
  font-family: "Akko Pro";
}

h4, h5, h6, .h4, .h5, .h6 {
  line-height: 1.3;
  font-weight: 700;
  font-family: "Akko Pro";
}

h1, .h1 {
  text-transform: uppercase;
  margin-bottom: 22px;
  font-size: 115px;
}

h2, .h2 {
  font-size: 50px;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

h4 {
  font-size: 21px;
  margin-bottom: 1em;
}

h5 {
  font-size: 15px;
  margin-bottom: 0.4em;
}

h6 {
  font-size: 14px;
}

.text-red {
  color: #ef4464;
}
.text-muted {
  color: #b2b2b2 !important;
}
.text-muted a {
  color: inherit;
}

ul, ol {
  list-style-type: none;
}

.img-fluid {
  max-width: 100%;
}

hr {
  border-top: 1px solid #000;
}

.w-100 {
  width: 100%;
}

.position-relative {
  position: relative;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.badge {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.215;
}
.badge-orange {
  background-color: #FFCEBA;
}
.badge-yellow {
  background-color: #FDBB30;
}
.badge-green {
  background-color: #B1F598;
}

.bg-secondary {
  color: #ffffff;
}
.bg-cream {
  background-color: #f5f1ed;
}

.p-20 {
  padding: 20px;
}

.py-80 {
  padding-bottom: 80px;
  padding-top: 80px;
}
.py-40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-56 {
  margin-bottom: 56px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-100 {
  margin-bottom: 100px;
}

@-webkit-keyframes btnLink {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes btnLink {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes btnLink {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes btnLink {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes btnLinkArrow {
  0% {
    -moz-transform: translate(-5px, 0);
    -o-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }
  100% {
    -moz-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}
@-moz-keyframes btnLinkArrow {
  0% {
    -moz-transform: translate(-5px, 0);
    -o-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }
  100% {
    -moz-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}
@-ms-keyframes btnLinkArrow {
  0% {
    -moz-transform: translate(-5px, 0);
    -o-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }
  100% {
    -moz-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}
@keyframes btnLinkArrow {
  0% {
    -moz-transform: translate(-5px, 0);
    -o-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }
  100% {
    -moz-transform: translate(5px, 0);
    -o-transform: translate(5px, 0);
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0);
  }
}
.btn-grad, .telshe .btn, .hero-controls .btn, .navbar .btn, .footer-card #donate-btn {
  box-shadow: 0 4px 21px rgba(109, 72, 50, 0.54);
  background: rgb(207, 207, 207);
  background: -moz-linear-gradient(0deg, rgb(207, 207, 207) 0%, rgb(255, 255, 255) 50%, rgb(206, 205, 205) 100%);
  background: -webkit-linear-gradient(0deg, rgb(207, 207, 207) 0%, rgb(255, 255, 255) 50%, rgb(206, 205, 205) 100%);
  background: linear-gradient(0deg, rgb(207, 207, 207) 0%, rgb(255, 255, 255) 50%, rgb(206, 205, 205) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cfcfcf",endColorstr="#cecdcd",GradientType=1);
}

.text-grad, h1, h2 small, h2 {
  font-size: 72px;
  background: rgb(101, 69, 54);
  background: -moz-linear-gradient(0deg, rgb(101, 69, 54) 0%, rgb(141, 84, 25) 100%);
  background: -webkit-linear-gradient(0deg, rgb(101, 69, 54) 0%, rgb(141, 84, 25) 100%);
  background: linear-gradient(0deg, rgb(101, 69, 54) 0%, rgb(141, 84, 25) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#654536",endColorstr="#8d5419",GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 4px;
  padding: 12px 22px;
  text-transform: uppercase;
}
.btn:after {
  display: none !important;
}
.btn-min {
  min-width: 275px;
}
.btn-sm {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 35px;
}
.btn-md {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  padding: 20px 35px;
}
.btn-blue, .btn--secondary, .btn.address-new-toggle, .btn--to-secondary, .btn--loader {
  color: #ffffff;
  border-color: #304543;
  background-color: #304543;
}
.btn-blue:hover, .btn--secondary:hover, .btn.address-new-toggle:hover, .btn--to-secondary:hover, .btn--loader:hover {
  color: #304543;
  border-color: #304543;
  background-color: #ffffff;
}
.btn-blue-outline, .btn--secondary-outline, .btn.address-new-toggle-outline, .btn--to-secondary-outline, .btn--loader-outline {
  color: #304543;
  border-color: #304543;
  background-color: #ffffff;
}
.btn-blue-outline:hover, .btn--secondary-outline:hover, .btn.address-new-toggle-outline:hover, .btn--to-secondary-outline:hover, .btn--loader-outline:hover {
  color: #ffffff;
  border-color: #304543;
  background-color: #304543;
}
.btn--clear {
  color: #304543;
  border-color: #304543;
  background-color: #ffffff;
}
.btn--clear:hover {
  color: #ffffff;
  border-color: #304543;
  background-color: #304543;
}
.btn-reset {
  padding: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.btn-theme {
  font-size: 14px;
  min-width: 175px;
  padding: 10px 8px;
  font-weight: bold;
  text-align: center;
  border-radius: 25px;
  text-transform: uppercase;
  box-shadow: 0 3px 5px rgba(2, 3, 2, 0.25);
}
.btn-link {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  border: none !important;
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 3px !important;
}
.btn-link:hover:after {
  -webkit-animation: btnLink 0.5s ease-out;
  -moz-animation: btnLink 0.5s ease-out;
  -ms-animation: btnLink 0.5s ease-out;
  -o-animation: btnLink 0.5s ease-out;
  animation: btnLink 0.5s ease-out;
}
.btn-link:after {
  -moz-transition: all 0.35s linear;
  -o-transition: all 0.35s linear;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
  background-color: currentColor;
  position: absolute;
  content: "";
  height: 1px;
  top: 100%;
  width: 0;
  left: 0;
}
.btn-group {
  margin-bottom: 20px;
}
.btn-group .btn {
  margin: 0;
}

.navbar {
  z-index: 9;
  padding-top: 25px;
  padding-bottom: 8px;
}
.navbar-brand {
  padding: 0;
  left: 55px;
  margin: auto;
  position: relative;
}
.navbar-collapse {
  transform: translateY(-50%);
  justify-content: center;
  position: absolute;
  padding-left: 22px;
  margin-top: 8px;
  width: 100%;
  top: 50%;
  left: 0;
}
.navbar .btn, #donate-btn {
  z-index: 2;
  padding: 0;
  width: 110px;
  height: 34px;
  font-size: 17px;
  color: #654536;
  line-height: 34px;
  font-weight: bold;
  font-family: "Akko Pro";
  position: relative;
  border-radius: 50px;
}
#donate-btn {
  height: auto;
}
.navbar-nav {
  font-size: 15px;
  font-weight: 100;
  text-transform: uppercase;
}
.navbar-nav li + li {
  margin-left: 50px;
}
.navbar-nav li:nth-child(3) {
  margin-left: 280px;
}
.navbar-nav a {
  font-weight: 100;
  color: #6e5245;
  position: relative;
  letter-spacing: 0.1em;
}
.navbar-nav a.active, .navbar-nav a:hover {
  color: #304543 !important;
}
.navbar-nav a.active:before, .navbar-nav a:hover:before {
  opacity: 1;
}
.navbar-nav li {
  margin-right: 8px;
}

.hero {
  overflow: hidden;
  padding-top: 80px;
  position: relative;
  padding-bottom: 80px;
}
.hero img {
  transform: translateX(-50%);
  position: absolute;
  height: 100%;
  z-index: -1;
  left: 50%;
  top: 0;
}
.hero-content {
  max-width: 900px;
  display: block;
  margin: auto;
  width: 100%;
}
.hero-content h1 {
  font-size: 115px;
  margin-bottom: 0;
  font-weight: normal;
  font-family: "MEAVE";
}
.hero-content h4 {
  font-size: 25px;
  color: #654536;
  font-weight: bold;
  margin-bottom: 1em;
}
.hero-content h6 {
  text-transform: uppercase;
  color: #654536;
  font-weight: 300;
  font-size: 18px;
}
.hero-controls {
  width: 100%;
  margin: auto;
  margin-top: 15vh;
  max-width: 1040px;
}
.hero-controls .btn {
  padding: 0 22px;
  font-size: 17px;
  font-weight: 300;
  color: #664536;
  line-height: 38px;
  letter-spacing: 0.1em;
  border-radius: 8px;
}

.flame {
  padding-top: 140px;
  padding-bottom: 60px;
  background: transparent url("../images/flame-bg.png") no-repeat center/cover;
}
.flame .col-md-8 {
  margin-top: -24%;
}
.flame-content {
  padding-left: 60px;
}
.flame-content h2 {
  margin-top: 95px;
  line-height: 0.9;
  font-size: 125px;
  position: relative;
  font-family: "MEAVE";
  font-weight: normal;
  margin-bottom: 0.2em;
  text-transform: uppercase;
}
.flame-content h2 small {
  position: absolute;
  font-size: 0.34em;
  left: -65px;
  top: 5px;
}
.flame-content h3 {
  font-size: 33px;
  font-weight: 100;
  color: #654536;
  text-transform: uppercase;
}
.flame-content h3 strong {
  display: block;
  font-weight: bold;
}

.sponsorship {
  margin-top: 150px;
  position: relative;
}
.sponsorship:before {
  left: 0;
  right: 0;
  width: 1px;
  top: -205px;
  content: "";
  margin: auto;
  height: 185px;
  position: absolute;
  background-color: #654536;
}
.sponsorship > p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2em;
  color: #654536;
  font-weight: 50;
  font-size: 18px;
}

.sponsor-card {
  margin: auto;
  padding: 30px;
  height: 440px;
  color: #ffffff;
  font-weight: 50;
  font-size: 17px;
  line-height: 1.3;
  max-width: 292px;
  text-align: center;
  border-radius: 52px 0;
  box-shadow: -1px 5px 17px 5px rgba(0, 0, 0, 0.26);
  background: transparent url("../images/sponsor-card.png") no-repeat center/100% 100%;
  cursor: pointer;
}
.sponsor-card h3 {
  font-size: 42px;
  line-height: 0.9;
  min-height: 85px;
  text-align: center;
  margin-bottom: 25px;
  font-family: "MEAVE";
  font-weight: normal;
  text-transform: uppercase;
}
.sponsor-card p {
  margin-bottom: 25px;
}
.sponsor-card-amount {
  min-height: 75px;
  margin-bottom: 40px;
}
.sponsor-card-amount input {
  background-color: transparent;
  text-transform: uppercase;
  border-width: 0 0 2px 0;
  border-color: #ffffff;
  border-style: solid;
  font-family: "Akko Pro";
  text-align: center;
  font-weight: bold;
  font-size: 19px;
  color: #ffffff;
  outline: none;
  width: 100%;
}
.sponsor-card-amount input::placeholder {
  color: #ffffff;
  opacity: 1;
}
.sponsor-card-amount input::-ms-input-placeholder {
  color: #ffffff;
}
.sponsor-card-amount h2 {
  line-height: 1;
  margin-bottom: 0;
  font-family: "MEAVE";
  font-weight: normal;
  font-size: 85px !important;
  text-transform: none !important;
  background: none !important;
  -webkit-text-fill-color: #fff;
}
.sponsor-card-amount h2 sub {
  font-size: 0.355em;
}
.sponsor-card .btn {
  width: 100%;
  font-size: 16px;
  padding: 0 10px;
  color: #654536;
  line-height: 36px;
  text-align: center;
  font-weight: normal;
  background-color: #ffcf7a;
  border-radius: 20px 0 50px 20px;
}

.exalt {
  padding-top: 220px;
  font-weight: 300;
  font-size: 33px;
}
.exalt h2 {
  font-size: 125px;
  line-height: 0.82;
  font-weight: normal;
  font-family: "MEAVE";
  margin-bottom: 0.12em;
  text-transform: uppercase;
}
.exalt-card {
  position: relative;
  margin-top: -120px;
}
.exalt-card img {
  width: 100%;
}
.exalt-card p {
  transform: translateY(-50%);
  position: absolute;
  padding: 10px 8%;
  font-size: 19px;
  color: #ffffff;
  z-index: 1;
  margin: 0;
  top: 50%;
}

.kaddish {
  margin-top: 40px;
  position: relative;
}
.kaddish:before {
  left: 0;
  width: 1px;
  top: -160px;
  content: "";
  z-index: -1;
  margin: auto;
  right: 170px;
  height: 210px;
  position: absolute;
  background-color: #654536;
}
.kaddish-inner {
  margin: -370px auto 110px;
  position: relative;
  max-width: 820px;
  width: 100%;
  z-index: 1;
}
.kaddish-inner > p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.85em;
  color: #000000;
  font-size: 18px;
}
.kaddish-inner h2 {
  font-size: 125px;
  line-height: 0.82;
  font-weight: normal;
  font-family: "MEAVE";
  margin-bottom: 0.03em;
  text-transform: uppercase;
}
.kaddish-inner .sponsor-card {
  max-width: 390px;
}
.kaddish-inner .sponsor-card p {
  max-width: 80%;
  margin: auto;
}

.lasting {
  z-index: 1;
  padding-top: 26%;
  padding-left: 65px;
  position: relative;
  padding-right: 65px;
}
.lasting > img {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
}
.lasting .sponsor-card {
  height: 400px;
}

.glow-title {
  z-index: 1;
  position: relative;
}
.glow-title img {
  width: 100%;
  height: 100%;
  display: block;
}
.glow-title-sm {
  z-index: 0;
}
.glow-title-sm img {
  width: 115%;
  margin-left: -15%;
}
.glow-title h2 {
  left: 0;
  top: 57%;
  margin: 0;
  z-index: 1;
  width: 100%;
  color: #e7cdb3;
  font-size: 120px;
  line-height: 0.82;
  position: absolute;
  text-align: center;
  font-weight: normal;
  font-family: "MEAVE";
  text-transform: uppercase;
  transform: translateY(-50%);
  background: none !important;
  -webkit-text-fill-color: #e7cdb3;
}
.glow-title p {
  left: 0;
  top: 51%;
  margin: 0;
  padding: 0 5%;
  color: #ffffff;
  font-size: 28px;
  font-weight: 50;
  font-family: "Akko Pro";
  position: absolute;
  transform: translateY(-50%);
}
.glow-card-title {
  position: relative;
  margin-top: -15px;
}
.glow-card-title img {
  margin: 0 auto 0;
  max-width: 100%;
  display: block;
}
.glow-card-title p {
  left: 0;
  top: 56%;
  width: 100%;
  font-size: 18px;
  font-weight: 50;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
  transform: translateY(-50%);
}

.telshe {
  font-size: 19px;
  padding-top: 25%;
  color: #654536;
  padding-bottom: 10%;
  background: transparent url("../images/telshe-bg.png") no-repeat center/cover;
}
.telshe strong {
  font-weight: 500;
}
.telshe h2 {
  font-size: 125px;
  line-height: 0.82;
  font-weight: normal;
  font-family: "MEAVE";
  margin-bottom: 0.03em;
  text-transform: uppercase;
}
.telshe .btn {
  padding: 0 22px;
  font-size: 17px;
  font-weight: 300;
  color: #664536;
  line-height: 38px;
  letter-spacing: 0.1em;
  border-radius: 8px;
}

.footer {
  padding-top: 10%;
  padding-bottom: 6%;
  background: transparent url("../images/footer-bg.png") no-repeat top center/cover;
}
.footer-content h2 {
  font-size: 92px;
  line-height: 0.82;
  font-weight: normal;
  font-family: "MEAVE";
  margin-bottom: 0.22em;
  text-transform: uppercase;
}
.footer-card {
  border: 2px solid #674635;
  border-radius: 0 0 50px 0;
  min-height: 420px;
  margin: 0 -1px -1px;
  font-size: 20px;
  padding: 40px 32px;
}
.footer-card h6 {
  text-transform: uppercase;
  font-weight: normal;
  color: #654536;
  font-size: 23px;
}
.footer-card p {
  margin-bottom: 0;
  line-height: 1.2;
}
.footer-logo {
  margin-top: -30px;
}
.footer-bottom {
  background: transparent url("../images/footer-bar.png") no-repeat center/100% auto;
}
.footer-bottom .row {
  position: relative;
  top: -3px;
}
.footer-bottom .container {
  max-width: 920px;
}
.footer-bottom p {
  font-size: 15px;
  color: #bfac70;
  width: 165px;
}

.code {
  color: #654536 !important;
  font-weight: normal;
  font-size: 15px;
  padding: 75px 0;
}

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