.parallax-wrap{
    background-repeat: no-repeat;
    background-size: cover;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-position: center center;
    position: relative;

}
/* .parallax {
    overflow: hidden;
    position: absolute;
    width: 100vw;
    height: 95vh;
    top: 5vh;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    transition: height 0.3s ease, top 0.3s ease;
    z-index: 2;
} */

.main-section .box{
    position: relative;
    z-index: 4;
}
.main-section .dark-line{  
    top: 0px;
    left: 0px;
    background-color: rgba(31,40,48,0.94) ;
    height: 100vh;
    width: 10vw;
    z-index: 2;
    position: absolute;
    pointer-events: none;
}

h1{
    font-size: calc(3.375rem + 1.5vw) !important;;
}
.main-content{
    height: 100vh;
    z-index: 10;
    position: relative;
}
.animation-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%); 
    opacity: 0;
    transition: opacity 2s ease, transform 2s ease;
}

.animation-box.animate {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.main-content p{
    font-weight: 600 !important;
    color: white;
}
.dark-overlay{
    background-color: rgba(49, 62, 71, 0.8);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    height: 100vh;
    width: 100%;  
    pointer-events: none;
}
.main-section .theme-btn span{
    font-size: large;
}