@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "Roboto", sans-serif; */
}
.main {
    width: 105%;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    height: 700px;
}
.btn-box {
    display: block;
}
.btn {
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
    background: transparent;
    font-size: 1em;
}
.content {
    /* background: #ffa500; */
    position: absolute;
    padding: 20px;
    color: #fff;
    transform: translateX(100%);
    transition: 0.5s;
}
.content p {
    /* margin: 20px 0;
    font-weight: 300; */
}
.hero-btn {
    /* background: #fff; */
    color: #111;
    max-width: 300px;
    border-radius: 32px;
    padding: 13px 32px;
    text-decoration: none;
    margin-top: 40px;
    display: inline-block;
    transition: 0.5s;
}
.hero-btn:hover {
    /* background: red;
    color: #fff; */
}
#content1 {
    transform: translateX(0px);
}
.btn.active {
    /* background: #ffa500;
    color: #fff; */
}
