:root {
    --content-width: 1050px;
    --scroll-offset: 100px;
    --space-gap: 125px;
}

.hide-on-la {
	display: var(--hide-on) !important;
}



.page {
    gap: var(--space-gap);
}



.first {
    background:
    radial-gradient(
      75% 75% at 20% 20%,
      #EA4359 0%,
      rgba(234,67,89,0.85) 35%,
      rgba(234,67,89,0.25) 60%,
      transparent 80%
    ),
    radial-gradient(
      75% 75% at 70% 30%,
      #25F4EE 0%,
      rgba(37,244,238,0.85) 35%,
      rgba(37,244,238,0.25) 60%,
      transparent 80%
    );
  background-repeat: no-repeat;
}

.head-line {
    width: var(--content-width);
    padding-top: 25px;
    padding-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    border-bottom: 0.5px solid rgba(0,0,0,0.7);
}

.odb-logo {
    width: 150px;
    height: 23px;  
    mask: url(/-/components/navigation/img/logo--l.svg) center center / contain no-repeat;
    -webkit-mask: url(/-/components/navigation/img/logo--l.svg) center center / contain no-repeat;
    background-color: rgba(0,0,0,0.65);
    transition: 0.25s ease-out;
}

body.hasHover .odb-logo:hover {
    background-color: rgba(0,0,0,1);
}

.odb-links {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.odb-link {
    font: 16px/1 "sf regular";
    text-decoration: none;
    color: rgba(0,0,0,0.7);
    transition: 0.25s ease-out;
}

body.hasHover .odb-link:hover {
    color: rgba(0,0,0,1);
}



.phone {
  margin: 30px auto 0 auto;
  width: 260px;
  height: 460px;
}

.phone-video {
  width: 240px;
  aspect-ratio: 16 / 19;
  position: relative;
  display: inline-block;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: transparent;
  left: 10px;
  top: -8px;
}
.phone-video > video {
  width: 100%;
  height: 100%;
  display: block;
}

.pv-preloader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 8px;
  background: linear-gradient(to bottom, rgba(255,255,255,.0), rgba(0,0,0,.05));
  transition: opacity .25s ease, visibility .25s ease;
}
.pv-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pv-bar {
  width: 80%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}
.pv-fill {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255,255,255,.95);
  animation: pv-sweep 1.2s infinite linear;
  will-change: transform;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 15%, black 85%, transparent 100%);
}

@keyframes pv-sweep {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(160%); }
}

.pv-preloader[data-state="determinate"] .pv-fill {
  animation: none;
  transition: width .15s linear;
}



.main-message {
    width: fit-content;
    margin: -124px auto calc(var(--space-gap) / 1.5) auto;
    padding: 5px 50px 25px 50px;
    border-radius: 35px;
    text-align: center;
}

.title {
    font: 34px/1.45 "druk";
    color: #000000;
}

.title-select {
    color: #EA4359;
}

.subtitle {
    font: 26px/1.45 "sf thin";
    color: #000000;
    margin-top: -8px;
}

.subtitle2 {
    font: 16px/1.45 "sf bold";
    color: #444444;
    margin-top: 8px;
}

.main-button {
    width: 195px;
    height: 48px;
    margin: 0 auto calc(var(--space-gap) / 1.5) auto;
    border-radius: 5px;
    padding-top: 2px;
    background: #EA4359;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-out;
}

body.hasHover .main-button:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.main-button-link {
    font: 16px/1 "SF bold";
    color: #ffffff;
    text-decoration: none;
}



.photos-line {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.photo-line {
    width: 410px;
    height: 250px;
    border-radius: 2px;
    object-fit: cover;
}

.photos-marquee {
  --gap: 10px;
  --speed: 50s;
  --img-w: 410px;
  --img-h: 250px;

  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0, black 6rem, black calc(100% - 6rem), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6rem, black calc(100% - 6rem), transparent 100%);
}

.photos-track {
  display: inline-flex;
  gap: var(--gap);
  will-change: transform;
  animation: photos-scroll var(--speed) linear infinite;
}

.photo-line {
  width: var(--img-w);
  height: var(--img-h);
  border-radius: 2px;
  object-fit: cover;
  flex: 0 0 auto;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .photos-track { animation: none; }
}

@keyframes photos-scroll {
  to { transform: translateX(-50%); }
}

