.html-all-f-wrap * {
    box-sizing: border-box;
}
.html-flip-box {
    width: 100%;
    perspective: 1000px;
}
.html-flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.html-flip-box:hover .html-flip-box-inner {
    transform: rotateY(180deg);
}
.html-flip-box-front, .html-flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    color:#fff;
    padding:20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.html-flip-box-front {
    background: #03285a;
}
.html-flip-box-back {
    background-color:#223e53;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding:20px;
}
.html-all-f-wrap {
    display:grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    hyphens: auto !important;
    margin:auto;
}
.html-all-f-wrap .html-flip-box {
    aspect-ratio:1;
}
