.heading-1 {
    position: relative;
    text-align: center;
    margin-top: 6px;
}
.heading-1:before {
    content: "";
    display: block;
    border-top: solid 2px #f0f0f0;
    width: 500px;
    height: 2px;
    position: absolute;
    top: 50%;
    z-index: 0;
    left: -210px;
}
.heading-1 span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    color: #d3d3d3;
}
.folderbox {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px 0;
    z-index: 3;
    position: relative;
}

.folderbox span.active {
    background: #eaeaea;
}
.urlbox {
    background: #f7f7f7;
    height: 46px;
    margin-top: 17px;
    border-radius: 10px;
    padding: 9px 14px;
    position: relative;
    overflow: hidden;
}
.urlbox span {
    position: absolute;
    z-index: 3;
    top: 11px;
    left: 15px;
}
.urlbox input {
    width: 92%;
    height: 31px;
    position: absolute;
    top: 7px;
    z-index: 2;
    left: 49px;
    background: #f7f7f7;
    border: none;
    font-size: 15px;
    color: #000;
}
.urlbox input::placeholder {
    color: #b1b1b1;
}
.urlbox input:focus {
    outline: none;
}
.convertbtn {
    text-align: center;
}
.convertbtn button {
    margin-top: 25px;
    background-color: #023c89;
    color: white;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    width: 50%;
    border-radius: 5px;
    border: 1px #023c89 solid;
    padding: 10px;
}
@media (max-width: 786px) {
    .heading-1:before {
        width: 250px;
        left: -105px;
    }
}
