@charset "UTF-8";
* {
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@keyframes sliding {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes rotating {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
a {
  text-decoration: none;
}

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

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
}

main {
  margin-top: 114px;
}
@media (min-width: 992px) {
  main {
    margin-top: 126px;
  }
}
@media (min-width: 1265px) {
  main {
    margin-top: 143px;
  }
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
html.scroll-off {
  overflow: hidden;
}

.img-placeholder {
  position: relative;
  display: block;
}
.img-placeholder:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.img-placeholder img,
.img-placeholder video,
.img-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1265px) {
  .container {
    max-width: 1260px;
  }
}
@media (min-width: 1480px) {
  .container {
    max-width: 1390px;
  }
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url("../img/loader.gif") center no-repeat #fff;
  background-size: 250px auto;
  text-align: center;
}

.lead-title {
  color: #2a2524;
  font-size: 4.4rem;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: -1.32px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .lead-title {
    font-size: 6rem;
    letter-spacing: -1.6px;
  }
}
@media (min-width: 1265px) {
  .lead-title {
    font-size: 8rem;
    letter-spacing: -2.4px;
  }
}

@media (min-width: 992px) {
  .layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .layout .main-content {
    flex: 0 0 calc(100% - 332px);
    width: calc(100% - 332px);
  }
}
@media (min-width: 1265px) {
  .layout .main-content {
    flex: 0 0 calc(100% - 464px);
    width: calc(100% - 464px);
  }
}
@media (min-width: 992px) {
  .layout .sidebar {
    flex: 0 0 300px;
    width: 300px;
  }
}
@media (min-width: 1265px) {
  .layout .sidebar {
    flex: 0 0 432px;
    width: 432px;
    margin-inline: 0;
  }
}

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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.36);
  z-index: 10000;
  display: none;
}
.modal.active {
  display: block;
}
.modal .modal-wrapper {
  width: 100%;
  height: 100%;
}
.modal .modal-wrapper .modal-inner {
  background-color: #fff;
  width: 500px;
  max-width: 90%;
  border-radius: 24px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-wrapper .modal-inner .modal-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modal .modal-wrapper .modal-inner .modal-header .modal-close {
  display: block;
  width: 30px;
  height: 30px;
}
.modal .modal-wrapper .modal-inner .modal-body {
  padding: 0 2rem 2rem 2rem;
  max-height: 90vh;
  overflow-y: auto;
}
.modal .modal-wrapper .modal-inner .modal-body h3 {
  color: #2a2524;
  font-size: 3rem;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: -1.32px;
  margin-bottom: 2.4rem;
}
.modal .modal-wrapper .modal-inner .modal-body h4 {
  color: #2a2524;
  font-size: 2.5rem;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: -1.32px;
  margin-bottom: 0;
}
.modal .modal-wrapper .modal-inner .modal-footer {
  padding: 0 2rem 2rem 2rem;
  text-align: center;
}
.modal .modal-wrapper .modal-inner .modal-footer .modal-close {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  border: none;
  border-radius: 999px;
  background: #f7941d;
  padding: 10px 20px;
}
.modal .modal-wrapper .modal-inner .modal-close {
  cursor: pointer;
}
.modal .modal-wrapper .modal-inner .modal-close .error line {
  stroke: red;
  stroke-dashoffset: -50px;
  stroke-dasharray: 50px;
}
.modal .modal-wrapper .modal-inner .modal-close .error line .left {
  animation: drawLine 0.6s ease-in both;
}
.modal .modal-wrapper .modal-inner .modal-close .error line .right {
  animation: drawLine 0.6s ease-in 0.4s both;
}
.modal .modal-wrapper .modal-body .warning-icon {
  display: block;
  max-width: 80px;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.modal .modal-wrapper .modal-body .warning-icon .warning circle.animationSvg {
  stroke: #ffba00;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 2;
  animation: drawCircle 0.6s ease-in both, warningFillSvg 0.6s ease-in 0.4s both;
}
.modal .modal-wrapper .modal-body .warning-icon .warning path,
.modal .modal-wrapper .modal-body .warning-icon .warning line {
  stroke: #fff;
}
.modal .modal-wrapper .modal-body .warning-icon .warning path {
  stroke-dashoffset: -50px;
  stroke-dasharray: 50px;
  animation: drawLine 0.6s ease-in 0.9s both;
}
.modal .modal-wrapper .modal-body .warning-icon .warning line {
  animation: drawDot 0.5s ease-in 0.6s both;
}
.modal .modal-wrapper .modal-body .modal-close {
  padding: 1rem 2rem;
  transition: 0.4s linear;
}
.modal .modal-wrapper .modal-body .modal-close:hover {
  color: #8b6baf;
}
.modal .thankyou-icon,
.modal .error-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: green;
}
.modal .thankyou-icon svg,
.modal .error-icon svg {
  fill: #fff;
}
.modal .thankyou-icon svg.success circle.animationSvg {
  stroke: #1f4f3c;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 2;
  animation: drawCircle 0.6s ease-in both, successFillSvg 0.6s ease-in 0.4s both;
}
.modal .thankyou-icon svg.success path {
  stroke: #fff;
  stroke-dashoffset: -50px;
  stroke-dasharray: 50px;
  animation: drawLine 0.6s ease-in 0.8s both;
}
.modal .thankyou-icon svg.close circle.animationSvg {
  stroke: red;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 2;
  animation: drawCircle 0.6s ease-in both, dangerFillSvg 0.6s ease-in 0.4s both;
}
.modal .thankyou-icon svg.close line {
  stroke: #fff;
}
.modal .thankyou-icon svg.close line {
  stroke-dashoffset: -50px;
  stroke-dasharray: 50px;
}
.modal .thankyou-icon svg.close line.left {
  animation: drawLine 0.6s ease-in 0.5s both;
  stroke-dashoffset: 0;
}
.modal .thankyou-icon svg.close line.right {
  animation: drawLine 0.6s ease-in 0.8s both;
  stroke-dashoffset: 0;
}
.modal .error-icon {
  background-color: red;
}

.error-msg .error {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: red;
  margin-top: 1rem;
}

.btn-slashed {
  --from-bg: #f7941d;
  --to-bg: #8b6baf;
  --dur: 1s;
  --cut-top: 63%;
  --cut-bot: 10%;
  position: relative;
  display: inline-block;
  padding: 1.8rem 3.2rem;
  border-radius: 9999px;
  background: var(--from-bg);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: color var(--dur) ease;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-slashed::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  background: var(--to-bg);
  border-radius: inherit;
  z-index: 1;
  clip-path: polygon(0% 0%, var(--cut-top) 0%, calc(var(--cut-bot) + 5%) 100%, 0% 100%);
  transform: translateX(-110%);
  transition: transform var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1), clip-path var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, clip-path;
}

