@charset "UTF-8";
header {
  position: sticky;
  top: 0;
  z-index: 1;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 20px;
}
header nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
header nav ul li .home-link {
  background-color: transparent;
  padding: 0;
  gap: 4px;
}
header nav ul li .home-link .logo {
  background-color: #000000;
  border-radius: 16px;
  height: 48px;
  width: 67px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav ul li .home-link .logo img {
  height: 24px;
}
header nav ul li.pro {
  height: 48px;
  padding: 12px 16px;
  background-color: #ebebeb;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav a {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 16px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  header nav a:hover {
    transform: scale(0.97);
  }
}
header nav a:active {
  transform: scale(0.95);
}
header nav a.voucher-link {
  border-radius: 3em;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 40px 20px 0;
}
footer .to-top {
  padding: 20px;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s;
  will-change: border-color;
}
footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  width: 100%;
  padding: 4px 0 20px;
}
footer .footer-bottom a {
  padding: 12px 16px;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  footer .footer-bottom a:hover {
    transform: scale(0.97);
  }
}
footer .footer-bottom a:active {
  transform: scale(0.95);
}
footer .footer-bottom nav ul {
  list-style-type: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
footer .footer-bottom .footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-bottom .footer-right .copyright {
  color: #767676;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
}
footer .footer-bottom .footer-right .copyright span {
  color: #767676;
}

@media only screen and (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  footer .to-top:hover {
    border-color: #000000;
  }
}
.hero {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  max-width: 616px;
  margin: auto;
  padding: 40px 0 80px;
  transition: transform 0.5s;
  will-change: transform;
}
.hero .hero-swiper {
  display: flex;
  overflow: hidden;
  max-height: 520px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transition: transform 0.3s;
}
.hero .hero-swiper .swiper-wrapper {
  max-height: 520px;
  max-width: 520px;
}
.hero .hero-swiper .swiper-wrapper .swiper-slide {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  transition: transform 0.3s;
}
.hero .hero-swiper .swiper-wrapper .swiper-slide #animacio {
  height: 100%;
}
.hero .hero-swiper .next-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.hero > a {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  width: auto;
  padding: 16px 20px;
  border-radius: 3em;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  .hero > a:hover {
    transform: scale(0.97);
  }
}
.hero > a:active {
  transform: scale(0.95);
}
.hero > p {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.hero > p a {
  color: #767676;
}

.works > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: none;
}
.works > ul > li {
  background-color: #000000;
  color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s;
  will-change: transform;
}
.works > ul > li:has(.opened) {
  transform: scale(1);
}
.works > ul > li:has(.opened) .dropdown-header .plus .line:last-of-type {
  height: 2px;
}
.works > ul > li .dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
}
.works > ul > li .dropdown-header img {
  border-radius: 16px;
  align-self: flex-start;
  height: 60px;
  width: 60px;
}
.works > ul > li .dropdown-header .title-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.works > ul > li .dropdown-header .title-container .title-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.works > ul > li .dropdown-header .title-container .title-row h4 {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.works > ul > li .dropdown-header .title-container .title-row span {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.works > ul > li .dropdown-header .title-container .project-tags {
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style-type: none;
}
.works > ul > li .dropdown-header .title-container .project-tags li {
  color: #ffffff;
  background-color: #414141;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.works > ul > li .dropdown-header .plus {
  margin-right: 10px;
}
.works > ul > li .dropdown-header .plus .line {
  background-color: #ffffff;
}
.works > ul > li .dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 6px;
  transition: max-height 0.3s;
  will-change: max-height;
}
.works > ul > li .dropdown-content .swiper-wrapper img,
.works > ul > li .dropdown-content .swiper-wrapper video {
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
}
.works > ul > li .dropdown-content.opened {
  max-height: 634px;
  padding: 0 6px 6px;
}

.functions h2 {
  text-align: center;
  padding: 80px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
.functions .functions-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0px 8px;
}
.functions .functions-grid .functions-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0px;
  width: calc((100% - 8px) * 0.5);
}
.functions .functions-grid .functions-card .functions-card--image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px;
  border-radius: 16px;
  background: #ebebeb;
}
.functions .functions-grid .functions-card .functions-card--image img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.functions .functions-grid .functions-card .functions-card--text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px 24px;
}
.functions .functions-grid .functions-card .functions-card--text h3 {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.functions .functions-grid .functions-card .functions-card--text p {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}

.faq {
  padding-bottom: 80px;
}
.faq h2 {
  text-align: center;
  padding: 80px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
.faq ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq ul .q {
  padding: 24px;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}
.faq ul .q.opened .answer-container {
  max-height: 500px;
}
.faq ul .q.opened .plus .line:last-of-type {
  height: 0;
}
.faq ul .q-title-row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.faq ul .q-title-row h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.faq ul .q .answer-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s;
  will-change: max-height;
}
.faq ul .q .answer-container p {
  padding-top: 20px;
  color: #414141;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}

.plus {
  position: relative;
  height: 16px;
  min-width: 16px;
}
.plus .line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000000;
}
.plus .line:first-of-type {
  width: 8px;
  height: 2px;
}
.plus .line:last-of-type {
  height: 8px;
  width: 2px;
  transition: height 0.3s;
}

.info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding-bottom: 80px;
}
.info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-content .info-btn-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.info-content .info-btn-container span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
}
.info-content .info-btn-container a {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 3em;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  .info-content .info-btn-container a:hover {
    transform: scale(0.97);
  }
}
.info-content .info-btn-container a:active {
  transform: scale(0.95);
}

