<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Flip Boxes */
.flip-card-container .wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 3%;
    padding-right: 3%;
}


.flip-box {
    margin: 2em 0;
    position: relative;
    display: block;
    text-align: center;
    border-radius: 50%;
    -webkit-perspective: 1000;
    perspective: 1000;
}
.flip-box:hover .back {
    transform: rotateY(0deg);
    z-index: 10;
}
.flip-box:hover .front {
    transform: rotateY(180deg);
    z-index: -1;
}


.flip-box .back, .flip-box .front {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
}
.flip-box .back {
    background-color: #161fbc;
    color: white;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    transform: rotateY(-180deg);
}
.flip-box .front {
    border: 4px solid #f4f4f4;
    position: absolute;
    border-radius: 50%;
    z-index: 10;
}
.flip-box .content {
    display: table-cell;
    padding: 1em;
    vertical-align: middle;
    -webkit-transform: translateZ(50px);
    transform: translateZ(50px);
    text-shadow: 0px 0px 2px black;
}

/* Flip Boxes */
.flip-box {
    -webkit-perspective: 1000;
    perspective: 1000;
}
.flip-box:hover .back {
    transform: rotateY(0deg);
    z-index: 10;
}
.flip-box:hover .front {
    transform: rotateY(180deg);
    z-index: -1;
}
.flip-box .back, .flip-box .front {
    display: flex;
    justify-content: center;
    align-content: center;
    flex: 0 0 100%;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
}
.flip-box .back {
    background-color: var(--brand-primary);
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transform: rotateY(-180deg);
}
.flip-box .front {
    z-index: 10;
}
.flip-box .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transform: translateZ(50px);
    transform: translateZ(50px);
    text-shadow: 0px 0px 2px black;
}

.text-shadow{
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.flip-box {
    position: relative;
    display: block;
    margin: 2em 0;
}

.flip-box:after {
    display: block;
    padding-bottom: 100%;
    width: 100%;
    height: 0;
    border-radius: 50%;
    content: "";
}


@media screen and (min-width: 34em) and (max-width: 80em) {
    .w-50-mfc {
        width: 50%;
    }
    .cards-container{
        background-color: #9E9E9E;
    }
    .circle-container{

        padding: 8%;
    }
}
@media screen and (max-width: 480px){
    .cards-container{
        background-color: #9E9E9E;

    }
    .flip-box.flipped .back {
        transform: rotateY(0deg);
        z-index: 10;
    }
    .flip-box.flipped .front {
        transform: rotateY(180deg);
        z-index: -1;
    }
}

@media screen and (min-width: 120em)  {

    .cards-container{
        margin-top: -24%;
    }
}

@media screen and (min-width: 80em) and (max-width: 130em) {

    .cards-container{
        margin-top: -29%;
    }
    .circle-container{
        padding: 8%;
    }
}</pre></body></html>