.block-figure-3 * {
    box-sizing: border-box;
}    
.block-figure-3 {
    margin: 20px auto;
    padding: 0;
    position: relative;
    max-width: 800px;
    width: 100%;
    overflow: hidden;

}
.block-figure-3 .figure-txt {
    border: 6px solid var(--color-newbv-2);
	border-radius:20px;
	/*background: #eedbf0;*/
}
.block-figure-3 .image-wrap {
    border: 6px solid var(--color-newbv-2);
    border-radius: 100%;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 30px;
    background: var(--color-newbw-1);
    z-index: 1;
    right: 0;
}
.block-figure-3 .image-lay {
    width: 100px;
    height: 200px;
    position: absolute;
    top: -6px;
    background: var(--color-newbw-1);
    z-index: 2;
    right: -6px;
}
.block-figure-3 .image {
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    height: 176px;
    width: 176px;
    top: 6px;
    right: 6px;
}
.block-figure-3 .front,
.block-figure-3 .back {
    background-size: cover;
    background-position: center;
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    backface-visibility: hidden;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    height: 176px;
    width: 176px;    
    border: 6px solid var(--color-newbv-2);    
    position: absolute;
}
.block-figure-3 .inner {
    transform: translateY(-50%) translateZ(60px);
    top: 50%;
    position: absolute;
    margin: auto;
    z-index: 4;
    width: 100%;
}
.block-figure-3 .image .back{
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}
.block-figure-3:hover .back{
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}
.block-figure-3:hover .front{
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
}
.block-figure-3 .inner a {
    font-weight: bold;
    font-family: Verdana, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    text-align: center;
    margin: auto;
    display:block;
    font-size: 14px; 
    line-height: 130px;
    height: 142px;
    width: 142px;
    border:6px solid var(--color-newbv-2);
    border-radius: 50%;
    transition:all .6s ease-in-out;
    overflow:hidden;    
}
.block-figure-3 .inner a::before{
    content:'';
    position:absolute;
    top:-12px;
    margin:auto;
    display:block;
    border-radius:50%;
    width:166px;
    height:166px;
    left:-1px;
    transition:box-shadow .6s ease-in-out;
    z-index:-1;
}
.block-figure-3 .inner a:hover{
    color:#fff;
}
.block-figure-3 .inner a:hover::before{
    box-shadow: inset 0 0 0 166px var(--color-newbv-2);
}
 
.block-figure-3 .figure-txt {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    margin-right: 100px;
    min-height: 260px;
}
.block-figure-3 .figure-txt h3 {  
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    font-size: 26px; 
    margin: 6px 100px 12px 0;    
}
.block-figure-3 .figure-txt p { 
    font-family: Verdana, sans-serif;
    font-size: 17px; 
    margin: 10px 100px 10px 0;

}
@media (max-width: 560px) {
    .block-figure-3 .figure-txt,
    .block-figure-3 .figure-txt h3,
    .block-figure-3 .figure-txt p {
        margin-right: 0;
    }
    .block-figure-3 .figure-txt {
        min-height: auto;
        border-bottom: none;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
    }
    .block-figure-3 .image-lay {
        display: none;
    }
    .block-figure-3 .image-wrap {
        border: 6px solid var(--color-newbv-2);
        border-top: none;
        border-radius: 0;
        width: 100%;
        height: 160px;
        position: static;
    }  
    .block-figure-3 .image {
        border-radius: 0;
        position: static;
        height: 160px;
		margin: 0 auto;
        /*width: 100%;*/
    }
    .block-figure-3 .front,
    .block-figure-3 .back {
        height: 154px;
        width: 100%;
        position: static;
        border-radius: 0;
        border: none;
    }
    .block-figure-3 .inner {
        transform: translateY(-100%) translateZ(60px);
        top: -6px;
    }
    .block-figure-3 .inner a::before{
        display: none;
    }
    .block-figure-3 .inner a:hover{
        color:#000;
    }
}