.photo-line{cursor:zoom-in}

.lb-overlay{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(25px); -webkit-backdrop-filter:blur(25px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, visibility 0s linear .18s;
}

.lb-overlay.is-open{
  opacity:1; visibility:visible; pointer-events:auto;
  transition:opacity .18s ease;
}

.lb-stage{
  position:relative; max-width:90vw; max-height:90vh;
  display:flex; align-items:center; justify-content:center;
}

.lb-img{
  max-width:90vw; max-height:90vh; object-fit:contain; border-radius:4px;
  cursor:zoom-out; user-select:none; -webkit-user-drag:none;
  transform:scale(.985); opacity:0;
  transition:transform .18s ease, opacity .18s ease;
}

.lb-overlay.is-open .lb-img{
  transform:scale(1); opacity:1;
}

.lb-btn{
  position:fixed; z-index:10000; width:44px; height:44px; border:none; border-radius:999px;
  background:rgba(0,0,0,0.35); color:#fff; font-size:22px; line-height:44px;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  opacity:.92; transition:opacity .18s ease;
}

.lb-btn:hover{opacity:1}
.lb-prev{left:20px; top:50%; transform:translateY(-50%)}
.lb-next{right:20px; top:50%; transform:translateY(-50%)}
.lb-close{top:20px; right:20px; font-size:20px}



.second {
    display: flex;
    flex-direction: column;
    margin-top: calc(var(--space-gap) * -1);
}

.tiktok-bg{
  position: relative;
  overflow: hidden;
  background:#ffffff;
  isolation:isolate;
  --tik1:#EA4359;
  --tik2:#25F4EE;


  --balls: 12;
  --balls-per-100k: 0;
  --balls-min: 5;

  --rmin: 0.05;
  --rmax: 0.25;
  --speed-min: 0.05;
  --speed-max: 0.95;
}

.tiktok-bg .tg-canvas{
  position:absolute; inset:0;
  z-index:1;
  pointer-events:none;
}

.tiktok-bg::after{
  content:"";
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.95' numOctaves='2' seed='9'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .02 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:240px 240px;
  mix-blend-mode:soft-light;
  opacity:.25;
  z-index:2;
  pointer-events:none;
}

@media (prefers-reduced-motion: reduce){
  .tiktok-bg::after{ opacity:.15; }
}

.tiktok-bg.edge-fade{
  --fade-top: 100px;
  --fade-bottom: 100px;
}

.tiktok-bg.edge-fade::before{
  content:"";
  position:absolute; inset:0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      #ffffff 0, #ffffff 2px, rgba(255,255,255,0) var(--fade-top)),
    linear-gradient(to top,
      #ffffff 0, #ffffff 2px, rgba(255,255,255,0) var(--fade-bottom));
}

.feedbacks {
  width: calc(var(--content-width) - 50px);
  margin: auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
    z-index: 4;
}

.h2-title {
    font: 24px/1 "SF bold";
    color: #000000;
    text-align: center;
    margin: calc(var(--space-gap) * 0.85) auto calc(var(--space-gap) / 2) auto;
}

.feedback-space {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 55px;
  place-items: center;
  margin: auto;
  width: fit-content;
}

.feedback {
  width: 300px;
  height: 145px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: rgba(0,0,0,0.2);
  transition: 0.1s ease-in;
}

body.hasHover .feedback:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px #ffffff;
}

.feedback-text {
    font: 16px/1.5 "SF medium";
    color: #000000;
    z-index: 3;
}

.feedback-text-hl {
  color: #000000;
  font: 16px/1.5 "SF bold";
}

.feedback-user {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    align-items: center;
}

.feedback-user-info {
  display: flex;
  flex-direction: column;
  align-content: end;
  gap: 3px;
}

.feedback-userpic {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    object-fit: cover;
}

.feedback-username {
    padding-top: 4px;
    font: 13px/1 "SF regular";
    color: #000000;
}

.feedback-user-during {
  font: 12px/1 "SF bold";
  color: #e78045;
}



.why {
    width: 100%;
    z-index: 4;
}

.why > .h2-title {
  padding: 10px 0 50px 0;
}

.why-space {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    padding-bottom: 25px;
}

.reason {
    width: fit-content;
    height: fit-content;
    border: solid 4px #25F4EE;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 15px 25px 25px 25px;
    position: relative;
    box-sizing: border-box;
    
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(50px);
    
    transition: 0.1s ease-in;
}

.reason::after{
  content:"";
  position: absolute;
  top: -7px;
  left: -7px;
  right: -1px;
  bottom: -1px;
  border: 4px solid #EA4359;
  border-radius: 17px 17px 12px 12px;
  pointer-events: none;
  z-index: -1;
}

body.hasHover .reason:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px #ffffff;
}

