/**
 * USEWEB CMS — designer overrides
 *
 * Add non-destructive CSS here. Loaded last on the frontend so rules
 * in this file win over Theme Manager / core theme styles.
 *
 * Path: themes/{active-theme}/css/custom.css
 */
a {
  text-decoration: none !important;
}
@media (max-width: 640px) {
    .unp-pb-grid--cols-2, .unp-pb-grid--cols-3, .unp-pb-grid--cols-4, .unp-pb-grid--cols-5, .unp-pb-grid--cols-6 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* HEADER */
.unp-burger {
  border: none;
  border-radius: 0;
}
.unp-lang-switcher--inline .unp-lang-switcher__link.is-active {
  border-color: transparent;
  background: transparent;
  border-bottom-color: transparent;
}
.unp-lang-switcher--inline .unp-lang-switcher__link {
  opacity: 0.5 !important;
}
.unp-lang-switcher--inline .unp-lang-switcher__link.is-active {
  opacity: 1 !important;
}
.unp-lang-switcher {
  font-size: 1.2rem;
}
/* HEADER END */
/* OFF CANVAS */
nav.unp-offcanvas__nav {
  font-size: 2rem;
}
.unp-offcanvas[data-unp-nav-contrast="dark"] a {
  color: #6d6d6d;
}
.unp-offcanvas__close {
  border: none;
  font-size: 2.5rem;
  transition: 0.2s ease-in-out;
}
.unp-offcanvas__close:hover {
  color: #121212;
}
/* OFF CANVAS END */
/* PAGE CUSTOMIZATIONS */
.unp-lightbox__close {
  top: 0.6rem;
  right: 0.6rem;
}
.justify-me {
  text-align: justify;
}
/* PAGE CUSTOMIZATIONS END */
/* SLIDESHOW */
#unp-slider-about-us-slider-engb .unp-slider__content, #unp-slider-about-us-slider-elgr .unp-slider__content {
  justify-content: flex-end;
}
#unp-slider-about-us-slider-engb .unp-slider__btn, unp-slider-about-us-slider-elgr .unp-slider__btn {
  padding: 0;
  background: transparent;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
#unp-slider-about-us-slider-engb a.unp-slider__btn::before, unp-slider-about-us-slider-elgr a.unp-slider__btn::before {
  content: "";
  background-image: url(/storage/media/icons/scroll.png);
  background-repeat: no-repeat;
  background-position: top right;
  width: 34px;
  height: 36px;
  display: block;
  background-size: 34px;
}
/* SLIDESHOW END */

/* TIMELINE */

@media (max-width: 480px) {
  #timeline, .time-div {display: none;
  }
}
/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  --timeline-color: #c1c1c1;
  --timeline-accent: #b08d57;
  --timeline-accent-light: #d8c19a;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
  box-sizing: border-box;
}
/* =========================================================
   COMMON
   ========================================================= */
.timeline,
.timeline li,
.timeline li > div {
  box-sizing: border-box;
}
/* =========================================================
   DESKTOP / HORIZONTAL
   1360px AND ABOVE
   ========================================================= */
@media (min-width: 1360px) {
  /* -----------------------------------------------------
       TIMELINE CONTAINER
       ----------------------------------------------------- */
  .timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: 100%;
    height: 300px;
    padding: 0;
    overflow: visible;
  }
  /* -----------------------------------------------------
       HORIZONTAL TIMELINE LINE
       ----------------------------------------------------- */
  .timeline:before {
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--timeline-color);
    z-index: 1;
  }
  /* =====================================================
       TIMELINE ITEMS
       ===================================================== */
  .timeline li {
    position: relative;
    width: 100%;
    height: 300px;
    min-width: 0;
    margin: 0;
    padding: 0;
    counter-increment: timeline;
    box-sizing: border-box;
  }
  /* =====================================================
       CARDS
       ===================================================== */
  .timeline li > div {
    position: absolute;
    left: 50%;
    width: min(220px, 14rem);
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 16px 10px 16px 48px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--timeline-accent);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    color: #2c2c2c;
    text-align: left;
    transform: translateX(-50%);
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 3;
  }
  /* =====================================================
       TOP CARDS
       ===================================================== */
  .timeline li:nth-child(odd) > div {
    top: 25px;
  }
  /* =====================================================
       BOTTOM CARDS
       ===================================================== */
  .timeline li:nth-child(even) > div {
    top: 187px;
  }
  /* =====================================================
       HOVER
       ===================================================== */
  .timeline li:nth-child(odd) > div:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14), 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  .timeline li:nth-child(even) > div:hover {
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14), 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  /* =====================================================
       NUMBER
       ===================================================== */
  .timeline li > div:after {
    content: counter(timeline, decimal-leading-zero);
    position: absolute;
    top: 50%;
    left: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(176, 141, 87, 0.45);
    border-radius: 50%;
    background: #ffffff;
    color: var(--timeline-accent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    z-index: 7;
  }
  /* =====================================================
       CARD → TIMELINE CONNECTOR
       ===================================================== */
  .timeline li > div:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 37px;
    margin: 0;
    padding: 0;
    background: var(--timeline-accent);
    border: 0;
    box-shadow: none;
    transform: translateX(-50%);
    z-index: 2;
  }
  /* -----------------------------------------------------
       TOP CARD CONNECTOR
       CARD
         |
         |
         |
         ●
       ----------------------------------------------------- */
  .timeline li:nth-child(odd) > div:before {
    top: 100%;
  }
  /* -----------------------------------------------------
       BOTTOM CARD CONNECTOR
         ●
         |
         |
         |
       CARD
       ----------------------------------------------------- */
  .timeline li:nth-child(even) > div:before {
    bottom: 100%;
  }
  /* =====================================================
       HORIZONTAL BULLETS
       ===================================================== */
  .timeline li:after {
    content: "";
    position: absolute;
    top: 150px;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--timeline-accent);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    z-index: 6;
  }
}
/* =========================================================
   TABLET + MOBILE
   VERTICAL
   BELOW 1360px
   ========================================================= */
