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

body {
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

article > * {
  width: 100%;
  max-width: 1360px;
}

.alignfull {
  max-width: 100vw;
}

.alignsmall {
  max-width: 560px;
  margin: 0px auto;
}

a {
  color: #ffffff;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
  article > *:not(.alignfull) {
    width: calc(100% - 32px);
    margin: 0px 16px;
  }
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}
.hidden {
  display: none !important;
}

header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 22px;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  header {
    top: 10px;
  }
}
header nav {
  max-width: 1360px;
  width: 100%;
}
@media (max-width: 767px) {
  header nav {
    width: calc(100% - 20px) !important;
  }
}
header nav {
  height: auto;
  transition: height 0.5s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(120px);
  border-radius: 8px;
  padding: 12px 16px;
}
header nav img.logo {
  height: 32px;
}
header nav .action-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav .action-buttons .dim, header nav .action-buttons .primary {
  padding: 12px 16px;
  border-radius: 8px;
  max-height: 42px;
  height: 42px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -1%;
}
header nav .action-buttons .dim {
  color: #fff;
}
header nav .action-buttons .primary {
  color: #000;
  background: #FA825A;
}

nav .desktop-menu {
  height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .desktop-menu .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .desktop-menu .menu ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
nav .desktop-menu .menu ul li a {
  color: #fff;
}

nav.is-active .mobile-menu {
  height: calc(100vh - 40px);
  overflow: clip;
}
nav .mobile-menu {
  height: 56px;
  overflow: hidden;
  transition: all 0.5s ease;
}
nav .mobile-menu .mobile-menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
nav .mobile-menu .mobile-menu-overlay {
  margin-top: 80px;
  height: calc(100vh - 176px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav .mobile-menu .menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
nav .mobile-menu .menu ul li a {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%; /* 35.7px */
  letter-spacing: -0.7px;
}
nav .mobile-menu .action-buttons {
  flex-direction: column;
}
nav .mobile-menu .action-buttons .primary, nav .mobile-menu .action-buttons .dim {
  width: 100%;
  text-align: center;
}
nav .mobile-menu .action-buttons .dim {
  background-color: #fff;
  color: #000;
}

.hamburger {
  width: 18px;
  height: 14px;
  position: relative;
  cursor: pointer;
}

.hamburger .bar {
  padding: 0;
  width: 18px;
  height: 2px;
  background-color: #fff;
  display: block;
  border-radius: 0px;
  transition: all 0.4s ease-in-out;
  position: absolute;
}

.bar1 {
  top: 0;
}

.bar2,
.bar3 {
  top: 6px;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 0;
}

/* HAMBURGER 1 */
nav.is-active .hamburger > .bar1 {
  transform: rotate(45deg);
  transform-origin: 5%;
  width: 20px;
}

nav.is-active .hamburger > .bar2 {
  transform: translateX(-40px);
  background-color: transparent;
}

nav.is-active .hamburger > .bar3 {
  transform: translateX(40px);
  background-color: transparent;
}

nav.is-active .hamburger > .bar4 {
  transform-origin: 5%;
  transform: rotate(-45deg);
  width: 20px;
}

footer {
  min-height: 278px;
  background-color: #F5F5F0;
  background-image: url("/wp-content/themes/hubora/assets/images/footer-bg.png");
  background-size: 210% 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  align-self: stretch;
}
footer .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 40px;
  position: relative;
}
@media (max-width: 767px) {
  footer .container {
    padding: 24px 16px 40px;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
footer .hubora-footer-top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .hubora-footer-top {
    flex-direction: column;
    align-items: self-start;
    gap: 40px;
  }
}
footer .hubora-footer-top nav {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  footer .hubora-footer-top nav {
    flex-direction: column;
    gap: 16px;
  }
}
footer .hubora-footer-top nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}
footer .hubora-footer-top nav a {
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  line-height: 18px;
  letter-spacing: -1%;
  color: #000000;
}
footer .logo {
  height: 100px;
}
@media (max-width: 767px) {
  footer .logo {
    height: 62px;
  }
}
footer .logo {
  width: auto;
}
footer .hubora-footer-bottom {
  position: absolute;
  right: 40px;
  bottom: -40px;
}
@media (max-width: 767px) {
  footer .hubora-footer-bottom {
    bottom: 40px;
  }
}
footer .hubora-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
footer .hubora-footer-social a {
  background-color: #282828;
  width: 40px;
  height: 40px;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .hubora-footer-social a svg {
  height: 18px;
  width: auto;
}

/* Typography */
body {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}

h1.display {
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 115.2px */
  letter-spacing: -2.88px;
}

h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%; /* 48.96px */
  letter-spacing: -0.96px;
}

h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 108%; /* 43.2px */
  letter-spacing: -0.8px;
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 112%; /* 26.88px */
  letter-spacing: -0.48px;
}

h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
}

