.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
 }

 .tt-box {
    font-family: inherit;
    color: #fff;
    text-align: center;
    padding-top: 20px;
 }

 .box {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
 }

 .stt-box {
    position: relative;
    height: 100%;
    background-color: #0886c3;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    transition: background-color ease-in-out 150ms;
 }

 .stt-box:hover {
    background-color: lighten(red, 10%);
 }

 .img-box {
    /* height: 200px; */
    width: 100%;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;

 }

 .img-box::after {
    position: relative;
    font-size: 4.5em;
    color: rgba(230, 230, 230, 1);
    top: calc(50% - 3rem);
    left: calc(50% - 2.25rem);
    z-index: 0;
 }

 .ArmaanTExt {
    text-align: center;
    font-size: 18px;
    color: #fff;
 }