@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Lexend+Deca&display=swap");
.blink {
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes fade-in {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
#fader {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999999;
  pointer-events: none;
  background: #000000;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
}

.fade-out {
  top: 0;
  height: 0;
  animation-name: fade-out;
}

.fade-in {
  bottom: 0 !important;
  height: 100%;
  animation-name: fade-in;
}

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Sabu";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/sabu/Sabu-Regular.ttf");
  font-display: swap;
}
.accordion-item {
  width: 100%;
  margin: 12px 0px;
}
.accordion-item__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  border: 1px solid #e7e9ec;
  width: 100%;
  padding: 12px 16px;
  height: 48px;
  border-radius: 4px;
  transition: 0.4s all ease;
}
.accordion-item__button .accordion-title {
  font-family: "Lexend Deca";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #121314;
}
.accordion-item__button .accordion-image {
  transition: 0.3s all;
}
.accordion-item__button:hover .accordion-image {
  transform: rotate(180deg);
}
.accordion-item__content {
  width: 100%;
  font-family: "Lexend Deca";
  font-size: 14px;
  line-height: 16px;
  overflow-y: auto;
  height: 0;
  border-top: none;
  padding: 0 16px;
  border: 1px transparent;
  transition: 0.4s all ease-in;
}
.accordion-item__content::-webkit-scrollbar {
  display: none;
  background: none;
  width: 0.25vw;
}
.accordion-item__content .container-text {
  font-style: normal;
  font-weight: 300;
  color: #27292C;
  font-size: 14px;
  line-height: 20px;
}
.accordion-item__content .container-text .paragraph:not(:first-child),
.accordion-item__content .container-text .li:not(:first-child) {
  margin-top: 16px;
}
.accordion-item__content .container-text .mt-6 {
  margin-top: 6px !important;
}
.accordion-item__content .container-text .li {
  list-style: initial;
}
.accordion-item__content .container-text .list {
  margin-left: 15px;
  padding-left: 33px;
  margin-top: 16px;
  position: relative;
}
.accordion-item__content .container-text .list::before {
  content: "";
  background-color: #000000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0.4rem;
  left: 0;
}
.accordion-item__content .container-text .paragraph.item {
  padding-left: 15px;
}
.accordion-item__content .container-text .paragraph.tab-1 {
  padding-left: 15px;
}
.accordion-item__content .container-text .paragraph.tab-1-2 {
  padding-left: 30px;
}
.accordion-item__content .container-text .paragraph.tab-1-2-3 {
  padding-left: 45px;
}
.accordion-item.active .accordion-item__button .accordion-image {
  transform: rotate(180deg);
}
.accordion-item.active .accordion-item__button {
  border-radius: 4px 4px 0 0;
}
.accordion-item.active .accordion-item__content {
  height: auto;
  padding: 16px;
  visibility: visible;
  border: 1px solid #e7e9ec;
}

.detail-banner {
  background-color: #121314;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .detail-banner {
    margin-bottom: 64px;
    min-height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner {
    min-height: 127px;
  }
}
.detail-banner .container {
  display: flex;
  justify-content: center;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .detail-banner__logo {
    width: 120px;
  }
}
.detail-banner__logo .logo-container {
  min-height: 30px;
}
@media screen and (min-width: 1024px) {
  .detail-banner__logo .logo-container {
    min-height: 64px;
  }
}
.detail-banner__title {
  font-family: "Lexend Deca";
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  max-width: 60%;
}
@media screen and (min-width: 768px) {
  .detail-banner__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1201px) {
  .detail-banner__title {
    font-size: 34px;
  }
}
.detail-banner__icons .circle,
.detail-banner__icons .circle-small,
.detail-banner__icons .square,
.detail-banner__icons .diamond,
.detail-banner__icons .line {
  position: absolute;
  transition: 1s all ease-in;
}
.detail-banner__icons .circle {
  width: 35px;
  top: -70%;
  right: 15%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle {
    width: auto;
    top: -40%;
    right: 13%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle {
    right: 10%;
  }
}
.detail-banner__icons .circle-small {
  width: 10px;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle-small {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 14%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle-small {
    right: 10%;
  }
}
.detail-banner__icons .square {
  width: 10px;
  bottom: 5%;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .square {
    width: auto;
    bottom: 10%;
    right: 16%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .square {
    right: 13%;
  }
}
.detail-banner__icons .diamond {
  width: 12px;
  right: 23%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .diamond {
    width: auto;
    top: 30%;
    right: 19%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .diamond {
    right: 16%;
  }
}
.detail-banner__icons .line {
  width: 40px;
  bottom: -36%;
  right: 20%;
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .line {
    width: auto;
    bottom: -12%;
    right: 17%;
    transform: rotate(12deg);
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .line {
    right: 15%;
  }
}
.detail-banner__heart {
  position: absolute;
  transform: rotate(-15deg);
  max-width: 104px;
  right: -4%;
  top: 6%;
}
@media screen and (min-width: 768px) {
  .detail-banner__heart {
    max-width: 240px;
    right: -5%;
    top: -11%;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner__heart {
    right: -1%;
  }
}

.privacy-policy {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 100px;
  width: 90%;
}
.privacy-policy .policy-content {
  margin-top: 20px !important;
}
.privacy-policy .policy-content .policy-body {
  padding-left: 20px;
}
.privacy-policy .policy-content .policy-body .policy-text {
  margin-top: 10px !important;
}

/*# sourceMappingURL=sass */