.accent {
  color: #FA825A;
}

a {
  text-decoration: none;
}

.wp-block-media-text {
  border-radius: 8px;
  overflow: hidden;
}

.wp-block-cover:not(.alignfull) {
  border-radius: 8px !important;
}

.wp-block-cover.no-padding {
  padding: 0 !important;
}

@media (min-width: 768px) {
  .element-margin {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .element-margin {
    margin-left: 16px;
    margin-right: 16px;
  }
}
.wp-block-button__link {
  position: relative;
  background-color: #FA825A;
  border-radius: 8px;
  color: #000;
  display: inline-block;
  padding: 12px 40px 12px 16px;
}
.wp-block-button__link::before {
  content: url("/wp-content/themes/hubora/assets/images/arrow-right.svg");
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-column.has-background {
  padding: 24px 16px;
  border-radius: 8px;
}

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

.pill p {
  display: inline-block;
  padding: 8px 16px;
  text-align: center;
  margin: 0px auto;
  gap: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  /* BG-blur */
  backdrop-filter: blur(60px);
}

h1.wp-block-heading.has-x-large-font-size {
  font-size: 96px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 115.2px */
  letter-spacing: -2.88px;
}

.wpcf7 {
  max-width: 100%;
}
.wpcf7 form {
  display: flex;
  flex-direction: column;
}
.wpcf7 p {
  margin: 0 0 24px 0;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #FA825A;
}
.wpcf7 .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 24px !important;
}
@media (min-width: 768px) {
  .wpcf7 .col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
}
.wpcf7 input:not([type=submit]):not([type=checkbox]), .wpcf7 textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: #fff;
}
.wpcf7 input[type=submit] {
  padding: 12px 30px;
  border-radius: 8px;
  color: #1E1E1E;
  text-align: center;
  background-color: #FA825A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.16px;
  border: 0px;
}
.wpcf7 p:has(> .wpcf7-submit) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item, .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-checkbox label, .wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.wpcf7 .wpcf7-checkbox input[type=checkbox], .wpcf7 .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.wpcf7 .wpcf7-checkbox input[type=checkbox]:checked, .wpcf7 .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #FA825A;
  border-color: #FA825A;
}
.wpcf7 .wpcf7-checkbox input[type=checkbox]:checked::after, .wpcf7 .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #1E1E1E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.wpcf7 .wpcf7-checkbox input[type=checkbox]:hover, .wpcf7 .wpcf7-acceptance input[type=checkbox]:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.wpcf7 .wpcf7-checkbox input[type=checkbox]:focus, .wpcf7 .wpcf7-acceptance input[type=checkbox]:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label, .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .wp-block-carousel {
    aspect-ratio: 2/1;
  }
}
@media (max-width: 767px) {
  .wp-block-carousel {
    aspect-ratio: 1/1;
  }
}
.wp-block-carousel {
  display: grid;
  grid-template-rows: 1fr 32px;
  grid-gap: 24px;
  overflow: hidden;
}
.wp-block-carousel .slides {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow: visible;
  transition: transform 0.5s ease;
}
.wp-block-carousel .slides .slide {
  height: 100%;
  min-width: calc(100% - 100px);
  width: 90%;
  flex-shrink: 0;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.5s ease;
  background-size: cover;
}
.wp-block-carousel .slides .slide .pill {
  justify-content: flex-start;
}
.wp-block-carousel .slides .slide .pill p {
  margin: 0px;
}
.wp-block-carousel .slides .slide .pill img {
  width: 10px;
  height: 10px;
  margin-left: 8px;
  filter: invert(100%);
}
.wp-block-carousel .slides .slide .slide-content {
  padding-top: 16px;
  max-width: 400px;
}
.wp-block-carousel .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-block-carousel .bottom .dots {
  display: flex;
  gap: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.wp-block-carousel .bottom .dots .dot {
  width: 20px;
  height: 8px;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.5s ease;
  cursor: pointer;
}
.wp-block-carousel .bottom .dots .dot.active {
  background-color: #fff;
  width: 60px;
}
.wp-block-carousel .bottom .dots .dot:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.6);
}
.wp-block-carousel .bottom .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.wp-block-carousel .bottom .controls .prev, .wp-block-carousel .bottom .controls .next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s ease;
}
.wp-block-carousel .bottom .controls .prev.disabled, .wp-block-carousel .bottom .controls .next.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none;
}
.wp-block-carousel .bottom .controls .prev:hover:not(.disabled), .wp-block-carousel .bottom .controls .next:hover:not(.disabled) {
  background-color: rgba(255, 255, 255, 0.8);
}

