.n-success,
.n-warning,
.n-danger,
.n-info {

    margin: 25px;
    padding: 12px 12px 12px 37px;
    color: #333;
    border-radius: 2px;
    background: #fff;
    position: relative;
   
    font-family: Verdana, sans-serif;
    box-sizing: border-box;
}
.n-success:before,
.n-warning:before,
.n-danger:before,
.n-info:before {
    content: "";
    background: inherit;
    color: inherit;
    border: inherit;
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 48px;
    position: absolute;
    left: -25px;
    box-sizing: border-box;
    font-family: "FontAwesome";
    font-size: 22px;
}
.n-success {
    border: 2px solid #32a846;
    border-radius: 5px;
    color: #32a846;
    font-weight: bold;
}
.n-success:before {
    content: "\f00c";
}
.n-warning {
    border: 2px solid #f08d3c;
    border-radius: 5px;
    color: #f08d3c;
    font-weight: bold;
}
.n-warning:before  {
    content: "\f12a";
}
.n-danger {
    border: 2px solid #d9534f;
    border-radius: 5px;
    color: #d9534f;
    font-weight: bold;
}
.n-danger:before  {
    content: "\f057";
}
.n-info {
    border: 2px solid #3d98e3;
    border-radius: 5px;
    color: #3d98e3;
    font-weight: bold;
}
.n-info:before  {
    content: "\f129";
}


.block-figure-2 {
    margin: 40px auto;
    padding: 0;
    position: relative;
    max-width: 840px;
    width: 100%;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.4));
    transition: all .3s;
}
.block-figure-2:after {
    content: "";
    transition: all .3s;
    clip-path: polygon(calc(100% - 100px) 0, 100% 50px, 100% 100%, 50px 100%, 0 calc(100% - 100px), 0 0);
    background: #FFF;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 10px solid var(--primary);
    border-bottom: 10px solid var(--primary);
}
.block-figure-2 .figure-1{
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 300px;
    height: 180px;
    background: var(--dark);
    clip-path: polygon(100% 0, 100% 100%, 56px 100%, 0 70px, 0 0);
    transition: all .3s;
}
.block-figure-2 .figure-2{
    position: absolute;
    top: -22px;
    right: -22px;
    width: 230px;
    height: 130px;
    background: var(--dark);
    clip-path: polygon(100% 60px, 100% 100%, 0 100%, 0 0, 110px 0);
    transition: all .3s;
}

.block-figure-2 .figure-txt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*text-align: center;*/
    z-index: 1;
    padding: 20px 40px;
    min-height: 190px;
}
.block-figure-2 .figure-txt h3 {
    text-transform: uppercase;
    color: #337AB7;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    font-size: 20px;
    margin: 6px 0;
}
.block-figure-2 .figure-txt p {
    font-family: Verdana, sans-serif;
    font-size: 16px;
    margin: 6px 0;
}
@media (max-width: 660px) {
    .block-figure-2 {
        width: calc(100% - 50px);
    }
    .block-figure-2 .figure-txt h3 {
        font-size: 18px;
    }
}
@media (max-width: 420px) {
    .block-figure-2 .figure-txt h3 {
        font-size: 16px;
    }
    .block-figure-2 .figure-txt p {
        font-size: 13px;
    }
    .block-figure-2,
    .block-figure-2:hover{
        filter: none;
        border: 4px solid #BFE2FF;
    }
    .block-figure-2 .figure-txt {
        padding: 10px;
    }
    .block-figure-2:after,
    .block-figure-2 .figure-1,
    .block-figure-2 .figure-2 {
        display: none;
    }
}