.reason-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.reason-text {
  font: 22px/1.4 "druk";
  padding-left: 55px;
}

.reason:nth-child(1) {
  margin-left: 35px;
}
.reason:nth-child(2) {
  margin-top: 25px;
}
.reason:nth-child(3) {
  margin-top: 25px;
  margin-right: 45px;
}
.reason:nth-child(4) {
  margin-top: 45px;
}



.third {
  display: flex;
  flex-direction: column;
  gap: 55px;
  margin-top: calc(var(--space-gap) * 0.5);
  
  background:
    radial-gradient(
      95% 30% at 5% 25%,
      #25F4EE 0%,
      rgba(37,244,238,0.85) 35%,
      rgba(37,244,238,0.25) 60%,
      transparent 80%
    ),
    radial-gradient(
      70% 30% at 95% 65%,
      #25F4EE 0%,
      rgba(37,244,238,0.85) 35%,
      rgba(37,244,238,0.25) 60%,
      transparent 80%
    );
  background-repeat: no-repeat;
}

:root {
  --base-sticky-top: 0px;
  --step-sticky-top: 79px;
}

.include {
  margin: auto;
  position: sticky;
}

.include1 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 0);
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 8px;
  text-underline-offset: 4px;
}
.include2 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 1);
}
.include3 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 2);
}
.include4 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 3);
}
.include5 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 4);
}
.include6 {
  top: calc(var(--base-sticky-top) + var(--step-sticky-top) * 5);
}

