:root{
    --green:#0e3746;
    --dark-color:#219150;
    --black:#444;
    --light-color:#666;
    --border:.1rem solid rgba(0,0,0,.1);
    --border-hover:.1rem solid var(--black);
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'Prompt', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: lowercase;
    transition:all .2s linear;
    transition:width none;
}

.heading{
    text-align: center;
    position: relative;
}

.heading::before{
    content: '';
    position: absolute;
    top:50%; left:0;
    transform: translateY(-50%);
    width: 100%;
    height:.01rem;
    background: rgba(0,0,0,.1);
    z-index: -1;
}

.heading span{
    padding:.5rem 2rem;
    color:var(--black);
    background: #fff;
    border:var(--border);
}
.texts1 {
    margin-top: 5em;
}
.texts1 p{
    text-align: center;
    color: #444;
    font-size: 18px;
}