@media only screen and (min-width: 1024px) {
  .hero {
    padding-top: 80px;
  }
  .works > ul > li:hover {
    transform: scale(1.02);
  }
  .works > ul > li:has(.opened):hover {
    transform: scale(1);
  }
  .functions .functions-grid {
    gap: 0px 16px;
  }
  .functions .functions-grid .functions-card {
    width: calc((100% - 16px) * 0.5);
  }
}
.voucher-page .voucher-process {
  height: 524px;
  margin: auto;
  width: calc(100% - 40px);
  padding: 20px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  position: relative;
  z-index: 0;
  margin-top: 40px;
}
.voucher-page .voucher-process span {
  position: absolute;
  color: #ffffff;
  top: 20px;
  left: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
}
.voucher-page .voucher-process ul {
  justify-self: center;
  align-self: center;
  list-style-type: none;
  display: flex;
  gap: 8px;
  width: 100%;
}
.voucher-page .voucher-process ul li {
  text-align: center;
  border-radius: 3em;
  padding: 16px 32px;
  background-color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
}
.voucher-page .voucher-process ul li.long {
  flex-grow: 1;
}
.voucher-page .voucher-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 0;
}
.voucher-page .voucher-header span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.voucher-page .voucher-header h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
.voucher-page .voucher-form {
  padding: 40px 0;
}
.voucher-page .voucher-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voucher-page .voucher-form form p label {
  color: #767676;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.voucher-page .voucher-form form p label input,
.voucher-page .voucher-form form p label select,
.voucher-page .voucher-form form p label textarea {
  border: 1px solid #ebebeb;
  padding: 24px;
  width: 100%;
  border-radius: 24px;
  margin-top: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.voucher-page .voucher-form form p label input::placeholder,
.voucher-page .voucher-form form p label select::placeholder,
.voucher-page .voucher-form form p label textarea::placeholder {
  color: #767676;
}
.voucher-page .voucher-form form p label input:focus-visible,
.voucher-page .voucher-form form p label select:focus-visible,
.voucher-page .voucher-form form p label textarea:focus-visible {
  outline-color: #767676;
}
.voucher-page .voucher-form form p label select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../assets/img/dropdown-icon.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 24px) 50%;
}
.voucher-page .voucher-form form p label textarea {
  resize: vertical;
}
.voucher-page .voucher-form form p label input[type=checkbox] {
  width: auto;
  accent-color: #000000;
  border-radius: 3em;
  margin: 0;
}
.voucher-page .voucher-form form p .wpcf7-list-item {
  margin: 0;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label {
  /* focus állapot átvezetve */
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* custom négyzet */
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label .wpcf7-list-item-label .custom-checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #bfbfbf;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  will-change: background-color, border-color;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label span {
  color: #767676;
  font-size: 13px;
  line-height: 1;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label span a {
  margin-left: 4px;
  color: #000000;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label input[type=checkbox]:checked + .wpcf7-list-item-label .custom-checkbox {
  background-color: #000000;
  border-color: #000000;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label input[type=checkbox]:checked + .wpcf7-list-item-label .custom-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -65%) rotate(45deg);
  transition: border 0.3s;
  will-change: border;
}
.voucher-page .voucher-form form p:has(input[type=checkbox]) label input[type=checkbox]:focus-visible + .wpcf7-list-item-label .custom-checkbox {
  outline: 2px solid blue;
  outline-offset: 2px;
}
.voucher-page .voucher-form form p:has(input[type=submit]) {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.voucher-page .voucher-form form p:has(input[type=submit]) input[type=submit] {
  background-color: #000000;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 24px;
  margin: 40px auto 0;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  .voucher-page .voucher-form form p:has(input[type=submit]) input[type=submit]:hover {
    transform: scale(0.97);
  }
}
.voucher-page .voucher-form form p:has(input[type=submit]) input[type=submit]:active {
  transform: scale(0.95);
}
.voucher-page .voucher-form form p:has(input[type=submit]) input[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.voucher-page .voucher-form form p:has(input[type=submit]) .wpcf7-spinner {
  display: none;
}
.voucher-page .voucher-form form .captcha {
  font-size: 13px;
  color: #767676;
}
.voucher-page .voucher-form form .wpcf7-response-output {
  padding: 20px;
  border-radius: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.voucher-page .voucher-form form .wpcf7-not-valid-tip {
  padding-top: 8px;
}

@media only screen and (max-width: 968px) {
  .voucher-page .voucher-process ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .voucher-page .voucher-process ul li.long {
    width: 100%;
  }
}
.gdpr-page .title-container {
  text-align: center;
  padding: 40px 0;
}
.gdpr-page .title-container span {
  padding-bottom: 8px;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.gdpr-page .title-container h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
}
.gdpr-page .content-box h2 {
  padding-bottom: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.gdpr-page .content-box p,
.gdpr-page .content-box ul {
  padding-bottom: 40px;
  list-style-position: inside;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}
.gdpr-page .content-box p.no-padding,
.gdpr-page .content-box ul.no-padding {
  padding-bottom: 0;
}

.not-found-page {
  min-height: calc(100svh - 310px);
  padding: 40px 0;
}
.not-found-page .not-found {
  max-width: calc(100% - 40px);
  margin: auto;
  background-color: #000000;
  border-radius: 16px;
  padding: 20px;
}
.not-found-page .not-found-content {
  height: 656px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.not-found-page .not-found-content h1 {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 292px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
}
.not-found-page .not-found-content div {
  display: flex;
  gap: 8px;
  width: 100%;
}
.not-found-page .not-found-content div * {
  background-color: #ffffff;
  padding: 16px 32px;
  border-radius: 3em;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 20px */
}
.not-found-page .not-found-content div p {
  flex-grow: 1;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .not-found-page .not-found-content div {
    flex-direction: column;
    align-items: center;
  }
}
#cc-main {
  /** Change font **/
  --cc-font-family: "Figtree";
  --cc-bg: #ebebeb;
  /** Change button primary color to black **/
  --cc-secondary-color: #414141;
  --cc-btn-primary-bg: #000000;
  --cc-btn-primary-border-color: #000000;
  --cc-btn-primary-hover-bg: #000000;
  --cc-btn-primary-hover-border-color: #000000;
  --cc-btn-secondary-bg: #ffffff;
  --cc-btn-secondary-hover-bg: #ffffff;
  --cc-btn-secondary-hover-border-color: transparent;
  --cc-btn-secondary-border-color: transparent;
  --cc-btn-secondary-color: #000000;
  --cc-btn-secondary-hover-color: #000000;
  --cc-toggle-on-bg: #000000;
  --cc-toggle-off-bg: #6a6a6a;
  --cc-toggle-readonly-bg: #bfbfbf;
  --cc-toggle-readonly-knob-icon-color: #bfbfbf;
  --cc-separator-border-color: transparent;
  /** Also make toggles the same color as the button **/
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);
  --cc-cookie-category-block-bg: #ffffff;
  --cc-cookie-category-block-hover-bg: #ffffff;
  --cc-cookie-category-expanded-block-bg: #ffffff;
  --cc-cookie-category-block-border: transparent;
  /** Make the buttons a bit rounder **/
  --cc-btn-border-radius: 16px;
  --cc-modal-border-radius: 24px;
}

#cc-main .cm {
  box-shadow: none !important;
  max-width: 458px !important;
}
#cc-main .cm__texts {
  padding-top: 14px !important;
}
#cc-main .cm__desc {
  color: #000000 !important;
  padding: 0 14px !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  font-size: 18px !important;
  line-height: 120% !important;
}
#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-left: 8px !important;
}
#cc-main .cm__btns,
#cc-main .pm-btns {
  flex-direction: row !important;
  justify-content: space-between !important;
  padding: 20px 14px 14px !important;
}
#cc-main .cm__btn-group,
#cc-main .pm__btn-group {
  display: flex !important;
  margin-top: 0 !important;
}
#cc-main .cm__btn-group .cm__btn:last-of-type,
#cc-main .cm__btn-group .pm__btn:last-of-type,
#cc-main .pm__btn-group .cm__btn:last-of-type,
#cc-main .pm__btn-group .pm__btn:last-of-type {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
#cc-main .pm__section--expandable .pm__section-arrow {
  background: #000000 !important;
}
#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: #ffffff !important;
}
#cc-main .cm button,
#cc-main .pm__footer button {
  transition: transform 0.3s !important;
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  #cc-main .cm button:hover,
  #cc-main .pm__footer button:hover {
    transform: scale(0.97);
  }
}
#cc-main .cm button:active,
#cc-main .pm__footer button:active {
  transform: scale(0.95);
}
#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 20px !important;
}
#cc-main .pm__title,
#cc-main .pm__section-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  font-size: 18px !important;
}
#cc-main .pm__section-desc-wrapper {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  font-size: 14px !important;
}
#cc-main .pm__section:first-child {
  margin-bottom: 20px !important;
}
#cc-main .pm__section-desc {
  line-height: 120% !important;
}
#cc-main .pm__section:last-of-type {
  padding: 0 !important;
  border: 0 !important;
  margin-top: 20px !important;
}
#cc-main .pm__section:last-of-type:hover {
  background-color: transparent !important;
}
#cc-main .pm__section:last-of-type .pm__section-desc {
  text-align: center;
}
#cc-main .pm__close-btn {
  height: 48px !important;
  width: 48px !important;
  border-radius: 16px !important;
  border: 0 !important;
  transition: transform 0.3s;
  will-change: transform;
}
@media (min-width: 1024px) {
  #cc-main .pm__close-btn:hover {
    transform: scale(0.97);
  }
}
#cc-main .pm__close-btn:active {
  transform: scale(0.95);
}

