.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex {
  display: flex;
}
.flex.inline {
  display: inline-flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.row {
  flex-direction: row;
}
.flex.row-reverse {
  flex-direction: row-reverse;
}
.flex.column {
  flex-direction: column;
}
.flex.column-reverse {
  flex-direction: column-reverse;
}
.flex.ai-center {
  align-items: center;
}
.flex.ai-start {
  align-items: flex-start;
}
.flex.ai-end {
  align-items: flex-end;
}
.flex.ai-stretch {
  align-items: stretch;
}
.flex.jc-center {
  justify-content: center;
}
.flex.jc-sb {
  justify-content: space-between;
}
.flex.jc-sa {
  justify-content: space-around;
}
.flex.jc-start {
  justify-content: flex-start;
}
.flex.jc-end {
  justify-content: flex-end;
}
.flex.jc-stretch {
  justify-content: stretch;
}
.flex.exists {
  flex: 1;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.split {
  align-items: center;
  justify-content: space-between;
}
.flex.no-shrink {
  flex-shrink: 0;
}

.text-center {
  text-align: center;
}

.shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-5 {
  padding: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.py-5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.m-5 {
  margin: 5px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.my-5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.p-10 {
  padding: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.m-10 {
  margin: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.my-10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.p-15 {
  padding: 15px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.m-15 {
  margin: 15px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.my-15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.p-20 {
  padding: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.m-20 {
  margin: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.my-20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.p-25 {
  padding: 25px;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.py-25 {
  padding-bottom: 25px;
  padding-top: 25px;
}

.m-25 {
  margin: 25px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.my-25 {
  margin-bottom: 25px;
  margin-top: 25px;
}

.p-30 {
  padding: 30px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.m-30 {
  margin: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.my-30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

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

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: inherit;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

textarea {
  font-family: inherit;
}

.btn {
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  display: block;
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.btn.btn-google, .btn.btn-facebook {
  width: 100%;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 25px;
  min-height: 45px;
}
.btn.btn-google img, .btn.btn-facebook img {
  width: 20px;
  height: auto;
  margin-right: 8px;
}
.btn.btn-facebook {
  background: #1977f3;
  color: white;
}
.btn.btn-google {
  background: #FEFEFF;
  color: #7F7E7E;
  border-color: #7F7E7E;
}
.btn:hover {
  opacity: 0.7;
}
.btn.btn-primary {
  padding: 10px 25px;
  max-width: 100%;
  color: #fff;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  background: #EEC24B;
  font-weight: bold;
}
@media only screen and (min-width: 1024px) {
  .btn.btn-primary {
    padding: 10px 35px;
  }
}
.btn.btn-white {
  padding: 10px 25px;
  max-width: 100%;
  color: #404041;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #fff;
}
.btn.btn-white.btn-bordered {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn .btn-md {
  padding: 11px 40px !important;
}
.btn.btn-lg {
  padding: 12px 40px !important;
}
.btn.btn-xl {
  padding: 18px 40px !important;
  font-size: 16px;
}
.btn.btn-small {
  padding: 4px 18px !important;
}
.btn.btn-secondary {
  padding: 8px 16px;
  max-width: 100%;
  color: #fff;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  background: #0CB2A2;
  font-weight: bold;
  border: 2px solid #0CB2A2;
}
.btn.btn-secondary.btn-bordered {
  background: transparent;
  border-color: #0CB2A2;
  color: #0CB2A2;
}
.btn.btn-secondary[disabled] {
  opacity: 0.4;
  pointer-events: none;
}
.btn.is-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  z-index: 99999;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  align-items: center;
  width: 100%;
  height: 100%;
}

.waiting-for-script {
  pointer-events: none;
}
.waiting-for-script form {
  opacity: 0.6;
}

.modal__container {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 580px;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}

.modal__container {
  border-radius: 16px;
  margin: 0 10px;
}

@media only screen and (min-width: 1024px) {
  .modal__container {
    padding: 60px 36px;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.form-group input,
.form-group textarea,
.form-group select {
  height: 36px;
  width: 100%;
  border-radius: 28px;
  border: 1px solid #0CB2A2;
  color: #404041;
  padding: 0 20px;
}
.form-group input[disabled],
.form-group textarea[disabled],
.form-group select[disabled] {
  pointer-events: none;
  background-color: #F3F3F3;
}
.form-group textarea {
  border-radius: 18px;
  padding-top: 8px;
}
.form-group textarea {
  min-height: 180px;
  max-height: 180px;
  resize: none;
}
.form-group.has-error {
  margin-bottom: 25px;
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  color: red;
  border-color: red;
}
.form-group .form-error {
  color: red;
  font-size: 12px;
  position: absolute;
  left: 5px;
  bottom: -18px;
}
.form-group .form-absolute-label {
  position: absolute;
  pointer-events: none;
  left: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  top: 14px;
  font-size: 14px;
  transition: transform 0.15s ease;
}
.form-group .form-absolute-label.active {
  transform: translate(-5px, -24px) scale(0.9);
  background: #fff;
  font-size: 14px;
}
.form-group input:focus + .form-absolute-label, .form-group input:active + .form-absolute-label, .form-group input:valid + .form-absolute-label,
.form-group textarea:focus + .form-absolute-label,
.form-group textarea:active + .form-absolute-label,
.form-group textarea:valid + .form-absolute-label,
.form-group select:focus + .form-absolute-label,
.form-group select:active + .form-absolute-label,
.form-group select:valid + .form-absolute-label {
  transform: translate(-5px, -24px) scale(0.9);
  background: #fff;
  font-size: 14px;
}
.form-group input:active, .form-group input:focus,
.form-group textarea:active,
.form-group textarea:focus,
.form-group select:active,
.form-group select:focus {
  outline: 0 !important;
  border-color: #EEC24B;
  box-shadow: 0 0 0 1px #EEC24B;
}
.form-group input:-webkit-autofill,
.form-group textarea:-webkit-autofill,
.form-group select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
.form-group.big input,
.form-group.big textarea,
.form-group.big select {
  height: 48px;
  border-radius: 12px;
}

.rich-editor-body {
  min-height: 400px;
  border: 1px solid #0CB2A2;
  padding: 0 16px;
  border-radius: 18px;
  margin-top: 0;
  border-top: 0;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.recaptcha-error-container {
  position: relative;
  height: 10px;
}
.recaptcha-error-container .form-error {
  color: red;
  font-size: 12px;
  position: absolute;
  left: 5px;
  top: -15px;
}

.rdw-image-wrapper,
.rdw-text-align-wrapper,
.rdw-option-wrapper[title=Superscript],
.rdw-option-wrapper[title=Subscript] {
  display: none !important;
}

.rdw-editor-toolbar {
  border: 1px solid #0CB2A2 !important;
  border-radius: 18px !important;
  margin: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.form-half {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .form-row {
    display: flex;
    justify-content: space-between;
  }

  .form-half {
    width: calc(50% - 30px);
  }
}
.form-checkbox {
  display: flex;
  position: relative;
  padding-bottom: 16px;
  text-align: left;
}
.form-checkbox:last-of-type {
  padding-bottom: 0;
}
.form-checkbox input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.form-checkbox input:focus + label:before {
  box-shadow: 0 0 0 2px #EEC24B;
}
.form-checkbox input:checked + label:before {
  background: url("/v2/images/icon-check.svg");
  background-color: #c8e6c9;
  background-position: center;
  background-size: contain;
}
.form-checkbox input[type=radio] + label:before {
  border-radius: 50% !important;
  overflow: hidden;
}
.form-checkbox label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}
.form-checkbox label:before {
  content: "";
  display: block;
  min-width: 20px;
  min-height: 20px;
  max-height: 20px;
  max-width: 20px;
  background: #F3F3F3;
  position: absolute;
  left: 0;
  top: 1px;
}
.form-checkbox a {
  position: relative;
  z-index: 5;
  color: #0CB2A2;
}

.form-success {
  display: flex;
  align-items: center;
}
.form-success img {
  margin-right: 10px;
  width: 48px;
  height: 48px;
}

.form-avatar {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.form-avatar canvas {
  background-color: #F3F3F3;
  border-radius: 50%;
}
.form-avatar label {
  display: block;
  margin-top: 8px;
}
.form-avatar input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

.image-output {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-output img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
}

.navigation-placeholder {
  height: 60px;
}

.navigation {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  height: 60px;
  align-items: center;
}
.navigation .container {
  height: 100%;
  align-items: center;
}
.navigation .nav-list {
  position: fixed;
  z-index: 9999;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  right: 0;
  top: 0;
  width: 300px;
  transform: translateX(100%);
  background: #fff;
  padding: 20px;
}
.navigation .btn-profile span {
  min-width: -moz-fit-content;
  min-width: fit-content;
  white-space: nowrap;
}
.navigation .btn-profile .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin-right: 8px;
}
.navigation .btn-profile .circle svg {
  width: 26px !important;
}
.navigation .mobile-auth-buttons {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.navigation .backdrop {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: min(100%, 100vw);
  height: 100vh;
  background: rgba(18, 18, 18, 0.36);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.navigation .nav-item {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.navigation .main-nav {
  position: absolute;
}
.navigation .main-nav.active .nav-list {
  pointer-events: all;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}
.navigation .main-nav.active .backdrop {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navigation .logo {
  width: 200px;
}

@media only screen and (min-width: 1024px) {
  .navigation-placeholder,
.navigation {
    height: 100px;
  }

  .navigation .nav-list {
    position: static;
    display: flex;
    align-items: center;
    transform: none;
    width: auto;
    pointer-events: all;
    margin-left: auto;
  }
  .navigation .main-nav {
    position: static;
    width: calc(100% - 160px);
  }
  .navigation .nav-item {
    font-size: 16px;
    margin-bottom: 0;
    white-space: nowrap;
    margin: 0 10px;
    font-weight: normal;
  }
  .navigation .logo {
    width: 220px !important;
  }
  .navigation .right {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.footer {
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}
.footer .footer-icon {
  width: 26px;
  height: auto;
  margin-left: 16px;
}
.footer .footer-icon.invert {
  filter: brightness(1) invert(1);
}
.footer .hr {
  height: 1px;
  margin: 40px 0 24px;
  background-color: #000;
}
.footer .footer-donate-form-wrapper input {
  background-color: #F3F3F3;
}
.footer .footer-donate-form-wrapper .form-checkbox {
  padding-bottom: 15px !important;
}
.footer .footer-flex {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .footer-newsletter {
  margin-right: 30px;
  margin-bottom: 30px;
}
.footer .footer-newsletter .icon {
  min-width: 26px;
  max-width: 26px;
  margin-right: 5px;
}
.footer .footer-newsletter span {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.footer .container {
  margin-top: 55px;
  margin-bottom: 55px;
  flex-direction: column;
}
.footer .logo {
  margin-bottom: 40px;
  min-width: 220px;
}
.footer .links {
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.footer .links a {
  font-size: 13px;
  margin-top: 8px;
  display: block;
}
.footer .links a:hover {
  text-decoration: underline;
}
.footer .links .block {
  margin-bottom: 30px;
}
.footer .links .block:last-child {
  margin-bottom: 0;
  text-align: right;
}
.footer .links .block p {
  font-weight: bold;
  font-size: 14px;
}
.footer .links .block ul {
  list-style: none;
}
.footer .links .block ul li {
  font-size: 14px;
}
.footer .footer-donate-form {
  max-width: 480px;
  padding: 16px;
  border: 1px solid #0cb2a2;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer .footer-donate-form .donate-inputs-flex {
  max-width: 360px;
  margin-bottom: 5px;
}
.footer .footer-donate-form p {
  font-size: 13px;
}
.footer .footer-donate-form .btn {
  white-space: nowrap;
}
.footer .footer-donate-form .text {
  margin-right: 20px;
}
.footer .footer-donate-form .text h4 {
  color: #0cb2a2;
  font-weight: bold;
}
.footer .footer-donate-form .text h4 + p {
  margin: 10px 0 18px;
}
.footer .footer-donate-form .small {
  font-style: italic;
  opacity: 0.8;
  font-size: 10px;
  margin-top: -14px;
}
.footer .donate-submit-container {
  padding-top: 10px;
  display: flex;
  justify-content: center;
}

@media (min-width: 530px) {
  .footer .footer-donate-form {
    flex-direction: row;
  }
  .footer .links {
    flex-direction: row;
    margin-bottom: 0;
  }
  .footer .links .block {
    margin-right: 40px;
  }
  .footer .links .block:last-child {
    margin-right: 0;
  }
  .footer .donate-submit-container {
    justify-content: flex-end;
  }
}
.newsletter-arrow {
  width: 20px;
  display: block;
}

@media only screen and (min-width: 1024px) {
  .footer .footer-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer .footer-donate-form {
    align-items: center;
    width: auto;
    max-width: 400px;
  }
  .footer .footer-donate-form .donate-submit-container {
    padding: 0;
  }
  .footer .footer-donate-form .submit-flex {
    display: flex;
    justify-content: space-between;
  }
  .footer .footer-newsletter {
    margin: 0 0 24px;
    margin-right: auto;
  }
  .footer .footer-newsletter .btn {
    justify-content: flex-start !important;
    margin: 0;
    margin-left: 30px;
  }
  .footer .footer-newsletter .icon {
    min-width: 18px;
    max-width: 18px;
    margin-right: 8px;
  }
  .footer .footer-newsletter span {
    width: auto;
    white-space: initial;
  }
  .footer .btn {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 135px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer .logo {
    max-width: min(256px, 30%);
    margin-bottom: 0;
  }
  .footer .links {
    flex-direction: row;
    margin-bottom: 0;
    margin-left: 30px;
    margin-right: 30px;
    width: auto;
    max-width: 320px;
  }
  .footer .links a {
    min-width: 140px;
    max-width: 140px;
  }
  .footer .links .block {
    margin-right: 40px;
  }
  .footer .links .block:last-child {
    margin-right: 0;
    text-align: left;
  }
}
@media (min-width: 1380px) {
  .footer .footer-donate-form {
    max-width: 50%;
  }
}
.subscribe-form {
  background-color: #F3F3F3;
  position: relative;
}
.subscribe-form .section {
  padding-bottom: 20px;
}
.subscribe-form form .form-success {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 12px;
  position: relative;
  top: -13px;
}
.subscribe-form .right {
  background-color: #0CB2A2;
  background-position: center center;
  background-size: cover;
  border-radius: 18px;
}
.subscribe-form h3 {
  color: #FDDF7E;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}
.subscribe-form .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subscribe-form .form-group:first-of-type, .subscribe-form .form-group:nth-of-type(2) {
  width: calc(50% - 5px);
}
.subscribe-form .form-group:last-of-type {
  margin-bottom: 0;
}
.subscribe-form .btn {
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.scroll-to-top img {
  filter: brightness(0) invert(1);
  margin-top: -7px;
  transform: rotate(90deg);
}

@media only screen and (min-width: 1024px) {
  .subscribe-form .container {
    max-width: 1080px;
  }
  .subscribe-form .desktop-flex {
    display: flex;
  }
  .subscribe-form .right {
    width: calc(100% - 340px);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .subscribe-form .right,
.subscribe-form .left {
    padding: 60px 38px;
  }
  .subscribe-form .right .flex {
    padding-top: 20px;
  }
  .subscribe-form .title {
    color: #EEC24B;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .subscribe-form .content {
    font-size: 13px;
    color: #0CB2A2;
  }
  .subscribe-form .left {
    width: 340px;
    background: #fff;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .subscribe-form .btn {
    margin-right: 0;
  }
}
h1,
.font-1 {
  font-size: 32px;
}

h2,
.font-2 {
  font-size: 28px;
}

h3,
.font-3 {
  font-size: 24px;
}

h4,
.font-4 {
  font-size: 20px;
}

h5,
.font-5 {
  font-size: 18px;
}

h6,
.font-6 {
  font-size: 16px;
}

body,
.font-base {
  font-size: 14px;
}

.font-small {
  font-size: 13px;
}

.green {
  color: #0CB2A2;
}

@media only screen and (min-width: 1024px) {
  body,
.font-base {
    font-size: 16px;
  }

  .font-small {
    font-size: 14px;
  }
}
body {
  font-family: "Montserrat", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  color: #404041;
  line-height: 1.4;
  overflow-x: hidden;
}

* {
  font-family: "Montserrat", sans-serif;
}

.section {
  padding-top: 30px;
  padding-bottom: 50px;
}

.bg-green {
  background-color: #0CB2A2 !important;
}

.light {
  background-color: #F3F3F3;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.lazy-image-container {
  width: 100%;
  position: relative;
  background-color: #F3F3F3;
  overflow: hidden;
}
.lazy-image-container .lazy-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lazy-image-container .lazy-image {
  width: 100%;
  height: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.click--event {
  cursor: pointer;
}

.desktop {
  display: none !important;
}

.focus {
  color: #EEC24B;
  font-weight: bold;
}

.primary {
  color: #0CB2A2;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.youtube .wrappers-wrapper {
  width: 100%;
  max-width: 700px;
}

.youtube .iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.overflow-hidden {
  overflow: hidden;
}

/* Then style the iframe to fit in the container div with full height and width */
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.rich-text {
  font-size: 14px;
}
.rich-text div:focus {
  outline: 0 !important;
}
.rich-text a {
  color: #0CB2A2;
  text-decoration: underline;
}
.rich-text ul,
.rich-text ol {
  list-style: none;
}
.rich-text li,
.rich-text p {
  margin-bottom: 8px;
}
.rich-text p:last-child {
  margin-bottom: 0;
}
.rich-text ol:last-child li:last-child,
.rich-text ul:last-child li:last-child {
  margin-bottom: 0;
}
.rich-text li {
  position: relative;
  padding-left: 24px;
}
.rich-text li:before {
  content: "";
  position: absolute;
  display: block;
  left: 3px;
  top: 6px;
}
.rich-text ol li {
  counter-increment: ol-counter;
}
.rich-text ol li:before {
  content: counter(ol-counter) ".";
  color: black;
  font-weight: bold;
  position: absolute;
  display: block;
  left: 3px;
  top: 0;
}
.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text h5,
.rich-text h6 {
  font-weight: bold;
  margin-bottom: 8px;
}
.rich-text h1:not(:first-child),
.rich-text h2:not(:first-child),
.rich-text h3:not(:first-child),
.rich-text h4:not(:first-child),
.rich-text h5:not(:first-child),
.rich-text h6:not(:first-child) {
  padding-top: 10px;
}
.rich-text h1 {
  font-size: 26px;
}
.rich-text h2 {
  font-size: 21px;
}
.rich-text h3 {
  font-size: 16px;
}
.rich-text ul li:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: black;
}

.cookies-fixed {
  position: fixed;
  width: calc(100% - 40px);
  bottom: 0;
  left: 0;
  z-index: 9999999999;
  margin: 0 20px;
}

.cookies {
  padding: 32px 0;
  max-width: 1024px !important;
  background-color: #EEC24B;
  border-top-right-radius: 48px;
  border-top-left-radius: 48px;
}
.cookies .cookies-img {
  width: 100px;
  height: 70px;
  margin-top: -66px;
  margin-bottom: 14px;
}

@media only screen and (min-width: 1024px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mobile {
    display: none !important;
  }

  .desktop {
    display: block !important;
  }
  .desktop.flex {
    display: flex !important;
  }

  .section {
    padding-top: 50px;
  }
}
#donate-form .modal__container {
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  #donate-form .modal__container {
    padding: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  #donate-form .modal__container {
    padding: 50px;
  }
}

.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

ul.styled-list,
ol.styled-list {
  list-style: none;
}

ul.styled-list li {
  display: flex;
  margin-bottom: 3px;
}
ul.styled-list li:last-of-type {
  margin: 0;
}
ul.styled-list li:before {
  content: "";
  display: block;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  margin-top: 4px;
  margin-right: 6px;
  border-radius: 50%;
  background: #0CB2A2;
}

.pagination {
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.pagination .page {
  background-color: transparent;
  color: #EEC24B;
  font-weight: bold;
  padding: 2px 6px;
  margin: 0 4px;
  border-radius: 6px;
}
.pagination .page.active {
  pointer-events: none;
  background-color: #EEC24B;
  color: #fff;
}

.complete-cause {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px;
  width: 180px;
}

@media (max-width: 800px) {
  input,
select {
    font-size: 16px;
  }
}
#notification-container {
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 9999999;
}

.notification {
  background-color: #fff;
  color: #0CB2A2;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 16px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 12px;
  margin-bottom: 24px;
  max-width: 320px;
}
.notification:before {
  content: "";
  display: block;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  background-image: url("/v2/images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 16px;
}