.btn-slashed .btn-label {
  position: relative;
  z-index: 2;
}

.btn-slashed .icon {
  position: relative;
  z-index: 2;
}

.btn-slashed img {
  position: relative;
  z-index: 2;
}

.btn-slashed:hover::before,
.btn-slashed:focus-visible::before {
  transform: translateX(0);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.btn-slashed:focus-visible {
  outline: none;
}

.btn-slashed:hover,
.btn-slashed:focus-visible {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .btn-slashed::before {
    transition-duration: 0.2s;
  }
}
/* Inicijalno kratki ljubičasti klin → na hover stane na ~88% širine */
.btn-slashed-init {
  --from-bg: #f7941d; /* žuta/narandžasta pozadina */
  --to-bg: #8b6baf; /* ljubičasta */
  --dur: 0.65s;
  /* početni klin (kraći, kao na slici) */
  --cut-top: 28%;
  --cut-bot: 6%;
  /* koliko daleko ide ljubičasta na hover-u (TOP tačka) */
  --fill: 88%; /* promeni na 85%–90% po želji */
  /* računamo nagib (razlika gore-dole) da zadržimo dijagonalu i kada stane */
  --slope: calc(var(--cut-top) - var(--cut-bot)); /* 22% sa vrednostima iznad */
  position: relative;
  display: inline-block;
  padding: 1.8rem 3.2rem;
  border-radius: 9999px;
  background: var(--from-bg);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: color var(--dur) ease;
  border: none;
  font-family: "Instrument Sans", sans-serif; /* tvoj SCSS var */
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
}

/* ljubičasti sloj – POČINJE kao kratak klin */
.btn-slashed-init::before {
  content: "";
  position: absolute;
  inset: -12% -10%;
  background: var(--to-bg);
  border-radius: inherit;
  z-index: 1; /* ispod teksta, iznad žute */
  /* početni klin sa kosom ivicom */
  clip-path: polygon(0% 0%, var(--cut-top) 0%, calc(var(--cut-bot) + 3%) 100%, 0% 100%);
  transform: translateX(0);
  transition: transform var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1), clip-path var(--dur) cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, clip-path;
}

/* tekst iznad ljubičaste */
.btn-slashed-init .btn-label {
  position: relative;
  z-index: 2;
}

/* hover/focus: ljubičasta se prelije do ~88% i zadrži DIJAGONALU */
.btn-slashed-init:hover::before,
.btn-slashed-init:focus-visible::before {
  clip-path: polygon(0% 0%, var(--fill) 0%, calc(var(--fill) - var(--slope)) 100%, 0% 100%);
}

.btn-slashed-init:focus-visible {
  outline: none;
}

