.qs-content-main {
    position: absolute;
    top: 5px;
    /* top: 50px; */
    left: 45px;
    right: 45px;
    bottom: 45px;
    background-color: #1D252D;
    border-radius: 75px;

    overflow: hidden;

    display: flex;
    flex-flow: row nowrap;

    padding: 3em;

    align-items: center;
    justify-content: space-between;
}

.qs-text, .qs-svg {
    height: 100%;
}

.qs-svg {
    align-items: center;
    justify-content: center;
    display: flex;
}

.qs-text {
    height: fit-content;
}

.qs-title {
    font-weight: 700;
    font-size: 4em;
    margin-bottom: 7%;
    /* margin-top: 15%; */
}

.qs-caption, #text-animate {
    font-size: 1.4em;
    font-weight: 500; 
}

#text-animate {
    font-weight: 700;
}

.qs-button {
    outline: none;
    border: none;
    background: linear-gradient(92.51deg, #F25342 0.59%, #F37836 102.35%);
    color: #fff;
    font-size: 1.3em;
    font-weight: 600;

    padding: 0.6em 1.4em;
    border-radius: 40px;
    display: block;

    margin-top: 20%;
    cursor: pointer;

    width:fit-content;

    
}


/* cursor */

.ityped-cursor {
    font-size: 2.2rem;
    opacity: 1;
    -webkit-animation: blink 0.3s infinite;
    -moz-animation: blink 0.3s infinite;
    animation: blink 0.3s infinite;
    animation-direction: alternate;
}

@keyframes blink {
    100% {
        opacity: 0;
    }
}

.qs-svg svg{
    height: 100%;
}

@media screen and (max-width: 840px) {
    .qs-svg svg {
        width: 100%;
    }

}

@media screen and (max-width:720px) {
    
    .qs-content-main {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }
    .qs-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        padding: 1.5em;
        z-index: 2;
    }

    .qs-title {
        font-size: 2.2em;
    }

    .qs-button {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);

        border: 4px solid #fff;

        font-size: 1.2em;
    }

    .qs-svg {
        position: absolute;
        width: 100%;
        height: 60%;
        bottom: 5%;
        left: 0;
        z-index: 0;

        padding: 0 1em;
    }

    #text-animate, .qs-caption {
        font-size: 1.2em;
    }
}