.site-footer {
  background-image: url(/wp-content/uploads/2023/12/Footer.svg);
  padding: 6rem 2rem 4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.site-footer--wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.site-footer--menus {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .site-footer--menus {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.site-footer--menus .footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.site-footer--menus .footer-buttons .btn-wrap a {
  text-align: center;
  border-radius: 50px;
  padding: 1rem 2rem;
  max-width: 194px;
  width: 100%;
  font-size: 1.8rem;
  text-decoration: none;
  display: inline-block;
}
.site-footer--menus .footer-buttons .btn-tools a {
  background-color: #987E7F;
  color: #fff;
  font-weight: bold;
}
.site-footer--menus .footer-buttons .btn-contact {
  display: flex;
  justify-content: space-between;
}
.site-footer--menus .footer-buttons .btn-contact a {
  border: 1px solid #D2232A;
  display: flex;
  justify-content: space-between;
}
.site-footer--social {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 1225px) {
  .site-footer--social {
    gap: 2rem;
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 1023px) {
  .site-footer--social {
    flex-direction: column;
    padding: 3rem 0;
    text-align: center;
    gap: 4rem;
  }
}
.site-footer--social .footer-socials {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .site-footer--social .footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .site-footer--social .footer-socials a {
    display: inline-block;
  }
}
.site-footer--social .footer-rest {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-footer--social .footer-rest .footer-bottom-menu {
  display: flex;
  gap: 2rem;
}
.site-footer--social .footer-rest .footer-bottom-menu > div {
  display: flex;
  gap: 2rem;
}
.site-footer--social .footer-rest .footer-bottom-menu > div p {
  margin: 0;
}
@media (max-width: 1023px) {
  .site-footer--social .footer-rest .footer-bottom-menu > div:first-child {
    order: 10;
  }
}
.site-footer--social .footer-rest .footer-bottom-menu > div:not(:last-child):after {
  content: "";
  height: 100%;
  width: 2px;
  background: #000;
}
@media (max-width: 1023px) {
  .site-footer--social .footer-rest .footer-bottom-menu {
    flex-direction: column;
    gap: 2rem;
  }
  .site-footer--social .footer-rest .footer-bottom-menu p {
    margin: 0;
  }
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.site-footer .footer-contact--item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer .footer-contact--item p {
  margin: 0;
}
.site-footer .footer-nav h3 {
  margin: 0;
  padding-bottom: 1rem;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer--bottom-line {
  display: flex;
  justify-content: end;
}
@media (max-width: 1023px) {
  .site-footer--bottom-line {
    flex-direction: column;
    gap: 3rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "almoni-neue", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.container {
  width: 140rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .container {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1023px) and (max-width: 1440px) {
  .container {
    width: 100%;
  }
}

h1,
.h1 {
  font-size: 3.4rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  color: #000;
}
a:hover, a:focus {
  text-decoration: underline;
}

.decorative-image {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hidden-content {
  display: none;
}

@media (max-width: 1023px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none;
}
@media (max-width: 1023px) {
  .mobile {
    display: initial;
  }
}

.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 2rem 0;
}
.video-container:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn {
  border-radius: 50px;
  padding: 1.2rem 4rem;
  color: #fff;
  display: inline-block;
}

.btn-primary {
  background: var(--gradint-red, linear-gradient(15deg, #ffb490 -2.9%, #f18477 5.74%, #d2232a 52.29%, #af1e24 115.04%));
}

.btn-wrapper a, .btn-wrapper button {
  text-decoration: none;
}

.video-bg img {
  width: 100%;
  cursor: pointer;
}

.pll-switcher-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  font-family: "almoni-neue", sans-serif;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.1s linear;
}
.overlay .close-o {
  position: fixed;
  top: 9%;
  right: 13%;
  width: 4rem;
  cursor: pointer;
}
.overlay .close-o img {
  width: 100%;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.homepage {
  padding: 6rem 2rem 10rem;
}
@media (max-width: 1023px) {
  .homepage {
    overflow: hidden;
  }
}

.decor-title {
  padding: 6rem 0 0 0;
}
@media (max-width: 1023px) {
  .decor-title {
    display: flex;
    margin-bottom: 2rem;
    padding: 0;
    order: -1;
  }
}
.decor-title p {
  display: inline-block;
  margin: 0 auto;
  background: #ffe0e1;
  padding: 0 1.8rem 0 2rem;
  border-radius: 50px 0 0 50px;
  font-size: 1.6rem;
  color: #d2232a;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media (max-width: 1023px) {
  .decor-title p {
    border-radius: 50px;
  }
}

.step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.step--header {
  width: 100%;
  position: relative;
}
@media (max-width: 1023px) {
  .step--header {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }
}
.step--content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
}
@media (max-width: 1023px) {
  .step--content-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.step--content-wrapper .content .attention {
  background: #f1f1f1;
  border-top: 7px solid #d2232a;
  padding: 0rem 3rem 1rem;
  margin: 4rem 0 3rem;
  border-radius: 0 0 24px 24px;
  width: 52rem;
}
@media (max-width: 1023px) {
  .step--content-wrapper .content .attention {
    width: 100%;
  }
}
.step--content-wrapper .content .notice {
  background: #f7f1ec;
  padding: 1rem 3rem 1rem;
  margin: 0rem 0 5rem;
  border-radius: 24px;
  width: 52rem;
}
@media (max-width: 1023px) {
  .step--content-wrapper .content .notice {
    width: 100%;
  }
}
.step--content-wrapper .step--bg-image img {
  width: 100%;
}
@media (max-width: 1023px) {
  .step--content-wrapper .step--bg-image {
    margin-top: 4rem;
  }
}
.step .btn-wrapper {
  display: flex;
  gap: 1.4rem;
}
@media (max-width: 1023px) {
  .step .btn-wrapper {
    flex-direction: column;
    gap: 2.4rem;
    padding: 2rem 2rem 0;
  }
  .step .btn-wrapper a,
  .step .btn-wrapper button {
    width: 100% !important;
  }
}
.step a {
  color: #D2232A;
  text-decoration: underline;
}
.step a:hover {
  text-decoration: none;
}

.before-text {
  font-size: 3rem;
  line-height: 1;
}

.final-text {
  font-weight: bold;
  margin-top: 4rem;
}

.title-step {
  font-family: "Rutz_OE", sans-serif;
  font-size: 4rem;
  text-align: center;
  margin: 0;
}

.btn-step {
  border-radius: 50px;
  border: none;
  color: white;
  padding: 1rem 2rem;
  width: 194px;
  font-family: "almoni-neue", sans-serif;
  font-size: 1.8rem;
  cursor: pointer;
}

.next-step {
  background: var(--button-green, linear-gradient(15deg, #90ffa2 -2.9%, #23d274 21.06%, #009b47 115.04%));
}

.mid-step {
  background: var(--gradint-red, linear-gradient(15deg, #ffb490 -2.9%, #f18477 5.74%, #d2232a 52.29%, #af1e24 115.04%));
}

.alt-step {
  color: #af1f24;
  border: 1px solid #af1f24;
  background-color: #fff;
}

.prev-step {
  background-color: transparent;
  color: #d2232a;
  padding: 0;
  border: none;
  text-decoration: underline;
  font-family: "almoni-neue", sans-serif;
  position: absolute;
  top: 1rem;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .prev-step {
    position: initial;
    order: -1;
    padding-bottom: 2rem;
    text-align: right;
  }
}
.prev-step:hover {
  text-decoration: none;
}

.progress {
  counter-reset: progress;
  position: relative;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.progress .prog {
  position: relative;
  display: flex;
  align-items: baseline;
  padding: 0.4rem 0 1.4rem;
}
.progress .prog:before {
  counter-increment: progress;
  content: counter(progress);
  position: absolute;
  font-size: 3rem;
  font-weight: 600;
  margin-top: -0.8rem;
}
.progress .prog:not(:last-child):after {
  content: "";
  height: 1px;
  background-color: #dfdfdf;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.progress .prog p {
  padding-inline-start: 3rem;
  margin: 0;
}

.red {
  color: #D2232A;
  font-weight: bold;
}

.step-before--container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.step-before--wrapper {
  width: 82rem;
  background: red;
  margin: 3rem 0;
  padding: 4rem;
  border-radius: 0 50px 50px;
  background: #f7f1ec;
  position: relative;
}
.step-before--wrapper:after {
  content: url(/wp-content/uploads/2024/01/decor1.svg);
  position: absolute;
  top: -3rem;
  right: -6rem;
  z-index: -1;
}
.step-before--wrapper:before {
  content: url(/wp-content/uploads/2024/01/decor2.svg);
  position: absolute;
  bottom: -8rem;
  left: -6rem;
  z-index: -1;
}
@media (max-width: 1023px) {
  .step-before--wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1023px) {
  .step-before--wrapper .step--header {
    justify-content: center;
    display: flex;
    padding: 3rem 0 0 0;
  }
}
.step-before--wrapper .step--header .prev-step {
  left: 0;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .step-before--wrapper .step--header .prev-step {
    position: relative;
    top: initial;
    left: initial;
  }
}
.step-before--wrapper .title-step {
  font-family: "almoni-neue", sans-serif;
  color: #D2232A;
}
.step-before--wrapper .subtitle-step {
  margin: 0;
  text-align: center;
}
.step-before--wrapper .text {
  text-align: center;
  padding: 2rem 4vw;
}
.step-before--wrapper .btn-wrapper {
  justify-content: center;
  display: flex;
}
.step-before--wrapper .btn-wrapper button {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.fadeIn {
  animation: fadeInAnimation ease 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.step1a,
.step1b,
.step1c,
.step1d {
  display: none;
  background: rgba(0, 0, 0, 0.7098039216);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.step1a .step-before--wrapper,
.step1b .step-before--wrapper,
.step1c .step-before--wrapper,
.step1d .step-before--wrapper {
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  width: 840px;
}
@media (max-width: 1023px) {
  .step1a .step-before--wrapper,
  .step1b .step-before--wrapper,
  .step1c .step-before--wrapper,
  .step1d .step-before--wrapper {
    width: 92%;
    border-radius: 50px;
  }
  .step1a .step-before--wrapper .btn-wrapper,
  .step1b .step-before--wrapper .btn-wrapper,
  .step1c .step-before--wrapper .btn-wrapper,
  .step1d .step-before--wrapper .btn-wrapper {
    padding: 2rem 0 0 0;
  }
}
.step1a .step-before--wrapper:before, .step1a .step-before--wrapper:after,
.step1b .step-before--wrapper:before,
.step1b .step-before--wrapper:after,
.step1c .step-before--wrapper:before,
.step1c .step-before--wrapper:after,
.step1d .step-before--wrapper:before,
.step1d .step-before--wrapper:after {
  content: none;
}
.step1a .step-before--wrapper .title-step img,
.step1b .step-before--wrapper .title-step img,
.step1c .step-before--wrapper .title-step img,
.step1d .step-before--wrapper .title-step img {
  width: 3.4%;
}
@media (max-width: 1023px) {
  .step1a .step-before--wrapper .title-step img,
  .step1b .step-before--wrapper .title-step img,
  .step1c .step-before--wrapper .title-step img,
  .step1d .step-before--wrapper .title-step img {
    width: 2.6rem;
  }
}
.step1a .step-before--wrapper .text,
.step1b .step-before--wrapper .text,
.step1c .step-before--wrapper .text,
.step1d .step-before--wrapper .text {
  text-align: center;
}

.step1 .step--bg-image {
  position: relative;
}
.step1 .step--bg-image:after {
  content: url(/wp-content/uploads/2024/01/step1-video-bg.svg);
  width: 12rem;
  margin-top: -4rem;
  z-index: -1;
}
.step1 .step--bg-image iframe {
  border-radius: 24px;
  box-shadow: 0px 24px 54px 0px rgba(54, 8, 10, 0.35);
}
.step1 .step--bg-image iframe:after {
  content: url(/wp-content/uploads/2024/01/step1-video-bg.svg);
}
.step1 .btn-wrapper a {
  text-align: center;
  border-radius: 50px;
  border: 1px solid #D2232A;
  padding: 1rem 2rem;
  width: 194px;
  font-size: 1.8rem;
  color: #D2232A;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .step1 .btn-wrapper {
    padding-top: 6rem;
  }
}
.step1 .founder {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1023px) {
  .step1 .founder {
    position: relative;
    order: -1;
    margin-bottom: 6rem;
  }
}
.step1 .founder .founder-end {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.step1 .founder .founder-end p {
  margin: 0;
}
@media (max-width: 1023px) {
  .step1 .founder .founder-end {
    text-align: center;
  }
}

.step2 .content-alt,
.step2a .content-alt,
.step2b .content-alt,
.step2c .content-alt {
  display: flex;
  gap: 3rem;
  box-shadow: 0px 34px 44px 0px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  padding: 1rem 5rem 4rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .step2 .content-alt,
  .step2a .content-alt,
  .step2b .content-alt,
  .step2c .content-alt {
    flex-direction: column;
    padding: 3rem 3rem 6rem;
  }
}
.step2 .content-alt--wrapper,
.step2a .content-alt--wrapper,
.step2b .content-alt--wrapper,
.step2c .content-alt--wrapper {
  width: 50%;
}
@media (max-width: 1023px) {
  .step2 .content-alt--wrapper,
  .step2a .content-alt--wrapper,
  .step2b .content-alt--wrapper,
  .step2c .content-alt--wrapper {
    width: 100%;
  }
}
.step2 .content-alt--wrapper .number,
.step2a .content-alt--wrapper .number,
.step2b .content-alt--wrapper .number,
.step2c .content-alt--wrapper .number {
  margin: 0;
}
.step2 .content-alt--wrapper h3,
.step2a .content-alt--wrapper h3,
.step2b .content-alt--wrapper h3,
.step2c .content-alt--wrapper h3 {
  margin: 1rem 0 3rem;
  border-bottom: 5px solid #d2232a;
  display: inline-block;
}
.step2 .content-alt .image-wrapper,
.step2a .content-alt .image-wrapper,
.step2b .content-alt .image-wrapper,
.step2c .content-alt .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 42%;
}
@media (max-width: 1023px) {
  .step2 .content-alt .image-wrapper,
  .step2a .content-alt .image-wrapper,
  .step2b .content-alt .image-wrapper,
  .step2c .content-alt .image-wrapper {
    width: 100%;
  }
}
.step2 .content-alt .image-wrapper img,
.step2a .content-alt .image-wrapper img,
.step2b .content-alt .image-wrapper img,
.step2c .content-alt .image-wrapper img {
  width: 100%;
}

.step6a .accordion-item:nth-child(2) .attention {
  display: none;
}

.step11a .step--bg-image {
  position: relative;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image {
    margin-bottom: 10rem;
    display: flex;
  }
}
.step11a .step--bg-image .tooltip {
  position: absolute;
  width: 24rem;
  background: #f7f1ed;
  filter: drop-shadow(0px 24px 34px rgba(0, 0, 0, 0.25));
  border-radius: 12px;
  padding: 0 2rem;
  display: none;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .tooltip {
    top: initial !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    bottom: -9%;
    min-height: 10rem;
    font-size: 4.5vw;
    padding: 0 2rem 0 4rem;
  }
}
.step11a .step--bg-image .dots {
  position: absolute;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .dots {
    position: initial;
  }
}
.step11a .step--bg-image .a-1 {
  top: 4%;
  left: 43%;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .a-1 .plus-minus {
    top: 6%;
    left: 37%;
  }
}
.step11a .step--bg-image .a-1 .tooltip {
  top: 1rem;
  right: 1rem;
}
.step11a .step--bg-image .a-2 {
  top: 32%;
  right: 38%;
}
.step11a .step--bg-image .a-2 .tooltip {
  left: -2rem;
  top: 2rem;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .a-2 .plus-minus {
    top: 36%;
    right: 34%;
  }
}
.step11a .step--bg-image .a-3 {
  top: 32%;
  right: 25%;
}
.step11a .step--bg-image .a-3 .tooltip {
  left: -2rem;
  top: 1rem;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .a-3 .plus-minus {
    top: 40%;
    right: 13%;
  }
}
.step11a .step--bg-image .a-4 {
  top: 52%;
  left: 4%;
}
.step11a .step--bg-image .a-4 .tooltip {
  left: -2rem;
  top: 1rem;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .a-4 .plus-minus {
    top: 64%;
    left: 4%;
  }
}
.step11a .step--bg-image .a-5 {
  bottom: 30%;
  right: 31%;
}
.step11a .step--bg-image .a-5 .tooltip {
  left: -2rem;
  top: 1rem;
}
@media (max-width: 1023px) {
  .step11a .step--bg-image .a-5 .plus-minus {
    bottom: 20%;
    right: 20%;
  }
}
.step11a .step--bg-image .plus-minus {
  position: absolute;
  background: #D2232A;
  border: 2px solid #d1c1af;
}
.step11a .step--bg-image .plus-minus:after, .step11a .step--bg-image .plus-minus:before {
  background: #fff;
}
.step11a .step--bg-image .active .plus-minus {
  background: #f7f1ed;
  border: none;
}
.step11a .step--bg-image .active .plus-minus:after, .step11a .step--bg-image .active .plus-minus:before {
  background: transparent;
}

.progress-line {
  position: absolute;
  width: 85%;
  border: 0.1rem solid #d1c1af;
  height: 0.2rem;
}

.progress-bar-container {
  border-radius: 100px;
  background: var(--White, #fff);
  box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  z-index: 1;
  margin-top: -10rem !important;
  margin-bottom: 6rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .progress-bar-container {
    margin-top: -1rem !important;
  }
}
.progress-bar-container .progress-point-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 0.6rem;
}
.progress-bar-container .progress-point-container:last-child .progress-point::after {
  content: none;
}
.progress-bar-container .progress-point-container .progress-point {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  background-color: #d2232a;
}
.progress-bar-container .progress-point-container .progress-point span {
  width: 14rem;
  position: absolute;
  height: 0.4rem;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d2232a;
  border-top: 0.1rem solid #d1c1af;
  border-bottom: 0.1rem solid #d1c1af;
}
.progress-bar-container .progress-point-container .progress-point-text {
  text-align: center;
  font-family: "almoni-neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 104%;
  color: #d2232a;
  font-weight: 400;
}
.progress-bar-container .active .progress-point {
  background-color: #d2232a;
  border: 0.1rem solid #d2232a;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: -0.5rem;
}
.progress-bar-container .active .progress-point:after {
  background-color: transparent;
}
.progress-bar-container .active .progress-point-text {
  font-weight: bold;
}
.progress-bar-container .active ~ .progress-point-container .progress-point-text {
  color: #d1c1af;
}
.progress-bar-container .active ~ .progress-point-container .progress-point {
  background: white;
  border: 0.1rem solid #d1c1af;
}
.progress-bar-container .active ~ .progress-point-container .progress-point:after {
  background-color: transparent;
}

.progress-bar-container.visible {
  opacity: 0;
}

:lang(en) .progress-point span,
:lang(ru) .progress-point span,
:lang(am) .progress-point span {
  left: 0;
}

.accordion-item {
  padding: 2rem 0;
}
.accordion-item:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
.accordion-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #000 !important;
  text-decoration: none !important;
  font-weight: 700;
}
.accordion-content {
  display: none;
}

.plus-minus {
  width: 3rem;
  height: 3rem;
  transform: translate(0%, 0%) rotate(0deg);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: 0.4s cubic-bezier(0.2, 0.6, 0.3, 1.1);
}
.plus-minus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 50%;
  background: #D2232A;
}
.plus-minus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 2px;
  background: #D2232A;
}

.plus-minus.clicked {
  transform: translate(0%, 0%) rotate(360deg);
}
.plus-minus.clicked:before {
  width: 0;
}

.contact-form {
  border: 1px solid #D2232A;
  border-radius: 30px;
  padding: 4rem 3rem;
  margin-bottom: 7rem;
  margin-top: 4rem;
}
.contact-form .gform_title {
  margin: 0 0 1rem;
  font-family: "Rutz_OE", sans-serif;
}
.contact-form .gform_description {
  margin: 0 0 4rem;
  font-family: "Rutz_OE", sans-serif;
  font-weight: 400;
}
.contact-form .gform_required_legend {
  display: none;
}
.contact-form .gfield_label {
  font-weight: bold !important;
  font-size: 2rem !important;
  margin: 0 0 2rem !important;
}
.contact-form .gfield--type-choice .gfield_radio {
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .contact-form .gfield--type-choice .gfield_radio {
    justify-content: flex-start;
  }
}
.contact-form div.gfield_radio input[type=radio]:checked {
  color: #D2232A !important;
}
.contact-form input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):before {
  background-color: #D2232A !important;
}
.contact-form .gfield_radio input[type=radio]:before {
  border: 1px solid #D2232A !important;
}
.contact-form fieldset {
  border-bottom: 1px solid #D2232A !important;
  padding: 0 0 5rem !important;
}
.contact-form #input_1_4 {
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .contact-form #input_1_4 {
    justify-content: flex-start;
  }
}
.contact-form #input_1_4 .gchoice {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
}
.contact-form textarea {
  background: #f7f3f0 !important;
  border: none !important;
  border-radius: 10px !important;
  resize: none !important;
}
.contact-form .gform_footer {
  justify-content: center;
}
.contact-form .gform_footer .gform_button {
  border-radius: 50px !important;
  background: #36080a !important;
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15) !important;
  padding: 1rem 7rem !important;
  font-size: 20px !important;
  font-weight: bold !important;
  letter-spacing: 0.1rem !important;
}

.flex-start .gfield_radio {
  justify-content: flex-start !important;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightbox {
  display: none;
  position: fixed;
  top: 12%;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 70%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .lightbox {
    width: 90%;
  }
}
.lightbox .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  border-radius: 25px;
}
.lightbox .video-wrapper iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  left: 0;
  top: 0;
}

.site-header {
  background-image: url(/wp-content/uploads/2023/12/ezer-bg.png);
  padding: 0 0 8% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 0 300px;
  background-position: center center;
}
@media (max-width: 1023px) {
  .site-header {
    border-radius: 0;
    background-image: url(/wp-content/uploads/2023/12/ezer-header-mobile-bg.png);
  }
}
.site-header--wrapper .header-strip {
  background: var(--Dark-Gradient, linear-gradient(180deg, rgba(0, 0, 0, 0.8) -16.15%, rgba(0, 0, 0, 0) 100%));
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  align-items: flex-start;
}
.site-header--wrapper .header-strip--logo {
  width: 10%;
}
@media (max-width: 1023px) {
  .site-header--wrapper .header-strip--logo {
    width: 50%;
  }
}
.site-header--wrapper .header-strip--logo img {
  width: 100%;
}
.site-header--wrapper .header-strip--content {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.site-header--wrapper .header-strip--content .lang-switcher-container .lang-switcher {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 3rem;
}
.site-header--wrapper .header-strip--content .lang-switcher-container .lang-switcher li {
  list-style: none;
}
.site-header--wrapper .header-strip--content .lang-switcher-container .lang-switcher li a {
  color: #fff;
}
.site-header--wrapper .header-content {
  color: white;
  padding-top: 4rem;
  margin: 0 auto;
  text-align: left;
  padding-left: 8rem;
}
@media (max-width: 1023px) {
  .site-header--wrapper .header-content {
    padding-top: 2rem;
    text-align: center;
    padding-left: 0;
  }
}
.site-header--wrapper .header-content h1 {
  font-size: 7rem;
  margin: 0;
  line-height: 0.8;
}
@media (max-width: 1023px) {
  .site-header--wrapper .header-content h1 {
    line-height: 1;
    padding-bottom: 2rem;
    font-size: 5rem;
  }
}
.site-header--wrapper .header-content p {
  font-size: 3rem;
  margin: 0;
}
@media (max-width: 1023px) {
  .site-header--wrapper .header-content p {
    font-size: 2rem;
  }
}
.site-header .floating-buttons {
  position: fixed;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 5%;
  z-index: 99;
}
@media (max-width: 1023px) {
  .site-header .floating-buttons {
    display: none;
  }
}
.site-header .floating-buttons .close-buttons {
  position: absolute;
  top: -3rem;
  font-size: 5rem;
  display: flex;
  cursor: pointer;
}
.site-header .floating-buttons .for-you-btn {
  background: url(/wp-content/uploads/2024/01/Sticky-CTA-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 14rem;
  padding: 3rem 2.4rem 1rem 2rem;
}
.site-header .floating-buttons .for-you-btn h3 {
  margin: 0;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}
.site-header .floating-buttons .for-you-btn a {
  color: #fff;
  gap: 1rem;
  align-items: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-header .floating-buttons .for-you-btn a img {
  transform: rotate(90deg);
}
.site-header .floating-buttons .tools-btn {
  border-radius: 100px 0px 100px 100px;
  background: var(--line2, #D1C1AF);
  padding: 1rem 2rem;
}
.site-header .floating-buttons .tools-btn a {
  text-decoration: underline;
  display: flex;
  gap: 1rem;
}
.site-header .floating-buttons .tools-btn a:hover {
  text-decoration: none;
}

.faq-page {
  padding: 4rem 2rem 10rem;
}
.faq-page .faq-titles {
  text-align: center;
}
.faq-page .faq-titles h1, .faq-page .faq-titles h2 {
  margin: 0;
}
.faq-page .faq-titles h2 {
  font-weight: 400;
}
.faq-page .decor-title {
  margin-bottom: 4rem;
}
.faq-page ul.faq {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 10rem;
  margin: 0;
  border-radius: 20px;
  background: #F8F7F7;
  padding: 5rem 3rem;
}
@media (max-width: 1023px) {
  .faq-page ul.faq {
    grid-template-columns: repeat(1, 1fr);
  }
}
.faq-page ul.faq li.main-faq {
  position: relative;
}
.faq-page ul.faq li.main-faq:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #DFDFDF;
  width: 100%;
  margin-top: 3rem;
}
.faq-page ul.faq li.main-faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.faq-page ul.faq li.main-faq .question .title-icon {
  display: flex;
}
.faq-page ul.faq li.main-faq .question .plusminus {
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.faq-page ul.faq li.main-faq .question .plusminus.active:before {
  transform: translatey(-50%) rotate(-90deg);
  opacity: 0;
}
.faq-page ul.faq li.main-faq .question .plusminus.active:after {
  transform: translatey(-50%) rotate(0);
}
.faq-page ul.faq li.main-faq .question .plusminus:before, .faq-page ul.faq li.main-faq .question .plusminus:after {
  content: "";
  display: block;
  background-color: #D2232A;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.35s;
  width: 100%;
  height: 3px;
}
.faq-page ul.faq li.main-faq .question .plusminus:before {
  transform: translatey(-50%);
}
.faq-page ul.faq li.main-faq .question .plusminus:after {
  transform: translatey(-50%) rotate(90deg);
}
.faq-page ul.faq li.main-faq .answer {
  display: none;
}
.faq-page .btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
}
.faq-page .btn-wrapper a {
  text-align: center;
  border-radius: 50px;
  border: 1px solid #D2232A;
  padding: 1rem 2rem;
  width: 194px;
  font-size: 1.8rem;
  background: var(--gradint-red, linear-gradient(15deg, #ffb490 -2.9%, #f18477 5.74%, #d2232a 52.29%, #af1e24 115.04%));
  color: #fff;
}

.tools-page {
  padding: 4rem 2rem 10rem;
}
.tools-page .tools-titles {
  text-align: center;
}
.tools-page .tools-titles h1, .tools-page .tools-titles h2 {
  margin: 0;
}
.tools-page .tools-titles h2 {
  font-weight: 400;
}
.tools-page .decor-title {
  margin-bottom: 4rem;
}
.tools-page ul.tools {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 10rem;
  margin: 0;
  border-radius: 20px;
  background: #F8F7F7;
  padding: 5rem 3rem;
}
@media (max-width: 1023px) {
  .tools-page ul.tools {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tools-page ul.tools li.tools-item {
  position: relative;
}
.tools-page ul.tools li.tools-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #D2232A;
  text-decoration: underline;
  gap: 4rem;
}
.tools-page ul.tools li.tools-item a:hover {
  text-decoration: none;
}
.tools-page ul.tools li.tools-item a svg {
  display: flex;
}
.tools-page ul.tools li.tools-item:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #DFDFDF;
  width: 100%;
  margin-top: 3rem;
}
.tools-page .btn-wrapper {
  margin-top: 7rem;
  display: flex;
  justify-content: center;
}
.tools-page .btn-wrapper a {
  text-align: center;
  border-radius: 50px;
  border: 1px solid #D2232A;
  padding: 1rem 2rem;
  width: 194px;
  font-size: 1.8rem;
  background: var(--gradint-red, linear-gradient(15deg, #ffb490 -2.9%, #f18477 5.74%, #d2232a 52.29%, #af1e24 115.04%));
  color: #fff;
}/*# sourceMappingURL=style.css.map */