.cm__btn,
.pm__btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: unset !important;
  padding: 14px 16px !important;
  border: 0 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 48px !important;
  min-width: auto !important;
}
.cm__btn > span,
.pm__btn > span {
  display: flex !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.cm__btn.cm__btn--secondary,
.pm__btn.cm__btn--secondary {
  width: 48px !important;
  padding: 0 !important;
}

#cc-main .pm__body,
#cc-main .pm__footer,
#cc-main .pm__header {
  padding: 14px !important;
}

@media screen and (max-width: 640px) {
  #cc-main .cm__body .cm__btn-group {
    flex-direction: row !important;
  }
  #cc-main .cm__body .cm__btns {
    flex-direction: row !important;
  }
  #cc-main .cm__body .cm__btn + .cm__btn,
  #cc-main .cm__body .cm__btn-group + .cm__btn-group {
    margin-top: 0 !important;
  }
}
* {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000000;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  -webkit-text-stroke: 0 !important;
  transition-delay: 0 !important;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

#wpadminbar * {
  color: inherit !important;
}

body {
  background-color: #ffffff;
}

.page {
  position: relative;
}

.center-box {
  max-width: 648px;
  margin: 0 auto;
  padding: 0 20px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.fade-in {
  transform: translateY(60px) scale(1.05);
  filter: blur(10px);
  opacity: 0;
}

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