/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

a {
    cursor: pointer;
    text-decoration: none;
}

.flc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dax_text {
    text-transform: uppercase
}

.text_ele {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text_ele2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.but_hovea:hover {
    box-shadow: -5px -5px 20px rgba(255, 255, 255, 0.591), 5px 5px 20px #BABECC;
    transform: translateY(-0.2vw);
}

.img100 {
    width: 100%;
    transition: all .4s;
    height: 100%;
}