#main-wrapper {
    background-color: #FFE0D8;
    height: 90vh;
}

.active {
    font-weight: bold;
}

.content {
    overflow: hidden;
}

.page-container {
    display: flex;
    width: 100%;
}

.page {
    flex: 0 0 100%;
    height: 45vh;
    /* Each page takes up the full width */
}

.vh-45 {
    height: 45vh;
}

.info-box {
    padding: 2rem 1rem;
    background-color: #FCFCFC;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    box-shadow: 0px 1px 14px 0px #00000024;
    position: sticky;
    height: 55vh;
    width: 100%;
    z-index: 10;

}

.info-box__dark {
    padding: 2rem 1rem;
    background-color: #231D3A;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    position: sticky;
    height: 55vh;
    width: 100%;
    z-index: 10;

}

.info-box__text {
    font-size: 1rem;
    text-align: right;
    color: #282142;
    font-weight: 500;
    direction: rtl;
    height: 12vh;

}

.info-box__text__dark {
    font-size: 1rem;
    text-align: right;
    color: #FFF;
    font-weight: 500;
    direction: rtl;
    height: 12vh;
}

.info-box__text span,
.info-box__text__dark span {
    color: #FF6B43;
    font-weight: 600;
}

.prevNextButtons {
    display: inline-block;
    border: 1.15px solid #FF6B43;
    width: 240px;
    height: 70px;
    border-radius: 27px;
    padding: .2rem;
}

.prevNextButtons__disable {
    display: none;
    transition: .3s ease-out;
}

#nextBtn {
    display: block;
    cursor: pointer;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #FF6B43;
    color: #FCFCFC;
    text-decoration: none;
    text-align: center;
    padding: 1.3rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.active-dot-pagination {
    display: inline-block;
    width: 30px;
    height: 10px;
    opacity: 1;
    background: #FF6B43;
    border-radius: 25px;
    transition: .3s ease-in;
}

.dot-pagination {
    display: inline-block;
    width: 10px;
    height: 10px;
    opacity: 0.60;
    background: #FF6B43;
    border-radius: 25px;
    transition: .1s ease-out;
}

.signup-bottom {
    width: 150px;
    height: 50px;
    border-radius: 18px;
    background-color: #FFF;
    box-shadow: 0px 7px 7px 0px #00000002;
    padding: 1rem;
    margin-top: 1.2rem;
    text-align: center;
    font-size: .8rem;
}

.signup-bottom a {
    text-decoration: none;
    color: #FF6B43;
}

.signup-bottom__third {
    width: 264px;
    height: 67.29px;
    top: 742px;
    left: 83px;
    border-radius: 23.29px;
    border: 1px solid #FF6B43;
    padding: 1rem;
    text-align: center;
}

.signup-bottom__third-dark {
    width: 264px;
    height: 67.29px;
    top: 742px;
    left: 83px;
    border-radius: 23.29px;
    background-color: #FF6B43;
    padding: 1rem;
    text-align: center;
}

.signup-bottom__third a {
    font-size: 1.3rem;
    text-decoration: none;
    color: #FF6B43;
}

.signup-bottom__third-dark a {
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
}

@media screen and (min-width: 444px){
    .info-box__text, .info-box__text__dark {
        font-size: 1.3rem;
        height: 15vh;
    }

    .prevNextButtons {
        width: 280px;
        height: 80px;
    }

    #nextBtn {
        font-size: 1.25rem;
    }

    .signup-bottom {
        width: 200px;
        height: 60px;
    }

    .signup-bottom a {
        font-size: 1rem;
    }

    .signup-bottom__third {
        width: 280;
        height: 75px;
        padding: 1.2rem;
    }
    
    .signup-bottom__third-dark {
        width: 280px;
        height: 75px;
        padding: 1.2rem;
    }
    
    .signup-bottom__third a {
        font-size: 1.5rem;
    }
    
    .signup-bottom__third-dark a {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 800px){
    .info-box__text, .info-box__text__dark {
        font-size: 1rem;
        height: 15vh;
    }

    .prevNextButtons {
        width: 260px;
        height: 70px;
    }

    #nextBtn {
        font-size: .95rem;
    }

    .signup-bottom {
        width: 200px;
        height: 60px;
    }

    .signup-bottom a {
        font-size: .8rem;
    }

    .signup-bottom__third, .signup-bottom__third-dark {
        width: 260;
        height: 60px;
        padding: .8rem;
    }
    
    .signup-bottom__third a, .signup-bottom__third-dark a {
        font-size: 1.2rem;
    }
    
}