@media (max-width: 1359px) {
  /* -----------------------------------------------------
       TIMELINE CONTAINER
       ----------------------------------------------------- */
  .timeline {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  /* -----------------------------------------------------
       CENTRAL VERTICAL LINE
       ----------------------------------------------------- */
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--timeline-color);
    transform: translateX(-50%);
    z-index: 1;
  }
  /* =====================================================
       ITEMS
       ===================================================== */
  .timeline li {
    position: relative;
    display: block;
    width: 50%;
    height: auto;
    min-width: 0;
    margin: 0 !important;
    padding: 0 40px 60px 0;
    counter-increment: timeline;
    box-sizing: border-box;
  }
  /* -----------------------------------------------------
       LEFT ITEMS
       1, 3, 5, 7
       ----------------------------------------------------- */
  .timeline li:nth-child(odd) {
    margin-left: 0 !important;
    padding-left: 0;
    padding-right: 40px;
  }
  /* -----------------------------------------------------
       RIGHT ITEMS
       2, 4, 6, 8
       ----------------------------------------------------- */
  .timeline li:nth-child(even) {
    margin-left: 50% !important;
    padding-left: 40px;
    padding-right: 0;
  }
  /* =====================================================
       VERTICAL CARDS
       ===================================================== */
  .timeline li > div {
    position: relative;
    width: 100%;
    min-height: 84px;
    display: flex;
    align-items: center;
    padding: 18px 16px 18px 56px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--timeline-accent);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: #2c2c2c;
    text-align: left;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 3;
  }
  /* =====================================================
       HOVER
       ===================================================== */
  .timeline li > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14), 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  /* =====================================================
       NUMBER
       ===================================================== */
  .timeline li > div:after {
    content: counter(timeline, decimal-leading-zero);
    position: absolute;
    top: 50%;
    left: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(176, 141, 87, 0.45);
    border-radius: 50%;
    background: #ffffff;
    color: var(--timeline-accent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    z-index: 7;
  }
  /* =====================================================
       VERTICAL CONNECTORS
       IMPORTANT:
       Keep 40px on ALL screen sizes below 1360px.
       ===================================================== */
  .timeline li > div:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    margin: 0;
    padding: 0;
    background: var(--timeline-accent);
    border: 0;
    box-shadow: none;
    transform: translateY(-50%);
    z-index: 2;
  }
  /* -----------------------------------------------------
       LEFT CARDS
       CARD ─────────────────●
       ----------------------------------------------------- */
  .timeline li:nth-child(odd) > div:before {
    left: 100%;
    margin-left: 0;
  }
  /* -----------------------------------------------------
       RIGHT CARDS
       ●───────────────── CARD
       ----------------------------------------------------- */
  .timeline li:nth-child(even) > div:before {
    left: 0;
    margin-left: -40px;
  }
  /* =====================================================
       VERTICAL BULLETS
       ===================================================== */
  .timeline li:after {
    content: "";
    position: absolute;
    top: 42px;
    width: 16px;
    height: 16px;
    margin: 0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--timeline-accent);
    box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
    transform: translateY(-50%);
    box-sizing: border-box;
    z-index: 6;
  }
  /* -----------------------------------------------------
       LEFT BULLET
       ----------------------------------------------------- */
  .timeline li:nth-child(odd):after {
    left: 100%;
    transform: translate(-50%, -50%);
  }
  /* -----------------------------------------------------
       RIGHT BULLET
       ----------------------------------------------------- */
  .timeline li:nth-child(even):after {
    left: 0;
    transform: translate(-50%, -50%);
  }
  /* -----------------------------------------------------
       LAST ITEM
       ----------------------------------------------------- */
  .timeline li:last-child {
    padding-bottom: 0;
  }
}
/* =========================================================
   TABLET
   768px - 1359px
   ========================================================= */