.include-title {
  width: calc(var(--content-width) - 200px);
  font: 28px/1.4 "druk";
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}
.include-title2 {
  width: calc(var(--content-width) - 200px);
  font: 28px/1.4 "druk";
  color: #000000;
  text-align: center;
  padding: 20px 0;
  margin-top: var(--space-gap);
}
.include-title-back1 { background: #EA4359; }
.include-title-back2 { background: #000000; }
.include-title-back3 { background: #25F4EE; }

.include-pic {
  object-fit: contain;
  width: auto;
  height: 400px;
  margin-bottom: -65px;
}


.s4, .s5 {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.s4 > .h2-title {
  margin: calc(var(--space-gap) / 6) auto calc(var(--space-gap) * 0.9) auto;
}

.s5 > .h2-title {
  margin: calc(var(--space-gap) / 3) auto calc(var(--space-gap) * 0.7) auto;
}

.s6 > .h2-title {
  margin: calc(var(--space-gap) * -0.01) auto calc(var(--space-gap) * 0.4) auto;
}

.h2subtitle {
  width: calc(var(--content-width) - 50px);
  margin: auto;
  text-align: center;
  font: 17px/1 "sf light";
  color: #000000;
  margin-top: 10px;
}



.step {
  margin: auto;
  width: calc(var(--content-width) - 250px);
  display: flex;
  flex-direction: column;
}

.step + .step {
  margin-top: 35px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: solid 4px #25F4EE;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-items: center;
  z-index: 2;
}

.s-number {
  width: 100%;
  font: 26px/1 "druk";
  color: #000000;
  text-align: center;
}

.step-info {
  margin-left: 25px;
  margin-top: -35px;
  background: #25F4EE;
  border-radius: 35px;
  padding: 35px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-info-top {
  margin-left: 25px;
  margin-top: -35px;
  background: #25F4EE;
  border-radius: 35px 35px 0 0;
  padding: 35px 50px;
}

.step-info-bottom {
  margin-left: 25px;
  margin-top: -5px;
  background: #25F4EE;
  border-radius: 0 0 35px 35px;
  padding: 35px 50px;
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}

.step-info-text-copy {
  background: #000000;
  padding: 8px 20px 6px 20px;
  font: 12px/1 "sf regular";
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 6px;
  color: #ffffff;
  transition: 0.25s ease-out;
}

body.hasHover .step-info-text-copy:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.googlemap > iframe {
  width: calc(100% - 25px);
  height: 350px;
  margin-left: 25px;
}

.step-title {
  font: 26px/1 "druk";
  color: #000000;
}

.step-info-text {
  font: 22px/1 "sf light";
  color: #000000;
}



.s6 {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    
    background:
      radial-gradient(
        75% 75% at 20% 110%,
        #EA4359 0%,
        rgba(234,67,89,0.85) 35%,
        rgba(234,67,89,0.25) 60%,
        transparent 80%
      ),
      radial-gradient(
        75% 75% at 70% 70%,
        #25F4EE 0%,
        rgba(37,244,238,0.85) 35%,
        rgba(37,244,238,0.25) 60%,
        transparent 80%
      );
    background-repeat: no-repeat;
}

#telegram {
  margin: auto;
  width: calc(var(--content-width) - 250px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 35px 0 45px 0;
}

.contact-form-group {
  display: flex;
  flex-direction: row;
  justify-items: center;
  gap: 30px;
  margin: auto;
}
.group-line {
  display: flex;
  flex-direction: row;
  justify-items: center;
  gap: 20px;
  margin: auto;
}

.contact-form-title {
    color: #000000;
    font: 20px/1.4 "SF regular";
}

.contact-form-title-required {
    color: #ff0000;
}

.contact-form-input {
    font: 16px/1 "SF regular";
    color: #000000;
    background: rgba(255,255,255,0.35);
    padding: 5px 10px;
    outline: none;
    border: 3px solid #c2c2c2;
    border-radius: 6px;
    transition: 0.25s ease;
}

.contact-form-input:focus {
    border: 3px solid #EA4359;
}

.input-small {
    width: 50px;
}

.input-medium {
    width: 154px;
}

.input-long {
    width: 258px;
}

.input-large {
    width: 570px;
    height: 65px;
}

.contact-form-button-space {
    cursor: pointer;
}

.contact-form-button {
    width: 195px;
    height: 48px;
    margin: auto;
    border-radius: 5px;
    padding-top: 2px;
    background: #EA4359;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease-out;
    
    font: 16px/1 "SF bold";
    color: #ffffff;
    text-decoration: none;
    
    border: 0;
}

body.hasHover .contact-form-button:hover {
    transform: scale(1.04);
    cursor: pointer;
}

.contact-form-note {
    color: #888888;
    font: 13px/1.4 "SF regular";
    padding-left: 5px;
}



.footer-space {
  display: flex;
  flex-direction: column;
  margin: var(--space-gap) auto 0 auto;
  width: var(--content-width);
  padding-top: 25px;
  padding-bottom: 5px;
  border-top: 0.5px solid rgba(0,0,0,0.5);
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-column {
  width: 200px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-column:first-child {
  padding-right: 80px;
}

.footer-column:not(:first-child) {
  padding-top: 50px;
}

.odb-adress {
  color: #343434;
  font: 18px/1.4 "SF bold";
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}




.footer-bottom-content-labe-space {
    margin: 30px 0px 5px 10px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-bottom-content-copyright {
  color: #b1b1b1;
  font: 14px/1.4 "SF regular";
  margin: 35px 0 20px 0;
}



.thankyou-space {
  width: var(--content-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 85px 0 65px 0;
  text-align: center;
}

.thankyou-title {
  color: #EA4359;
  font: 36px/1 "sf_r bold";
}

.thankyou-message {
  width: 400px;
  margin: auto;
  color: #222222;
  font: 20px/1.45 "sf regular";
}

.thanyou-suggest-title {
  text-align: center;
  color: #222222;
  font: 26px/1 "sf_r bold";
}

.thanyou-suggest {
  width: var(--content-width);
  margin: auto;
  display: flex;
  flex-direction: row;
}

.thankyou-link {
  margin: auto;
  width: 240px;
  padding: 25px 30px;
  text-decoration: none;
  transition: 0.2s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

body.hasHover .thankyou-link:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.thankyou-link > .icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.thankyou-link > .title {
  color: #222222;
  font: 22px/1 "sf bold";
  padding-top: 12px;
  text-align: center;
}

.thankyou-link > .desc {
  color: #555555;
  font: 16px/1.45 "sf regular";
  text-align: center;
  padding: 0 20px;
}

.thankyouspacer {
  margin-top: 105px;
}