

.logo-img {
    width: 35%;
}

.steps-img {
    margin-top: 10px;
    width: 50%;
}

.customize-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.tagline {
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Controls the fade effect */
}

.fade-in {
    opacity: 1;
}

.hide-btn {
    display: none;
}

.slide-container {
    position: relative;
    width: 50%;
    height: 300px; /* Adjust as needed */
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.step {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.active-step {
    left: 0;
    opacity: 1;
    pointer-events: all;
}

.hide-left {
    left: -100%;
    opacity: 0;
}

.hide-right {
    left: 100%;
    opacity: 0;
}

.hr-line {
    width: 50%;
}

.link-txt {
    text-decoration: none;
}

.example {
    opacity: 0.6;
    font-size: 15px;
}

.custom-footer {
    margin-top: 20px;
    display: none;
}

.newLink {
    margin-bottom: 30px;
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  
    .logo-img {
        width: 80%;
    }

    .customize-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .step-title {
        font-size: 15px;
    }

    .slide-container {
        position: relative;
        width: 100%;
        height: 340px; /* Adjust as needed */
        margin: 0;
        padding-top: 20px;
    }

    .tagline {
        font-size: 14px;
       
    }

    .hr-line {
        width: 80%;
    }

    .example {
        font-size: 13px;
    }

    .steps-img {
        width: 100%;
    }
}

/* Small devices (landscape phones, ≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo-img {
        width: 80%;
    }

    .customize-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .step-title {
        font-size: 15px;
    }

    .slide-container {
        position: relative;
        width: 100%;
        height: 270px; /* Adjust as needed */
    }

    .tagline {
        font-size: 14px;
       
    }

    .hr-line {
        width: 80%;
    }

    .example {
        font-size: 13px;
    }
}

/* Medium devices (tablets, ≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {

}