.banner {
    /* min-height: calc(100vh - 5.8rem); */
    min-height: 100vh;
    background: #1e149d;
    padding: 0rem 4.75rem 4rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-top: 5rem;
}
.banner_content {
    position: relative;
    z-index: 10;
}
.banner_img {
    width: 39.75rem;
    height: 35.5rem;
}
.banner_title {
    font-size: 6rem;
    color: #4edceb;
    margin-bottom: 2rem;
}
.banner_desc {
    font-size: 2rem;
    color: white;
    font-family: "Plus Jakarta Sans", Sans-serif;
}
.banner_imgdeco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18.5rem;
    height: auto;
}
@media (max-width: 639px) {
    .banner_img {
        display: none;
    }
    .banner {
        padding: 1rem 1.118rem 3.75rem;
        height: auto;
        min-height: auto;
        overflow: hidden;
    }
    .banner_desc {
        font-size: 3rem;
    }
    .banner_title {
        font-size: 3rem;
    }
    .banner_imgdeco {
        width: 37.5rem;
        right: 0;
        object-fit: cover;
        height: 100%;
    }
}