@media (min-width: 768px) and (max-width: 1359px) {
  .timeline {
    padding-left: 25px;
    padding-right: 25px;
  }
  .timeline li > div {
    min-height: 84px;
    font-size: 17px;
  }
}
/* =========================================================
   MOBILE
   BELOW 767px
   ========================================================= */
@media (max-width: 767px) {
  .timeline {
    padding: 20px 0;
  }
  /* -----------------------------------------------------
       ITEMS
       ----------------------------------------------------- */
  .timeline li {
    padding-right: 25px;
    padding-bottom: 45px;
  }
  .timeline li:nth-child(even) {
    padding-left: 40px;
    padding-right: 0;
  }
  /* -----------------------------------------------------
       CARDS
       ----------------------------------------------------- */
  .timeline li > div {
    min-height: 76px;
    padding: 15px 12px 15px 48px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.35;
  }
  /* -----------------------------------------------------
       NUMBERS
       ----------------------------------------------------- */
  .timeline li > div:after {
    left: 12px;
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  /*
       IMPORTANT:
       Connector remains 40px so it always reaches
       the center line.
    */
  .timeline li > div:before {
    width: 40px;
  }
  .timeline li:nth-child(even) > div:before {
    margin-left: -40px;
  }
  /* -----------------------------------------------------
       BULLETS
       ----------------------------------------------------- */
  .timeline li:after {
    top: 38px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
}
/* =========================================================
   VERY SMALL PHONES
   BELOW 480px
   ========================================================= */
@media (max-width: 480px) {
  .timeline {
    padding: 20px 10px;
  }
  /* -----------------------------------------------------
       ITEMS
       ----------------------------------------------------- */
  .timeline li {
    padding-right: 18px;
    padding-bottom: 35px;
  }
  .timeline li:nth-child(even) {
    padding-left: 18px;
    padding-right: 0;
  }
  /* -----------------------------------------------------
       CARDS
       ----------------------------------------------------- */
  .timeline li > div {
    min-height: 72px;
    padding: 13px 10px 13px 44px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.35;
  }
  /* -----------------------------------------------------
       NUMBERS
       ----------------------------------------------------- */
  .timeline li > div:after {
    left: 10px;
    width: 24px;
    height: 24px;
    font-size: 9px;
  }
  /* -----------------------------------------------------
       CONNECTORS
       IMPORTANT:
       Still 40px.
       ----------------------------------------------------- */
  .timeline li > div:before {
    width: 40px;
  }
  .timeline li:nth-child(even) > div:before {
    margin-left: -40px;
  }
  /* -----------------------------------------------------
       BULLETS
       ----------------------------------------------------- */
  .timeline li:after {
    top: 36px;
    width: 13px;
    height: 13px;
    border-width: 3px;
  }
}
/* TIMELINE END */
/* ARROW DOWN */
#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
}
.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 38px;
}
.arrow-down:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #5b5b5b;
  border-right: 2px solid #5b5b5b;
  behavior: url(-ms-transform.htc);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #5b5b5b;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#scroll-down::before {
  -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Safari 4+ */
  -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Fx 5+ */
  -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Opera 12+ */
  animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
  /* IE 10+, Fx 29+ */
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 90px;
  background: #8f8f8f;
  content: " ";
}
@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
#paschka {
  display: block;
  color: white;
  font-family: helvetica neue, helvetica, arial;
  font-size: 32px;
  text-decoration: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 0px;
  transition: all 0.1s ease;
  background: #000;
  height: 40px;
  line-height: 30px;
  vertical-align: middle;
  width: 40px;
  text-align: center;
  border-radius: 5%;
  bottom: 20px;
  right: 20px;
  &:hover {
    background: #232323;
    transition: all 0.1s ease;
    color: #f0f0f0;
  }
}
@media (max-width: 767px) {
  .next-please {
    display: none;
  }
}
@media (min-width: 768px) {
  .next-please {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
}
/* ARROW DOWN END */

/* FOOTER */
.unp-modules.unp-modules--footer a {
    color: aliceblue;
}
/* FOOTER END */

/* CAPTCHA */
.subtitle-elements h3 {margin: 0 0 1rem;}
.unp-form__input, .unp-form__textarea, .unp-captcha__input {
    border-radius: 0;
    padding: 0.4rem 0.45rem;
}
.unp-captcha__stage {
    max-width: 260px;
}
.unp-captcha {
    border-radius: 0;
}
/* CAPTCHA END */