@charset "UTF-8";

.wrapper {
    width: 100%;
    height: 12. 5rem;
    display: table;
    border: 5px solid rgb(198, 196, 133);
    margin: 2.5em auto;
    padding: 1.1em;
    position: relative;
    color: #f78154;
    font-family: robotoBlack;
    font-size: 2.5vmin;
    font-weight: 600;
    line-height: 1.5em;
}

.wrapper:after,
.wrapper:before {
    content: "";
    position: absolute;
    font-family: fontAwesome;
    font-size: 2.33333333333333em;
    color: rgb(198, 196, 133);
    background: #fff;
}

.wrapper:after {
    content: "";
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px 0 #fff;
}

.wrapper:before {
    content: "";
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    box-shadow: -10px -10px 0 #fff;
}

.wrapper .title,
.description {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.wrapper .description {
    font-size: 1.5em;
}

.wrapper .title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    padding: 0 1.1em 0 0;
}


.wrapper .title small {
    display: block;
    font-size: 1.3em;
    text-align: right;
}

.wrapper .border-radius {
    border-radius: 1.4em;
}

.wrapper .text-right {
    text-align: right;
}

@media (200px <= width <= 1024px) {

    .wraper {
        
        display: flex;
        flex-direction:column;
        padding: 0;
        margin: 0;
        
    }

    .wrapper .title,
    .description {
        display: block;
        width: 100%;
        
    }
    .wrapper .title_bottom {
        padding-top: 1.1em;
    }
.description {
    font-size: 1em;
}
    .wrapper .title {
        display: block;
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 1em;
    }
}