.show-case {
    background-color: #181818;
    padding: 100px 20px !important;
    min-height: 100vh;
}


.logo {
    text-align: center;
    padding: 0px 20px 30px;
}


h1 {
    text-align: center;
    font-family: sans-serif;
    color: white;
    font-size: calc(20px + 1vw);
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
}

.container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 100px auto 100px;
}

.thumb {
    position: relative;
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    padding: 100px 20px;
    background-color: #2f2f2f;
    text-align: center;
}

.thumb span {
    position: absolute;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 12px 30px;
    background-color: #181818;
    border-radius: 20px;
    top: 20px;
    right: 20px;
    color: white;
}

.thumb a {
    width: 100%;
}

.thumb img {
    min-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-width: 80%;
}

.cta a {
    padding: 40px;
    background-color: #2f2f2f;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: calc(18px + 1vw);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
    border-radius: 10px;
    text-align: center;
    letter-spacing: 4px;
}

@media only screen and (max-width: 991px) {
    .container {
        flex-direction: column;
        gap: 80px;
    }

    .thumb {
        padding: 40px 20px;
    }

    .cta a {
        padding: 24px 40px;
    }

    .thumb img {
        max-width: 100%;
        min-height: 280px;
    }

    /* .con-single:first-of-type .thumb {
        padding-top: 100px;
    } */
}