/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 25 2025 | 17:10:03 */
.has-intro-animation header.header {
    top: -120px;      
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.6s ease;   
}
.has-intro-animation header.header.header-show {
    top: 0;          
    opacity: 1;
}
.has-intro-animation a.burger {
    top: -120px;
    opacity: 0;
    transition: all 0.6s ease;
}
.has-intro-animation a.burger-show {
    top: 18px;
    opacity:1;
}
.orts_small_dot {
    width: 16px;
    height: 16px;
    margin-bottom: 23px;
    background: #1F1E21;
    border-radius: 50px;
} 


.intro-wrapper {
    width: 100vw;
    height: 100svh;
    background: #EFE9E1; /* will be overridden to black on load then animated to this */
    transition: background 0.9s ease;
/*     position: relative; */
    position: sticky;
    top: 0; 
    overflow: hidden;
}

.intro-inner {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 30px 0 0 18px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}

/* ---------- BIG DOT (80vh) ---------- */
.big-dot {
    position: absolute;
    width: 80vh;               /* as requested */
    height: 80vh;
    max-width: 1200px;         /* prevent ridiculous oversize on ultra-tall screens */
    max-height: 1200px;
    border-radius: 50%;
    background: #000;
    will-change: left, top, transform, background-color, opacity;
    /* We'll set left/top from JS. Keep vertical centering using translateY(-50%) */
    left: 50%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    z-index: 30;
    opacity: 0;
    transition:
        left 3.6s cubic-bezier(.22,.9,.33,1),
        top 3.6s cubic-bezier(.22,.9,.33,1),
        transform 3.6s cubic-bezier(.22,.9,.33,1),
        background-color 0.9s ease,
        opacity 0.6s ease;
}

/* When we animate to final (applied from JS) we set left/top/transform etc. */

/* ---------- Logo row & small-dot (from your code) ---------- */
.logo-row{
    position: relative;
    display: flex;
    align-items: top;
/*    gap: 18px;*/
/*     z-index: 40; */
}

/* Logo initial state: will come from left with fade */
.logo-img{
/*    height: 160px;*/  
    width: 100%;
    max-width: 1145px;
    display: block;
/*    transform: translateX(-800px);*/  
    opacity: 0; 
    transform: none;
    transition: opacity 3.4s ease; 
/*    transition: transform 3.6s cubic-bezier(.22,.9,.33,1), opacity 3.6s ease;*/
}

/* when added .show-logo -> visible in place */
.logo-img.show-logo{
/*    transform: translateX(0);*/
    opacity: 1;
    transform: none;
}

/* small dot (target) */
span.small-dot {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: transparent;
    vertical-align: top;
    margin-left: 40px;
    border-radius: 50px;
/*     z-index: 45; */
    position: relative; /* keeps it in flow */
}

/* ---------- Text & scroll cue (same layout, fade-in later) ---------- */
.intro_text_new {
    max-width:930px;
    padding-left: 120px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.9s ease, transform 0.9s ease;
/*     z-index: 40; */
}

.intro_text_new.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-cue {
    padding-left: 120px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.9s ease, transform 0.9s ease;
/*     z-index: 40; */
}

.scroll-cue.show {
    opacity: 1;
    transform: translateY(0);
}
.intro_text_new p {
    font-size:22px;
    line-height:29px;
    font-weight:400;
    color: #2F2F2F;
    margin-bottom: 0;
} 
.scroll-cue p {
    font-size: 14px;
    line-height: 26px;  
    font-weight: 500;
    color: #1F1E21;
    margin-bottom: 0;
}
span.scroll-line {
    height: 54px;
    width: 1px;
    display: inline-block;
    background: #7B7B7B;
    margin-top: 9px;
    transform-origin: top;
    animation: expandLine 2s 
ease-in-out infinite;
} 
@keyframes expandLine {
0% {
    transform: scaleY(0);
    opacity: 0.5;
}
50% {
    transform: scaleY(1);
    opacity: 1;
}
100% {
    transform: scaleY(0);
    opacity: 0.5;
}
}
@media (min-width: 1440px) {
/*.intro_text_new {
    padding-top: 189px;
    padding-bottom: 248px
}*/
}
@media (max-height: 600px) {
  .big-dot { 
    width: 75vh; 
    height: 75vh; 
  }
}

@media (max-width: 1440px) {
.logo-img {
  width: 80%;
}
}
@media (max-width: 767px) { 
.orts_small_dot {
    margin-bottom: 14px;  
}
  span.small-dot {
    margin-left: 20px;
    width: 14px;    
    height: 14px;
  }
  .logo-img {
    max-width: 310px;
    height: 38px;
    width: calc(100% - 34px);
  }
  .intro-inner {
    padding: 16px 20px 0 19px;
  }
  .intro_text_new, .scroll-cue {
    padding-left: 0;
  }
  .intro_text_new p {
    font-size: 19px;
    line-height: 26px;
    color: #1F1E21;
  }
}