body{
    overflow: auto;
    font-family: 'Roboto', sans-serif;
    position: relative;
}
.text-wrap{
    padding: 70px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner-img img{
    height: 100vh;
    background-size: cover;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.download-box{
    height: calc(100vh - 140px);
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
}
.download-box h1{
    color: #481f3f;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}
.items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.items .width{
    width: 50%;
}
.items p{
    margin: 0;
    font-size: 18px;
    color: #481f3f;
    display: inline-block;
}
.items a{
    display: inline-block;
    background: #481f3f;
    width: fit-content;
    color: #fff;
    font-size: 13px;
    padding: 6px 15px;
    border-radius: 5px;
    float: right;
    transition: .4s;
    border: 1px solid transparent;
}
.items a:hover{
    text-decoration: none;
    border: 1px solid #481f3f;
    color: #481f3f;
    background: #fff;
}
.scroll-box{
    overflow-y: auto;
    height: calc(100% - 60px);
    padding: 0 20px 20px;
}
.scroll-box::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #c9bdc5;
}

.scroll-box::-webkit-scrollbar
{
    width: 7px;
    background-color: #F5F5F5;
}

.scroll-box::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #7f516f;
}
.bg-color{
    display: none;
}
@media (max-width: 768px) {
    .banner-img img{
        height: auto;
        background-size: cover;
        width: 100%;
        object-fit: cover;
    }
    .text-wrap{
        padding: 25px;
        position: relative;
        background: #170d29;
    }
    .download-box h1{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .items{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 15px;
    }
    .items p{
        font-size: 14px;
    }
    .items a{
        font-size: 12px;
        padding: 6px;
    }
    .scroll-box{
        padding: 0 15px 15px;
    }
    .bg-color{
        display: block;
        background: linear-gradient(180deg, #170d2926 0%, #170d29 100%);
        height: 25px;
        margin-top: -25px;
        position: relative;
        z-index: 100;
    }
}
@media (max-width: 576px) {
    .banner-img img{
        height: 186px;
    }
    .download-box{
        height: calc(100vh - 236px);
    }
}