.welcome {
    width: 100%;
    padding: 20px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.welcome::before {
    border-radius: 15px;
}

.welcome .one {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 10px;
    gap: 10px;
}

.welcome .one #title {
    font-size: 25px;
    font-weight: 700;
}

.welcome .one #sub {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.welcome .one a {
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: .5rem;
    border-radius: 10px;
    transition: all .3s ease;
    background: hsla(0, 0%, 100%, 0.123);
}

.welcome .one a::before {
    border-radius: 10px;
}

.welcome .one a:hover {
    background: hsla(0, 0%, 100%, 0.219);
}

.welcome .two {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.welcome .two img {
    max-width: 290px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-1{
    margin-top: 20px;
    width: 100%;
    padding: 20px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.part-1::before {
    border-radius: 15px;
}

.part-1 .data{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    gap: 10px;
    border-radius: 10px;
}
.part-1 .data::before{
    border-radius: 10px;
}

.part-1 .data #title{
    font-size: 17px;
    font-weight: 700;
}

.part-1 .data #value{
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

.overview{
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 20px;
}

.overview .data{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    gap: 10px;
    border-radius: 15px;
}
.overview .data::before{
    border-radius: 15px;
}

.overview .data .list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.overview .data .list .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}
.overview .data .list .item::before{
    border-radius: 10px;
}

.overview .data #title{
    font-size: 17px;
    font-weight: 700;
}

.overview .data #value{
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 680px) {
    .welcome {
        padding: 10px 10px;
        flex-direction: column-reverse;
    }

    .welcome .one {
        align-items: center;
    }

    .welcome .one #title {
        text-align: center;
    }

    .welcome .one #sub {
        text-align: center;
    }

    .welcome .two {
        align-items: center;
    }

    .overview{
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

}

@media (max-width: 900px) {
    .part-1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .overview{
        gap: 2rem;
    }
}
