.braces {
    background-color: rgb(238, 238, 238);
}

.braces-body {
    padding: 100px 0;
}

.braces-header {
    margin-bottom: 50px;
}

.braces-header>h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.braces-header>p {
    text-align: center;
    font-size: 24px;
    padding: 0;
    margin: 5px 0;
    font-weight: bold;
    color: #09ab9c;
}

.braces-header>hr {
    height: 5px;
    background: #09ab9c;
    border: none;
    border-radius: 5px;
    width: 100px;
    margin: 25px auto;
}

.braces-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.braces-card-field {
    width: 33.33%;
    padding: 25px;
}


.braces-card-back {
    display: none;
    color: white;
    font-size: 16px;
    padding: 15px;
    border: 2px solid white;
    border-radius: 15px;
    height: 360px;
    align-items: center;
}

.braces-card-back>p {
    cursor: default;
}

.braces-card-back>p>span {
    font-weight: 800;
}

.braces-card {
    transition: 0.3s;
    border-radius: 15px;
    background-color: white;
    height: 375px;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.braces-card-front>img {
    max-width: 200px;
}

.braces-card:hover {
    transition: 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    background-color: #09ab9c;
}

.braces-card:hover>.braces-card-front {
    transition: 0.3s;
    display: none;
}

.braces-card:hover>.braces-card-back {
    transition: 0.3s;
    display: flex;
}

@media (max-width: 1280px) {
    .braces-card-back {
        font-size: 14px;
    }
}

/* Mobile */

.mobile-braces {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background: rgb(238, 238, 238);
}

.mobile-braces-header {
    margin-bottom: 35px;
}

.mobile-braces-header>h1 {
    color: #101010;
    font-weight: 800;
    font-size: 28px;
    text-align: center;
}

.mobile-braces-header>p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #8e8e8e;
}

.mobile-braces-header>hr {
    height: 5px;
    background: #09ab9c;
    border: none;
    border-radius: 5px;
    width: 100px;
    margin: 0 auto;
}

.mobile-braces-card-field {
    padding: 15px;
    border-radius: 15px;
    background: white;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.mobile-braces-card-front>img {
    width: 100%;
    max-width: 150px;
}

.mobile-braces-card-front>h2 {
    color: #101010;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
}

.mobile-braces-card-back>p {
    font-size: 14px;
}

.mobile-braces-slider {
    margin-bottom: 35px;
}