.wp-block-contact-card {
  background-color: #EBEBE1;
  border-radius: 8px;
  padding: 32px 24px;
}
.wp-block-contact-card .contact-info {
  margin-bottom: 48px;
}
.wp-block-contact-card .contact-info .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.wp-block-contact-card .contact-info .info div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(42px);
}
.wp-block-contact-card .contact-info .info a {
  color: #000;
}
.wp-block-contact-card .person {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 24px;
}
.wp-block-contact-card .person img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.wp-block-contact-card .person div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}
.wp-block-contact-card .person div h4 {
  margin-bottom: 4px;
}

.wp-block-custom-sell-box {
  border-radius: 8px;
  background: linear-gradient(140deg, #2F2F2F 0%, #000 100.34%);
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner {
  display: flex;
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps {
  display: grid;
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner .info .price {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%; /* 48.96px */
  letter-spacing: -0.96px;
  margin-top: 32px;
}
.wp-block-custom-sell-box .wp-block-custom-sell-box__inner .info .period {
  margin-top: 16px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

@media (min-width: 768px) {
  .wp-block-custom-sell-box {
    padding: 92px 100px 92px 80px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner {
    justify-content: space-between;
    align-items: center;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px);
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text h4 {
    margin-bottom: 8px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text p {
    color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 767px) {
  .wp-block-custom-sell-box {
    padding: 24px 16px 32px 16px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 32px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    padding-bottom: 16px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    padding: 10px 7px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(60px);
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .icon img {
    width: 100%;
    height: auto;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text h4 {
    margin-bottom: 8px;
  }
  .wp-block-custom-sell-box .wp-block-custom-sell-box__inner .usps .usp .text p {
    color: rgba(255, 255, 255, 0.8);
  }
  .wp-block-custom-sell-box .wp-block-button__link {
    display: block;
  }
}
.wp-block-hubora-employee .employee-image img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.wp-block-hubora-employee .employee-info {
  padding-top: 24px;
}
.wp-block-hubora-employee .employee-info .employee-title {
  color: #FA825A;
}

.wp-block-hubora-faq .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding-top: 12px;
}
.wp-block-hubora-faq .faq-question {
  display: grid;
  grid-template-columns: 1fr 32px;
  margin-top: 24px;
}
.wp-block-hubora-faq .faq-answer {
  max-height: 0px;
  overflow: hidden;
  transition: all 500ms ease-in-out;
  padding-top: 0px;
  margin-bottom: 24px;
}
.wp-block-hubora-faq img {
  width: 24px;
  height: 24px;
  transition: all 200ms ease-in-out;
}
.wp-block-hubora-faq .faq-item.is-open .faq-answer {
  padding-top: 12px;
  max-height: 100vh;
}
.wp-block-hubora-faq .faq-item.is-open img {
  transform: rotate(45deg);
}

.wp-block-sell-box {
  background-color: #FA825A;
  border-radius: 8px;
}
.wp-block-sell-box .usps {
  display: grid;
  color: #000;
}
.wp-block-sell-box .usps h2 {
  position: relative;
  display: inline-block;
  padding-right: 56px;
  margin-bottom: 5px;
}
.wp-block-sell-box .usps h2::before {
  content: "";
  background: url("/wp-content/themes/hubora/assets/images/arrow-right.svg") no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
  position: absolute;
  right: 0px;
  top: 7px;
}
.wp-block-sell-box .info .price {
  color: #EBEBE1;
}
.wp-block-sell-box .info .period {
  color: #000;
}

@media (max-width: 767px) {
  .wp-block-sell-box {
    padding: 24px 16px 32px 16px;
  }
  .wp-block-sell-box .usps {
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    margin-bottom: 56px;
  }
  .wp-block-sell-box .info .price {
    color: var(--Beige, #EBEBE1);
    text-align: center;
    font-size: 121.961px;
    font-style: normal;
    font-weight: 400;
    line-height: 85%; /* 146.353px */
    letter-spacing: -4.878px;
  }
  .wp-block-sell-box .info .period {
    margin-top: 16px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .wp-block-sell-box {
    padding: 32px;
  }
  .wp-block-sell-box .usps {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 80px;
    grid-row-gap: 24px;
    margin-bottom: 120px;
  }
  .wp-block-sell-box .info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .wp-block-sell-box .info .price {
    font-size: 220px;
    font-style: normal;
    font-weight: 400;
    line-height: 85%; /* 264px */
    letter-spacing: -8.8px;
  }
}

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