/*
------------------------------------------------
Template Name: Oxe Digital v5.0.1
Template URI: https://oxe.digital
------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

/*DEFAULT*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: middle;
}

* {
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

body {
    color: #151618;
    background-color: #e5e5e5;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    overflow-x: hidden;
}

.links {
    text-decoration: none;
    font-weight: 600;
}

.oxe {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    font-weight: 600;
    font-size: 11px;
    color: #000000;
    opacity: 0.3;
}

.oxe:hover {
    opacity: .6;
}

/*FLIP*/

.flip-card {
    width: 300px;
    height: 500px;
    display: block;
    position: fixed;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    perspective: 1200px;
    animation-name: slide;
    animation-duration: .8s;
}

@keyframes slide {
    from {
        top: 100%;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.flip-card .btn:nth-child(3) {
    width: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.5s;
}

.flip-card.selected .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: none;
}

.flip-card-front {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 19px 20px 0 rgba(0, 0, 0, 0.03), 0 3px 8px 0 rgba(0, 0, 0, 0.06);
    background-image: url(../images/background.jpg);
    background-size: 300px;
}

.flip-card-back {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    transform: rotateY(180deg);
    border-radius: 30px;
    box-shadow: 0 19px 20px 0 rgba(0, 0, 0, 0.03), 0 3px 8px 0 rgba(0, 0, 0, 0.06);
}

/* BUTTONS FLIP ANIMATION */

@keyframes bn13bouncy {
    0% {
        right: 15px;
    }

    40% {
        right: 15px;
    }

    43% {
        right: 7px;
    }

    46% {
        right: 15px;
    }

    48% {
        right: 7px;
    }

    50% {
        right: 15px;
    }

    100% {
        right: 15px;
    }
}