.application-wrapper {
    width: 100%;
    flex-basis: 100%;
    padding: 10px 0;

    @media (min-width: 767.8px) {
        width: 50%;
        flex-basis: 50%;
        padding: 6px;
    }

    .application-inner {
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background-color: #16232e;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        padding: 25px 20px;
        @media (min-width: 767.8px) {
            min-height: 250px;
        }
        @media (min-width: 991.8px) {
            min-height: 330px;
            padding: 55px 50px;
        }
        @media (min-width: 1280px) {
            min-height: 430px;
        }
        @media (min-width: 1700px) {
            min-height: 580px;
        }

        &:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(13deg, rgba(17, 27, 35, 0.9999999999999999) 0%, rgba(17, 27, 35, 0) 100%);
            z-index: 1;

        }

        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .application-bottom-content {
            position: relative;
            margin-top: auto;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            width: 100%;

@media(min-width: 1200px) and (max-width: 1700px) {
    align-items: center;
    justify-content: space-around;
}

            .title-wrapper {
                position: relative;
                width: 100%;
                flex-basis: 100%;

                @media (min-width: 1700px) {
                    width: calc(100% - 180px);
                    flex-basis: calc(100% - 180px);

                    h2 {
                        font-size: clamp(1.625rem, 1.325rem + 1.5vw, 3.125rem);
                    }
                }

                @media(min-width: 1200px) and (max-width: 1700px){
                    width: 50%;
                    flex-basis: 50%;

                    h2 {
                        font-size: 30px;
                    }
                }

                &:before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: 0;
                    left: -20px;
                    width: 4px;
                    height: 100%;
                    background-color: var(--red-10);
                    z-index: 1;

                }

                @media (min-width: 991.8px) {
                    &:before {
                        content: "";
                        display: block;
                        position: absolute;
                        top: 0;
                        left: -50px;
                        width: 4px;
                        height: 100%;
                        background-color: var(--red-10);
                        z-index: 1;

                    }
                }


                h2 {
                    margin-bottom: 0;
                }

            }

            .bottom-button {
                width: 100%;
                flex-basis: 100%;
                justify-content: flex-end;
                text-align: left;
                margin-top: 25px;
                @media (min-width: 767.8px) {
                    width: 100%;
                    flex-basis: 100%;
                    text-align: left;
                    margin-top: 25px;
                }
                @media (min-width: 1200px) {
                    width: 180px;
                    flex-basis: 180px;
                    text-align: right;
                    margin-top: 0;
                }
            }
        }
    }
}