.slide-in-right {
    -webkit-animation: slide-in-right 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-right 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.web-landing-content {
    /* width: 45%; */
    padding: 4rem 2rem 0rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.8);  */
    display: flex;
    justify-content: end;
    align-items: center;
    z-index: 10;
}

.web-landing-content-lg {
    width: 45%;
    padding: 4rem 2rem 0rem 2rem;
}

.web-landing-content-lg-demo {
    width: 45%;
    padding: 4rem 2rem 0rem 2rem;
}

.form-div {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#webLandingContent h4, label {
    color: var(--secondary-color);
}

#webLandingContent input::placeholder {
    color: var(--secondary-color);
}

#webLandingContent label {
    font-size: 15px;
}

.success-sec {
    color: green;
    display: none;
}

.error-sec {
    color: red;
    display: none;
}

.qtn-btn {
    color: var(--contrast-color);
    background: #15222be6;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 8px 20px 7px 20px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 1rem;
    border: none;
}

.qtn-btn:hover {
    color: var(--contrast-color);
    background: #15222bc9;
}

.contact-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.showcase-section .pic {
    border-radius: 0% !important;
    width: 500px;
}

@media screen and (max-width: 990px) {
    .web-landing-content-lg-demo {
        width: 100% !important;
        padding: 2rem;
    }

    .web-landing-content-lg {
        width: 100% !important;
        padding: 2rem;
    }

    .pic {
        width: 100% !important;
    }
}

@media screen and (max-width: 1150px) {
    .web-landing-content {
        width: 100% !important;
        padding: 1rem !important;
    }
}