.d-wrapper {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-width: 1244px;
    margin: 0 auto;
    background: #000;
    position: relative;
}

.d-header {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    background: #000;
    padding-top: 10px;
    width: 100%;
    max-width: 1244px;
    color: #fff;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 1;
    position: fixed;
    top: 0;
    z-index: 999;
}

.d-header-logo {
    margin-left: 35px;
    opacity: 0;
}

.d-header-logo-icon {
    width: 100px;
    scale: 2;
}

.d-header-btn {
    background: #fff;
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 999px;
    font-size: 15px;
    text-align: center;
    padding: 8px 20px;
    transition: width 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    gap: 8px;
}

.d-logo {
    font-size: 32px;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
}

.d-logo-icon {
    width: 100%;
}

.d-title {
    font-size: 17px;
    color: #ececec;
    margin-top: 140px;
    margin-bottom: 40px;
    text-align:  center;
}

.d-subtitle {
    font-size: 17px;
    color: #ececec;
    margin-bottom: 28px;
}

.d-buttons-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.d-sticky-center {
    position: relative;
    min-height: 375vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.d-phones {
    position: sticky;
    top: calc(50dvh - var(--phone-h, 600px)/2);
    display:flex;
    justify-content:center;
}

.d-left-side-container {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.d-right-side-container {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

.d-phones img {
    display: block;
    max-height: 120dvh;
    height: auto;
    width: auto;
    max-width: 100%;
}

.d-side-scroll-section {
    padding: 20px;
    background: #242425;
    border-radius: 25px;
}

.d-side-scroll-text p {
    color: #8e8e93;
}

.d-btn {
    background: #fff;
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 999px;
    font-size: 15px;
    padding: 12px 20px;
    max-height: 48px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.3s ease;
    gap: 8px;
}

.d-btn-disabled {
    background: #1c1c1f;
    color: #6d6d72;
    border: none;
    font-weight: 600;
    border-radius: 999px;
    font-size: 15px;
    padding: 12px 20px;
    max-height: 48px;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.d-btn-icon {
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px;
    border-radius: 0 !important;
}

.d-soon {
    padding: 1px 4px;
    background-color: #fff;
    font-size: 11px;
    color: #000;
    border-radius: 4px;
}

.d-footer-buttons {
    width: 100%;
    position: relative;
    top: -35%;
}

.opacity-0 {
    opacity: 0;
    transition: all 0.3s ease;
}

.opacity-1 {
    opacity: 1;
    transition: all 0.3s ease;
}

.d-lottie-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

#d-lottie-img svg {
    width: 100%;
    max-width: 150px;
    height: 100%;
    max-height: 150px;
    display: block;
    position: absolute;
    top: 3%;
    left: -5%;
}

.img-fade {
    transition: opacity 200ms ease;
    opacity: 1;
}
.img-fade.is-hidden {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .img-fade {
        transition: none;
    }
}

@media (max-width: 767px) {
    .d-wrapper {
        display: none !important;
    }
}