@font-face {
    font-family: 'PP Formula';
    src: url("./assets/fonts/PPFormula-CondensedBlack.otf") format('opentype');
}

body {
    margin: 0;
    background-color: #111;
    font-family: Manrope, sans-serif;
}

select {
    cursor: pointer;
}

.pf_70_70 {
    font-family: 'PP Formula', sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 70px;
    text-transform: uppercase;
}

.pf_42_50 {
    text-transform: uppercase;
    font-family: PP Formula, sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
}

.pf_30_28 {
    letter-spacing: .6px;
    text-transform: uppercase;
    font-family: PP Formula, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 28px;
}

.manrope_14_18 {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
}

.manrope_17_24 {
    letter-spacing: -.165px;
    font-family: Manrope, sans-serif;
    font-size: 17px;
    font-style: normal;
    line-height: 24px;
}

.flip-card {
    border-radius: 10px;
    color: white;
    perspective: 1200px;
    height: 300px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .55s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 8px;
    border: 1px solid #5c5c5c;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: black;
}

.flip-back {
    background: #ef4023;
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.flip-card:hover .flip-inner,
.flip-card.flipped .flip-inner {
    transform: rotateY(180deg);
}

/* .slider {
    display: flex;
    position: absolute;
    left: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 16px;
    width: 200%;
    height: 100%;
    animation: slider 20s linear infinite;
}

.slider:hover {
    animation-play-state: paused;
}

@keyframes slider {
    0% {
        left: 0
    }

    to {
        left: -100%
    }
} */

@media (-moz-touch-enabled: 1),
(pointer:coarse) {

    .flip-card:hover .flip-inner,
    .flip-card.flipped .flip-inner {
        transform: rotateY(0deg) !important;
    }

    .flip-inner {
        cursor: unset !important;
    }
}

.flip-card .heading {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 8px;
}

.error {
    color: #d32f2f;
    font-size: 14px;
    display: block;
    margin-top: 4px;
    margin-bottom: 12px;
    text-align: left;
}

.button-style-1 {
    width: fit-content;
    min-width: 250px;
    height: 50px;
    border-radius: 3px;
    background: #ef4123;
    border: 1px solid #ef4123;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    text-decoration: none;
}

a.style-2 {
    width: fit-content;
    padding: 12px 18px;
    border-radius: 3px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    text-decoration: none;
}

a.style-2:hover {
    background: white;
    color: #111;
}

.form-1 {
    width: 90%;
    max-width: 650px;
    background-color: white;
    margin: auto;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    align-items: center;
    text-align: center;
}

.form-1 input,
.form-1 select {
    width: 100%;
    height: 48px;
    border-radius: 3px;
    border: .852px solid #8d8d8d;
    background: white;
    padding: 0 17px;
    /* margin-top: 8px; */
    outline: none;
    color: black;
    font-size: 15px;
    font-style: normal;
    line-height: 22px;
}

.form-1 input::placeholder {
    color: #8D8D8D;
}

footer {
    border-top: 1px solid #3e3e3e;
}

@media only screen and (max-width: 1279px) {
    br:not(.no-hide) {
        float: right;
    }

    .pf_70_70 {
        font-size: 42px;
        line-height: 50px;
    }

    .manrope_17_24 {
        font-size: 16px;
        line-height: 22px;
    }

    .form-1 {
        padding: 32px;
    }

    .button-style-1 {
        width: 100% !important;
        max-width: 600px;
    }

    .flip-back {
        transform: rotate(0deg) !important;
    }

    .flip-card:hover .flip-inner,
    .flip-card.flipped .flip-inner {
        transform: rotateY(0deg) !important;
    }

    .flip-inner {
        cursor: unset !important;
    }
}