.btn-slashed-init:hover,
.btn-slashed-init:focus-visible {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .btn-slashed-init::before {
    transition-duration: 0.2s;
  }
}
.form-group .label {
  display: block;
  color: #f7941d;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 153%;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .form-group .label {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .form-group .label {
    font-size: 1.4rem;
  }
}
.form-group .input-group {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  height: 6.2rem;
  padding: 0 2.4rem;
  color: #2a2524;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 153%;
  width: 100%;
}
@media (min-width: 768px) {
  .form-group .input-group {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .form-group .input-group {
    font-size: 2rem;
  }
}
.form-group .input-group::placeholder {
  color: #c4c4c4;
  opacity: 1;
}
.form-group .input-group:focus-visible {
  outline: none;
  border: 1px solid #f7941d;
}
.form-group .input-group.textarea {
  height: 100%;
  padding: 2.4rem;
}

/* Zaključavanje pozadine kada je modal otvoren (radi i na iOS) */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.c-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.36);
  z-index: 100001;
}
.c-modal.is-open {
  display: flex;
}
.c-modal .c-modal__dialog {
  background: #fff;
  max-width: 90rem;
  width: calc(100% - 30px);
  border-radius: 24px;
  padding: 5.6rem 3.1rem;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: scroll;
}
.c-modal .c-modal__dialog .c-modal__close {
  position: absolute;
  top: 2.3rem;
  right: 1.8rem;
  border: 0;
  background: #f7941d;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.4rem;
}
.c-modal .c-modal__dialog .c-modal__close:focus-visible {
  outline: none;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__close {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header {
  text-align: center;
  margin-bottom: 3.2rem;
  flex: 0 0 auto;
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__title {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.68px;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__title {
    font-size: 4.6rem;
  }
}
@media (min-width: 1265px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__title {
    font-size: 5.6rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab {
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab {
    padding: 1.5rem 2.5rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab.is-active {
  background: #8b6baf;
}
.c-modal .c-modal__dialog .c-modal__tab-content {
  display: none;
}
.c-modal .c-modal__dialog .c-modal__tab-content .c-modal__desc {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 0;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__tab-content .c-modal__desc {
    font-size: 1.8rem;
  }
}
.c-modal .c-modal__dialog .c-modal__tab-content.is-active {
  display: block;
}

.c-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-modal__body.account .c-modal__accounts {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts {
    margin-bottom: 1.4rem;
    max-width: 374px;
    margin-inline: auto;
  }
}
.c-modal__body.account .c-modal__accounts.foreigner {
  max-width: 100%;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__accounts.foreigner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.4rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item {
  border-radius: 12px;
  background: #8b6baf;
  padding: 1.4rem;
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item:not(:last-of-type) {
  margin-bottom: 1.4rem;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .c-modal__body.account .c-modal__accounts .c-modal__account-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-title {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-title {
    font-size: 1.6rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
    font-size: 1.6rem;
  }
}
@media (min-width: 1265px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
    font-size: 2rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-subtitle {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.4rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
  background-color: #8b6baf;
  color: #fff;
  padding: 2.4rem;
  border-radius: 12px;
  overflow: hidden;
  max-width: 80%;
  margin-inline: auto;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item:not(:last-of-type) {
  margin-bottom: 2.4rem;
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
    max-width: 100%;
    margin-inline: unset;
    padding: 1.4rem;
  }
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
    padding: 2.4rem 4.3rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-text {
  font-size: 1.4rem;
  line-height: 145%;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Instrument Sans", sans-serif;
  text-align: center;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-text {
    font-size: 2rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number {
  position: relative;
  display: block;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-modal__body.payments .product__form {
  text-align: center;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.6rem;
  max-width: 72.6rem;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}
@media (min-width: 576px) {
  .c-modal__body.payments .product__form .c-modal__products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .c-modal__body.payments .product__form .c-modal__products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn {
  border-radius: 999px;
  border: 1px solid #f7941d;
  width: 100%;
  height: 6.5rem;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn.is-selected, .c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn:hover {
  background-color: #f7941d;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn.is-selected .c-modal__product-name, .c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn:hover .c-modal__product-name {
  color: #fff;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn .c-modal__product-price {
  display: none;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn .c-modal__product-name {
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 153%;
  transition: 0.3s linear;
}
.c-modal__body.payments .product__form .c-modal__custom-amount {
  margin-bottom: 3.2rem;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-label {
  display: block;
  color: #f7941d;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 2.4rem;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input {
  border-radius: 999px;
  border: 1px solid #f7941d;
  height: 6.5rem;
  width: 100%;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 153%;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input:focus-visible {
  outline: none;
  border: 1px solid #f7941d;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input::-webkit-outer-spin-button,
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input[type=number] {
  -moz-appearance: textfield;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-hint {
  display: none;
}

.c-modal__desc {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 0;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal__desc {
    font-size: 1.8rem;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background-color: #fff;
}
@media (min-width: 992px) {
  header {
    border-bottom: 1px solid rgba(42, 37, 36, 0.1);
  }
}
header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
  background-color: #fff;
}
@media (min-width: 992px) {
  header .header-wrapper {
    padding: 14px 0;
  }
}
header .header-wrapper .logo {
  max-width: 88px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  header .header-wrapper .logo {
    max-width: 95px;
  }
}
@media (min-width: 1265px) {
  header .header-wrapper .logo {
    max-width: 100%;
  }
}
header .header-wrapper .header-btn {
  margin-left: auto;
}
header .header-wrapper .header-btn.btn-slashed-init {
  padding: 9px 22px;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  header .header-wrapper .header-btn.btn-slashed-init {
    padding: 17.5px 32px;
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  header .header-wrapper .header-btn {
    order: 2;
    margin-left: 2.5rem;
  }
}
@media (min-width: 1265px) {
  header .header-wrapper .header-btn {
    margin-left: 3.6rem;
  }
}
header .header-wrapper .toggler-menu {
  cursor: pointer;
  border-radius: 50%;
  background-color: #8b6baf;
  padding: 10px 9px;
  overflow: hidden;
  transition: 0.3s linear;
  border: 1px solid transparent;
  margin-left: 1.2rem;
}
@media (min-width: 992px) {
  header .header-wrapper .toggler-menu {
    display: none;
  }
}
header .header-wrapper .toggler-menu span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 5px;
  transition: 0.3s linear;
  position: relative;
  top: 0;
}
header .header-wrapper .toggler-menu span:last-of-type {
  margin-bottom: 0;
}
header .header-wrapper .toggler-menu.active span {
  background-color: #fff;
}
header .header-wrapper .toggler-menu.active span:first-of-type {
  top: 8px;
  transform: rotate(45deg);
}
header .header-wrapper .toggler-menu.active span:nth-of-type(2) {
  opacity: 0;
}
header .header-wrapper .toggler-menu.active span:last-of-type {
  top: -6px;
  transform: rotate(-45deg);
}
@media (min-width: 1265px) {
  header .header-wrapper .toggler-menu {
    display: none;
  }
}
header .header-wrapper .bottom-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(42, 37, 36, 0.1);
  left: 0;
  top: 113px;
}
@media (min-width: 992px) {
  header .header-wrapper .bottom-line {
    display: none;
  }
}
header .header-wrapper .mobile-menu-wrapper {
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper {
    flex: 1;
    display: block !important;
    order: 1;
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu {
  background-color: #fff;
  display: none;
  overflow-y: auto;
  height: calc(100dvh - 114px);
  padding: 5rem 0 7.2rem;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu {
    height: calc(100dvh - 126px);
  }
}
@media (min-width: 1265px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu {
    height: calc(100dvh - 143px);
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu.active {
  display: block;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    overflow: unset;
    height: unset;
    margin-top: 0;
    padding: 0;
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32.3rem;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item:not(:last-of-type) {
  margin-bottom: 3.6rem;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item {
    margin-right: 2.5rem;
  }
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 1265px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item {
    margin-right: 3.6rem;
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item.active .nav-link::before {
  width: 100%;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item:hover .nav-link {
  color: #8b6baf;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item:hover .nav-link::before {
  width: 100%;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item .nav-link {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6rem;
  transition: 0.3s linear;
  color: #2a2524;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f7941d;
  display: block;
  transition: 0.3s linear;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item .nav-link.active {
  color: #8b6baf;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .nav-menu .nav-item .nav-link.active::before {
  width: 100%;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .language-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3.5rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .language-wrapper {
    display: none;
  }
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .language-wrapper .language {
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: rgba(42, 37, 36, 0.4);
  transition: 0.3s linear;
  font-weight: 500;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .language-wrapper .language.current {
  color: #8b6baf;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .language-wrapper .language:hover {
  color: #8b6baf;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .social-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .social-menu .social-item {
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7941d;
  border-radius: 50%;
}
header .header-wrapper .mobile-menu-wrapper .mobile-menu .social-menu .social-item svg {
  fill: #fff;
}
@media (min-width: 992px) {
  header .header-wrapper .mobile-menu-wrapper .mobile-menu .social-menu {
    display: none;
  }
}
header .header-wrapper .header-language-wrapper {
  display: none;
}
@media (min-width: 992px) {
  header .header-wrapper .header-language-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    order: 3;
    margin-left: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
@media (min-width: 992px) and (min-width: 1265px) {
  header .header-wrapper .header-language-wrapper {
    margin-left: 3.6rem;
  }
}

.wpml-ls {
  padding: 0;
}
.wpml-ls ul .wpml-ls-item:first-of-type {
  position: relative;
  padding-right: 1.2rem;
  margin-right: 0.4rem;
}
.wpml-ls ul .wpml-ls-item:first-of-type::after {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "/";
}
.wpml-ls ul .wpml-ls-item.wpml-ls-current-language .wpml-ls-link .wpml-ls-native {
  color: #8b6baf;
}
.wpml-ls ul .wpml-ls-item .wpml-ls-link {
  padding: 0;
}
.wpml-ls ul .wpml-ls-item .wpml-ls-link .wpml-ls-native {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: rgba(42, 37, 36, 0.4);
  transition: 0.3s linear;
  font-weight: 500;
}

/* Zaključavanje pozadine kada je modal otvoren (radi i na iOS) */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.c-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.36);
  z-index: 100001;
}
.c-modal.is-open {
  display: flex;
}
.c-modal .c-modal__dialog {
  background: #fff;
  max-width: 90rem;
  width: calc(100% - 30px);
  border-radius: 24px;
  padding: 5.6rem 3.1rem;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: scroll;
}
.c-modal .c-modal__dialog .c-modal__close {
  position: absolute;
  top: 2.3rem;
  right: 1.8rem;
  border: 0;
  background: #f7941d;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.4rem;
}
.c-modal .c-modal__dialog .c-modal__close:focus-visible {
  outline: none;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__close {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header {
  text-align: center;
  margin-bottom: 3.2rem;
  flex: 0 0 auto;
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__title {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.68px;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__title {
    font-size: 4.6rem;
  }
}
@media (min-width: 1265px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__title {
    font-size: 5.6rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab {
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab {
    padding: 1.5rem 2.5rem;
  }
}
.c-modal .c-modal__dialog .c-modal__header .c-modal__tabs .c-modal__tab.is-active {
  background: #8b6baf;
}
.c-modal .c-modal__dialog .c-modal__tab-content {
  display: none;
}
.c-modal .c-modal__dialog .c-modal__tab-content .c-modal__desc {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 0;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal .c-modal__dialog .c-modal__tab-content .c-modal__desc {
    font-size: 1.8rem;
  }
}
.c-modal .c-modal__dialog .c-modal__tab-content.is-active {
  display: block;
}

.c-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-modal__body.account .c-modal__accounts {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts {
    margin-bottom: 1.4rem;
    max-width: 374px;
    margin-inline: auto;
  }
}
.c-modal__body.account .c-modal__accounts.foreigner {
  max-width: 100%;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__accounts.foreigner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.4rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item {
  border-radius: 12px;
  background: #8b6baf;
  padding: 1.4rem;
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item:not(:last-of-type) {
  margin-bottom: 1.4rem;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .c-modal__body.account .c-modal__accounts .c-modal__account-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-title {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-title {
    font-size: 1.6rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 145%;
}
@media (min-width: 768px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
    font-size: 1.6rem;
  }
}
@media (min-width: 1265px) {
  .c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-number {
    font-size: 2rem;
  }
}
.c-modal__body.account .c-modal__accounts .c-modal__account-item .c-modal__account-subtitle {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.4rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
  background-color: #8b6baf;
  color: #fff;
  padding: 2.4rem;
  border-radius: 12px;
  overflow: hidden;
  max-width: 80%;
  margin-inline: auto;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item:not(:last-of-type) {
  margin-bottom: 2.4rem;
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
    max-width: 100%;
    margin-inline: unset;
    padding: 1.4rem;
  }
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item {
    padding: 2.4rem 4.3rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-text {
  font-size: 1.4rem;
  line-height: 145%;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Instrument Sans", sans-serif;
  text-align: center;
}
@media (min-width: 992px) {
  .c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-text {
    font-size: 2rem;
  }
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number {
  position: relative;
  display: block;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-modal__body.account .c-modal__qr .qr-wrapper .qr-item .qr-number img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-modal__body.payments .product__form {
  text-align: center;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.6rem;
  max-width: 72.6rem;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}
@media (min-width: 576px) {
  .c-modal__body.payments .product__form .c-modal__products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .c-modal__body.payments .product__form .c-modal__products-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn {
  border-radius: 999px;
  border: 1px solid #f7941d;
  width: 100%;
  height: 6.5rem;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn.is-selected, .c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn:hover {
  background-color: #f7941d;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn.is-selected .c-modal__product-name, .c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn:hover .c-modal__product-name {
  color: #fff;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn .c-modal__product-price {
  display: none;
}
.c-modal__body.payments .product__form .c-modal__products-wrapper .c-modal__product-item .c-modal__product-btn .c-modal__product-name {
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 153%;
  transition: 0.3s linear;
}
.c-modal__body.payments .product__form .c-modal__custom-amount {
  margin-bottom: 3.2rem;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-label {
  display: block;
  color: #f7941d;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 2.4rem;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input {
  border-radius: 999px;
  border: 1px solid #f7941d;
  height: 6.5rem;
  width: 100%;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 153%;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input:focus-visible {
  outline: none;
  border: 1px solid #f7941d;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input::-webkit-outer-spin-button,
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-input[type=number] {
  -moz-appearance: textfield;
}
.c-modal__body.payments .product__form .c-modal__custom-amount .c-modal__custom-hint {
  display: none;
}

.c-modal__desc {
  display: block;
  color: #2a2524;
  text-align: center;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  margin-bottom: 0;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-modal__desc {
    font-size: 1.8rem;
  }
}

.lead {
  padding: 4rem 0;
}
@media (min-width: 992px) {
  .lead {
    padding: 4.2rem 0 6.8rem 0;
  }
}
.lead .lead-wrapper {
  margin-bottom: 2.6rem;
}
@media (min-width: 992px) {
  .lead .lead-wrapper {
    margin-bottom: 3rem;
    max-width: 400px;
  }
}
@media (min-width: 1265px) {
  .lead .lead-wrapper {
    margin-bottom: 4.6rem;
    max-width: 590px;
  }
}
.lead .lead-wrapper .lead-title {
  color: #2a2524;
  font-size: 4.4rem;
  line-height: 4.4rem;
  font-weight: 500;
  letter-spacing: -1.32px;
  margin-bottom: 1.4rem;
}
@media (min-width: 992px) {
  .lead .lead-wrapper .lead-title {
    font-size: 6rem;
    line-height: 6rem;
    letter-spacing: -1.6px;
  }
}
@media (min-width: 1265px) {
  .lead .lead-wrapper .lead-title {
    font-size: 8rem;
    line-height: 8rem;
    letter-spacing: -2.4px;
  }
}
.lead .lead-wrapper .lead-subtitle {
  color: #f7941d;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-style: italic;
}
@media (min-width: 992px) {
  .lead .lead-wrapper .lead-subtitle {
    font-size: 2rem;
    line-height: 2.6rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1265px) {
  .lead .lead-wrapper .lead-subtitle {
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin-bottom: 4.6rem;
  }
}
.lead .video-wrapper {
  position: relative;
}
.lead .video-wrapper .lead-video {
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1265px) {
  .lead .video-wrapper .lead-video {
    border-radius: 34px;
  }
}
@media (min-width: 992px) {
  .lead .video-wrapper .lead-video.img-placeholder::after {
    padding-top: 45%;
  }
}
.lead .video-wrapper .sticker {
  display: none;
}
@media (min-width: 992px) {
  .lead .video-wrapper .sticker {
    display: inline-block;
    position: absolute;
    top: -7.5rem;
    right: 4rem;
    width: 150px;
    height: 150px;
    animation: rotating 30s linear infinite;
  }
}
@media (min-width: 1265px) {
  .lead .video-wrapper .sticker {
    width: 250px;
    height: 250px;
    top: -12.5rem;
    right: 8rem;
  }
}
.lead .video-wrapper .play {
  background-color: #f7941d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 101px;
  padding: 14px;
  transition: 0.3s linear;
  position: absolute;
  left: 18px;
  bottom: 18px;
  overflow: hidden;
  transition: 0.3s linear, max-width 0.3s ease;
  max-width: 53px;
}
@media (min-width: 1265px) {
  .lead .video-wrapper .play {
    padding: 21px;
    border-radius: 150px;
    max-width: 78px;
  }
}
.lead .video-wrapper .play:hover {
  max-width: 190px;
}
@media (min-width: 1265px) {
  .lead .video-wrapper .play:hover {
    max-width: 221px;
    padding: 14px;
  }
}
.lead .video-wrapper .play:hover .play-text {
  width: auto;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  margin-left: 8px;
}
.lead .video-wrapper .play:hover .play-btn {
  width: 24px;
  height: 24px;
}
.lead .video-wrapper .play:hover .play-btn svg {
  width: 24px;
  height: 24px;
}
.lead .video-wrapper .play .play-text {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media (min-width: 1265px) {
  .lead .video-wrapper .play .play-text {
    font-size: 1.6rem;
  }
}
.lead .video-wrapper .play .play-btn {
  width: 24px;
  height: 24px;
}
.lead .video-wrapper .play .play-btn svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 1265px) {
  .lead .video-wrapper .play .play-btn {
    width: 36px;
    height: 36px;
  }
  .lead .video-wrapper .play .play-btn svg {
    width: 36px;
    height: 36px;
  }
}

.about {
  background: #fff;
  transition: 0.3s linear;
}
.about.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(139, 107, 175, 0.2) 12.08%, rgba(139, 107, 175, 0.2) 92.33%, rgba(255, 255, 255, 0.2) 100%);
}
.about .top-wrapper {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(42, 37, 36, 0.1);
}
.about .top-wrapper .about-title {
  color: #8b6baf;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .about .top-wrapper .about-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.about .about-content-wrapper {
  padding: 3.2rem 0 4.2rem 0;
}
@media (min-width: 992px) {
  .about .about-content-wrapper {
    padding: 4.5rem 0 6.5rem 0;
  }
}
@media (min-width: 1265px) {
  .about .about-content-wrapper {
    padding: 4.8rem 0 7.5rem 0;
  }
}
@media (min-width: 1600px) {
  .about .about-content-wrapper {
    padding: 4.8rem 0 8.7rem 0;
  }
}
.about .about-content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 992px) {
  .about .about-content-wrapper .text-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1265px) {
  .about .about-content-wrapper .text-wrapper {
    column-gap: 7.5rem;
  }
}
@media (min-width: 1600px) {
  .about .about-content-wrapper .text-wrapper {
    column-gap: 10rem;
  }
}
.about .about-content-wrapper .text-wrapper p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #2a2524;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .about .about-content-wrapper .text-wrapper p {
    font-size: 2rem;
    line-height: 2.8rem;
    flex: 0 0 450px;
    width: 450px;
  }
}
@media (min-width: 1265px) {
  .about .about-content-wrapper .text-wrapper p {
    flex: 550px;
    width: 550px;
  }
}
@media (min-width: 1600px) {
  .about .about-content-wrapper .text-wrapper p {
    flex: 0 0 630px;
    width: 630px;
  }
}
.about .about-content-wrapper .text-wrapper p strong {
  font-weight: 600;
  font-style: italic;
  color: #8b6baf;
}
.about .about-gallery-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 3.5rem;
  margin-inline: -15px;
}
@media (min-width: 768px) {
  .about .about-gallery-wrapper {
    margin-bottom: 5rem;
    margin-inline: calc((-100vw + 740px) / 2 - 15px);
  }
}
@media (min-width: 992px) {
  .about .about-gallery-wrapper {
    margin-inline: calc((-100vw + 960px) / 2 - 15px);
  }
}
@media (min-width: 1265px) {
  .about .about-gallery-wrapper {
    margin-inline: calc((-100vw + 1260px) / 2 - 15px);
  }
}
@media (min-width: 1600px) {
  .about .about-gallery-wrapper {
    margin-inline: calc((-100vw + 1390px) / 2 - 15px);
  }
}
.about .about-gallery-wrapper .about-gallery-slider .gallery-slider {
  overflow: hidden;
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  z-index: 2;
}
.about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content {
  display: flex;
  width: auto;
  animation: sliding 20s linear infinite;
  flex-shrink: 0;
}
.about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content .gallery-item {
  margin-inline: 6px;
  height: 272px;
  width: 272px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content .gallery-item {
    height: 300px;
    width: 300px;
  }
}
@media (min-width: 992px) {
  .about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content .gallery-item {
    height: 320px;
    width: 320px;
  }
}
@media (min-width: 1265px) {
  .about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content .gallery-item {
    height: 350px;
    width: 350px;
    border-radius: 26px;
  }
}
.about .about-gallery-wrapper .about-gallery-slider .gallery-slider .gallery-slider-content .gallery-item img {
  height: 100%;
}

.fundraising-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 2.4rem 1.2rem;
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fundraising-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .fundraising-item {
    margin-bottom: 0;
  }
}
@media (min-width: 1265px) {
  .fundraising-item {
    padding: 3rem;
    border-radius: 24px;
  }
}
@media (min-width: 992px) {
  .fundraising-item:nth-of-type(-n + 2) {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
  }
  .fundraising-item:nth-of-type(-n + 2) .fundraising-item-title {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .fundraising-item:nth-of-type(-n + 2) .fundraising-item-info .info-text {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .fundraising-item:nth-of-type(-n + 2) .fundraising-item-info .info-title {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
}
@media (min-width: 1265px) {
  .fundraising-item:nth-of-type(-n + 2) .fundraising-item-title {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.96px;
  }
  .fundraising-item:nth-of-type(-n + 2) .fundraising-item-info .info-title {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}
@media (min-width: 992px) {
  .fundraising-item:nth-of-type(n + 3) {
    flex: 0 0 calc(33.33% - 15px);
    width: calc(33.33% - 15px);
  }
}
.fundraising-item .fundraising-item-title {
  display: block;
  font-size: 2.2rem;
  line-height: 118%;
  font-weight: 500;
  letter-spacing: -0.66px;
  margin-bottom: 1.2rem;
}
@media (min-width: 1265px) {
  .fundraising-item .fundraising-item-title {
    font-size: 2.8rem;
    line-height: 115%;
    letter-spacing: -0.84px;
    margin-bottom: 1.6rem;
  }
}
.fundraising-item .fundraising-image {
  position: relative;
  display: block;
  margin-bottom: 1.2rem;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .fundraising-item .fundraising-image {
    margin-bottom: 1.6rem;
  }
}
.fundraising-item .fundraising-image:after {
  content: "";
  display: block;
  padding-top: 93%;
}
@media (min-width: 768px) {
  .fundraising-item .fundraising-image:after {
    padding-top: 78%;
  }
}
.fundraising-item .fundraising-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fundraising-item .fundraising-item-info {
  color: #f7941d;
}
.fundraising-item .fundraising-item-info .info-text {
  font-size: 1.6rem;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
@media (min-width: 1265px) {
  .fundraising-item .fundraising-item-info .info-text {
    font-size: 1.8rem;
    line-height: 1.8rem;
    margin-bottom: 0.6rem;
  }
}
.fundraising-item .fundraising-item-info .info-title {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .fundraising-item .fundraising-item-info .info-title {
    font-size: 1.8rem;
    line-height: 116%;
  }
}
@media (min-width: 1265px) {
  .fundraising-item .fundraising-item-info .info-title {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
  }
}
.fundraising-item .fundraising-item-info .info-short-text {
  font-size: 1.4rem;
  line-height: 100%;
  font-weight: 500;
}
@media (min-width: 1265px) {
  .fundraising-item .fundraising-item-info .info-short-text {
    font-size: 1.8rem;
  }
}

.actions {
  padding-bottom: 4.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(139, 107, 175, 0.2) 12.08%, rgba(139, 107, 175, 0.2) 92.33%, rgba(255, 255, 255, 0.2) 100%);
}
.actions.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(139, 107, 175, 0.2) 12.08%, rgba(139, 107, 175, 0.2) 92.33%, rgba(255, 255, 255, 0.2) 100%);
}
@media (min-width: 992px) {
  .actions {
    padding-top: 5.5rem;
  }
}
@media (min-width: 1265px) {
  .actions {
    padding-bottom: 6.8rem;
  }
}
.actions .actions-top-wrapper {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(42, 37, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.actions .actions-top-wrapper .actions-title {
  color: #8b6baf;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .actions .actions-top-wrapper .actions-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.actions .actions-top-wrapper .actions-link {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #f7941d;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  padding: 9.5px 22px;
}
.actions .actions-top-wrapper .actions-link:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .actions .actions-top-wrapper .actions-link {
    font-size: 1.6rem;
    padding: 1.8rem 3.2rem;
  }
}
.actions .actions-wrapper {
  padding-top: 4.2rem;
}
@media (min-width: 992px) {
  .actions .actions-wrapper {
    padding-top: 3.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem 0;
  }
}

.author .author-wrapper {
  margin-bottom: 4.2rem;
}
@media (min-width: 992px) {
  .author .author-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.5rem;
  }
}
@media (min-width: 1265px) {
  .author .author-wrapper {
    margin-bottom: 6.8rem;
  }
}
.author .author-wrapper .author-image-wrapper {
  margin-bottom: 2.4rem;
}
@media (min-width: 992px) {
  .author .author-wrapper .author-image-wrapper {
    margin-bottom: 0;
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
  }
}
.author .author-wrapper .author-image-wrapper .author-image {
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .author .author-wrapper .author-image-wrapper .author-image {
    border-radius: 32px;
  }
}
.author .author-wrapper .author-image-wrapper .author-image img {
  object-position: top;
}
.author .author-wrapper .author-info {
  background-color: #f7941d;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .author .author-wrapper .author-info {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .author .author-wrapper .author-info {
    flex: 0 0 calc(50% - 16px);
    width: calc(50% - 16px);
    border-radius: 32px;
    padding: 0 3rem;
    background-size: inherit;
  }
}
@media (min-width: 1265px) {
  .author .author-wrapper .author-info {
    padding: 0 3.9rem;
  }
}
.author .author-wrapper .author-info .info-top {
  padding: 4.4rem 0 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.author .author-wrapper .author-info .info-top .info-title {
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 1265px) {
  .author .author-wrapper .author-info .info-top .info-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.author .author-wrapper .author-info .info-content {
  padding: 4.3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .author .author-wrapper .author-info .info-content {
    margin-top: auto;
  }
}
.author .author-wrapper .author-info .info-content p {
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.18px;
  margin-bottom: 1.5rem;
}
@media (min-width: 1265px) {
  .author .author-wrapper .author-info .info-content p {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.22px;
  }
}
@media (min-width: 1600px) {
  .author .author-wrapper .author-info .info-content p {
    font-size: 2.4rem;
    line-height: 3.1rem;
    letter-spacing: -0.24px;
  }
}
.author .author-wrapper .author-info .info-content p:last-of-type {
  margin-bottom: 0;
}
.author .author-wrapper .author-info .see-more {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 9.5px 22px;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 5.9rem;
  max-width: fit-content;
}
.author .author-wrapper .author-info .see-more:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .author .author-wrapper .author-info .see-more {
    padding: 1.8rem 3.2rem;
    font-size: 1.6rem;
  }
}

.track-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #8b6baf;
  padding: 1.6rem 0;
}
@media (min-width: 992px) {
  .track-wrapper {
    padding: 2rem 0;
  }
}
@media (min-width: 1265px) {
  .track-wrapper {
    padding: 2.5rem 0;
  }
}
.track-wrapper.is-inner {
  margin-bottom: 4.8rem;
}
@media (min-width: 992px) {
  .track-wrapper.is-inner {
    margin-bottom: 6.8rem;
  }
}
.track-wrapper .track-slider-wrapper .track-slider .marquee {
  overflow: hidden;
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  z-index: 2;
}
.track-wrapper .track-slider-wrapper .track-slider .marquee .marquee-content {
  display: flex;
  align-items: center;
  width: auto;
  animation: sliding 10s linear infinite;
  flex-shrink: 0;
}
.track-wrapper .track-slider-wrapper .track-slider .marquee .marquee-content .marquee-item {
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 700;
  margin-inline: 20px;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 992px) {
  .track-wrapper .track-slider-wrapper .track-slider .marquee .marquee-content .marquee-item {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media (min-width: 1265px) {
  .track-wrapper .track-slider-wrapper .track-slider .marquee .marquee-content .marquee-item {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}
.track-wrapper .track-slider-wrapper .track-slider .marquee .marquee-content .marquee-item::after {
  position: absolute;
  content: "";
  top: 56%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  right: -24px;
}

@keyframes sliding {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.mission {
  padding: 4.2rem 0;
}
@media (min-width: 992px) {
  .mission {
    padding: 5.5rem 0;
  }
}
@media (min--width: 1265px) {
  .mission {
    padding: 6.8rem 0;
  }
}
.mission .mission-top {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(42, 37, 36, 0.1);
}
.mission .mission-top .mission-title {
  color: #8b6baf;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .mission .mission-top .mission-title {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
.mission .mission-content {
  padding: 3.2rem 0;
}
@media (min-width: 992px) {
  .mission .mission-content {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
  }
}
@media (min-width: 1265px) {
  .mission .mission-content {
    padding: 4.8rem 0;
  }
}
.mission .mission-content p {
  color: #2a2524;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 1265px) {
  .mission .mission-content p {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.mission .mission-content p strong {
  font-size: 2.4rem;
  line-height: 2.7rem;
  letter-spacing: -0.72px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .mission .mission-content p strong {
    font-size: 2.7rem;
    line-height: 3.1rem;
    letter-spacing: -0.81px;
  }
}
@media (min-width: 1265px) {
  .mission .mission-content p strong {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.96px;
  }
}
.mission .mission-image {
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .mission .mission-image {
    border-radius: 36px;
  }
}
.mission .mission-image.img-placeholder::after {
  padding-top: 81%;
}
@media (min-width: 992px) {
  .mission .mission-image.img-placeholder::after {
    padding-top: 53%;
  }
}

.contact {
  padding-bottom: 3.2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .contact {
    padding-bottom: 5.5rem;
  }
}
@media (min-width: 1265px) {
  .contact {
    padding-bottom: 6.8rem;
  }
}
.contact .contact-title {
  color: #2a2524;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 500;
  letter-spacing: -1.2px;
  margin-bottom: 3.2rem;
}
@media (min-width: 992px) {
  .contact .contact-title {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}
@media (min-width: 1265px) {
  .contact .contact-title {
    font-size: 5rem;
    line-height: 5rem;
  }
}
@media (min-width: 1600px) {
  .contact .contact-title {
    font-size: 5.6rem;
    line-height: 5.6rem;
    letter-spacing: -1.68px;
  }
}
.contact .email-wrapper {
  margin-bottom: 3.2rem;
}
.contact .email-wrapper .email-text {
  color: #2a2524;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
@media (min-width: 1265px) {
  .contact .email-wrapper .email-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.contact .email-wrapper .email-btn {
  line-height: 5.2rem;
  border-radius: 999px;
  border: 1px solid #f7941d;
  display: inline-block;
  padding: 0 48px;
  color: #2a2524;
  font-size: 2rem;
  font-weight: 600;
  transition: 0.3s linear;
}
.contact .email-wrapper .email-btn:hover {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .contact .email-wrapper .email-btn {
    line-height: 5.8rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 1265px) {
  .contact .email-wrapper .email-btn {
    line-height: 6.3rem;
    font-size: 2.4rem;
  }
}
.contact .contact-short-text {
  color: #2a2524;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
@media (min-width: 1265px) {
  .contact .contact-short-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.contact .contact-tabs {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact .contact-tabs .contact-tab {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  border-radius: 9999px;
  background: #8b6baf;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
}
.contact .contact-tabs .contact-tab.is-active {
  background: #f7941d;
  font-weight: 700;
}
.contact .contact-tab-content {
  display: none;
}
.contact .contact-tab-content.is-active {
  display: block;
}
@media (min-width: 1265px) {
  .contact .help-wrapper {
    max-width: 374px;
    margin-inline: auto;
  }
}
.contact .help-wrapper.foreigner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.2rem;
}
@media (min-width: 768px) {
  .contact .help-wrapper.foreigner {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
}
@media (min-width: 1265px) {
  .contact .help-wrapper.foreigner {
    max-width: 1185px;
    margin-inline: auto;
  }
}
.contact .help-wrapper.foreigner .help-item .help-number {
  display: block;
  margin-bottom: 1rem;
}
.contact .help-wrapper .help-item {
  background-color: #8b6baf;
  color: #fff;
  padding: 2.4rem 4rem;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .contact .help-wrapper .help-item {
    padding: 2.4rem 4.3rem;
  }
}
@media (min-width: 1265px) {
  .contact .help-wrapper .help-item {
    padding: 2.4rem 4.8rem;
  }
}
.contact .help-wrapper .help-item .help-text {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 1265px) {
  .contact .help-wrapper .help-item .help-text {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
}
.contact .help-wrapper .help-item .help-number {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (min-width: 1265px) {
  .contact .help-wrapper .help-item .help-number {
    font-size: 2rem;
    line-height: 2.3rem;
  }
}
.contact .qr-box {
  padding-top: 1.2rem;
}
@media (min-width: 576px) {
  .contact .qr-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.2rem;
  }
}
@media (min-width: 768px) {
  .contact .qr-box {
    grid-gap: 2rem;
    padding-top: 2rem;
  }
}
@media (min-width: 992px) {
  .contact .qr-box {
    grid-gap: 3.2rem;
    padding-top: 3.2rem;
  }
}
@media (min-width: 1265px) {
  .contact .qr-box {
    max-width: 1185px;
    margin-inline: auto;
  }
}
.contact .qr-box .qr-item {
  background-color: #8b6baf;
  color: #fff;
  padding: 2.4rem;
  border-radius: 12px;
  overflow: hidden;
  max-width: 80%;
  margin-inline: auto;
}
.contact .qr-box .qr-item:not(:last-of-type) {
  margin-bottom: 1.2rem;
}
@media (min-width: 576px) {
  .contact .qr-box .qr-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  .contact .qr-box .qr-item {
    max-width: 100%;
    margin-inline: unset;
    padding: 1.4rem;
  }
}
@media (min-width: 992px) {
  .contact .qr-box .qr-item {
    padding: 2.4rem 4.3rem;
  }
}
.contact .qr-box .qr-item .qr-text {
  font-size: 1.4rem;
  line-height: 145%;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Instrument Sans", sans-serif;
  text-align: center;
}
@media (min-width: 992px) {
  .contact .qr-box .qr-item .qr-text {
    font-size: 2rem;
  }
}
.contact .qr-box .qr-item .qr-number {
  position: relative;
  display: block;
}
.contact .qr-box .qr-item .qr-number:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.contact .qr-box .qr-item .qr-number img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact .sms-box {
  background-color: #8b6baf;
  color: #fff;
  padding: 2.4rem 4rem;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.2rem;
}
@media (min-width: 576px) {
  .contact .sms-box {
    padding: 2.4rem 4.3rem;
  }
}
@media (min-width: 768px) {
  .contact .sms-box {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .contact .sms-box {
    margin-top: 3.2rem;
  }
}
@media (min-width: 1265px) {
  .contact .sms-box {
    padding: 2.4rem 4.8rem;
    max-width: 1185px;
    margin-inline: auto;
  }
}
.contact .sms-box p {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 400;
  margin-bottom: 0;
}
.contact .sms-box p strong {
  font-weight: 600;
}
@media (min-width: 1265px) {
  .contact .sms-box p {
    font-size: 2rem;
    line-height: 2.3rem;
  }
}
.contact .donate-box {
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .contact .donate-box {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .contact .donate-box {
    margin-top: 3.2rem;
  }
}

footer .footer-wrapper {
  text-align: center;
}
footer .footer-wrapper .footer-top {
  padding: 3.4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  footer .footer-wrapper .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
footer .footer-wrapper .footer-top .footer-text {
  color: #2a2524;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 3.2rem;
}
@media (min-width: 992px) {
  footer .footer-wrapper .footer-top .footer-text {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 0;
  }
}
footer .footer-wrapper .footer-top .footer-text a {
  transition: 0.3s linear;
}
footer .footer-wrapper .footer-top .footer-text a:hover {
  color: #8b6baf;
}
footer .footer-wrapper .footer-top .social-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
footer .footer-wrapper .footer-top .social-menu .social-item {
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7941d;
  border-radius: 50%;
}
footer .footer-wrapper .footer-top .social-menu .social-item svg {
  fill: #fff;
}
footer .footer-wrapper .footer-bottom {
  padding-bottom: 3.4rem;
}
@media (min-width: 1265px) {
  footer .footer-wrapper .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
footer .footer-wrapper .footer-bottom .card-wrapper {
  margin-bottom: 3.2rem;
  gap: 2rem;
}
@media (min-width: 1265px) {
  footer .footer-wrapper .footer-bottom .card-wrapper {
    margin-bottom: 0;
    justify-content: flex-start;
    gap: unset;
  }
}
footer .footer-wrapper .footer-bottom .static-menu {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
footer .footer-wrapper .footer-bottom .static-menu .static-menu-item .static-menu-link {
  display: block;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #2a2524;
  transition: 0.3s linear;
}
@media (min-width: 1265px) {
  footer .footer-wrapper .footer-bottom .static-menu .static-menu-item .static-menu-link {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
footer .footer-wrapper .footer-bottom .static-menu .static-menu-item .static-menu-link:hover {
  color: #8b6baf;
}
footer .footer-wrapper .footer-bottom .static-menu .static-menu-item .static-menu-link.active {
  color: #8b6baf;
}

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