#sentiq-hero {
    position: relative;
    /* Height can be defined by content, or fixed e.g. 100vh */
    overflow: hidden; /* optional, if you draw to edges */
}

#sentiq-hero .hero-title {
    background: radial-gradient(closest-side, rgba(13, 6, 29, 0.65) 40%,transparent 100%);
}

.chat {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    text-align: center;
    z-index: 100;
    font-size: 14px;
    color: var(--color-title);
    line-height: 120%;
}

.chat .input {
    padding: 10px 60px 12px 20px;
    text-align: left;
    border-radius: 120px;
    border-width: 1px;
    border-style: solid;
    border-color: #02caf2;
    margin: 10px 50px 20px 50px;
    background-color: hsla(260,40%,5%,1);
    position: relative;
    color: #FFF;
}

.chat .input span,
.chat .input input
{
    font-family: "Ubuntu", sans-serif;
    font-size: 22px;
    font-weight: 300;
}
.chat .input span {
    padding: 10px;
    display: inline-block;
}
.chat .input input {
    background-color: transparent;
    width: 100%;
    border: none;
    color: #FFF;
    font-weight: 300;
    position: absolute;
    left: 0px;
    padding: 9px 50px 11px 30px;
}
.chat .input input:focus,
.chat .input input:active {
    border: 0;
    outline: none;
    box-shadow: none;
}

/* the fake cursor */
.chat .input span::after {
    content: "";
    display: inline-block;
    width: 0.08em;          /* caret thickness */
    height: 1em;            /* ~ font-size */
    margin-left: 0.2em;     /* gap from text */
    background: currentColor;
    vertical-align: -0.1em; /* nudge to baseline; tweak per font */
    animation: blink 1s steps(1, end) infinite;
}
/* hard on/off blink (no fade) */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
.chat .input .send a{
    font-size: 26px;
    padding: 7px;
    padding-left: 9px;
    color: #0b0812;
    text-decoration: none;
	
    position: absolute;
    bottom: 12px;
    right: 12px;
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background:  #FFF no-repeat center;
    background-size: 25px;
}
.chat .input .send a:hover {
    background-color:  #00AEEF;
}
.chat .information {
    font-size: 14px;
    padding: 0px 60px;
    color: #5D5E60;
}
.chat .information b{
    color: #02caf2;
    font-weight: 700;
}