@import url("/styles/fonts.css");

:root {
    --n900: #1A1A1A;
    --n800: #3A3A3A;
    --n700: #585858;
    --n600: #6C6C6C;
    --n500: #949494;
    --n400: #B4B4B4;
    --n300: #D8D8D8;
    --n200: #E8E8E8;
    --n100: #f2f2f2;
    --n90: #F9F9F9;

    --black: #000000;
    --white: #ffffff;

    --primary: #57d9a3;
    --light-primary: var(--light-green);
    --secondary: #ffc400;
    --light-secondary: #fff4d1;
    --green: #24ae8f;
    --light-green: #ddf3ee;
    --red: #ec6665;
    --light-red: #f9e6e6;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button,
select,
option {
    font-family: Dana !important;
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
    background-color: white;
}

body {
    font-size: 16px;
    line-height: 19px;
    color: var(--n900);
    box-sizing: border-box;
    /* background-color: var(--n90); */
}

#footer,
#menu {
    background-color: white;
    z-index: 1000;
}

button {
    color: var(--n900);
}

textarea {
    resize: none;
}

.-rotate45 {
    transform: rotate(45deg);
}

.-f-sh-0 {
    flex-shrink: 0;
}

.-w-220px {
    min-width: 220px;
}

.-top-50.-left-50 {
    transform: translate(-50%, -50%);
}

.-p-50{
    padding: 50px;
}

.-pt-100 {
    padding-top: 100px;
}

.-pt-150 {
    padding-top: 150px;
}

.-pb-100 {
    padding-bottom: 100px;
}

.-pt-200 {
    padding-top: 200px;
}

.-pb-150 {
    padding-bottom: 150px;
}

.-pb-200 {
    padding-bottom: 200px;
}

.-pos-in {
    position: inherit;
}

.-h-fit {
    min-height: calc(100vh - 60px);
}

.-h-fit2 {
    min-height: calc(100vh - 120px);
}

.-brd-r-30{
    border-radius: 30px;
}

.-c-primary {
    color: var(--primary);
}

.-c-primary-hvr:hover {
    color: var(--primary);
}

.-c-secondary {
    color: var(--secondary);
}

.-c-secondary-hvr:hover {
    color: var(--secondary);
}

.-b-c-primary {
    background-color: var(--primary);
}

.-b-c-primary-hvr:hover {
    background-color: var(--primary);
}

.-b-c-secondary {
    background-color: var(--secondary);
}

.-b-c-secondary-hvr:hover {
    background-color: var(--secondary);
}

.-brd-c-primary {
    border-color: var(--primary);
}

.-brd-c-primary-hvr:hover {
    border-color: var(--primary);
}

.-b-c-light-primary {
    background-color: var(--light-primary);
}

.-b-c-n100 {
    background-color: var(--n100);
}

.-b-c-n200-hvr:hover {
    background-color: var(--n200);
}

.-brd-c-n100 {
    border-color: var(--n100);
}

.-brd-c-n200 {
    border-color: var(--n200);
}

.-c-n400 {
    color: var(--n400);
}

.-c-n600 {
    color: var(--n600);
}

.title-x {
    font-size: 64px;
}

.title-1 {
    font-size: 32px;
}

.title-2 {
    font-size: 24px;
}

.title-3 {
    font-size: 20px;
}

.body-1 {
    font-size: 16px;
}

.body-2 {
    font-size: 14px;
}

.caption-1 {
    font-size: 13px;
}

.caption-2 {
    font-size: 12px;
}

.caption-3 {
    font-size: 10px;
}

.ultralight {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: normal;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: bold;
}

.black {
    font-weight: 900;
}

.fat {
    font-weight: 990;
}

.button {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0px 20px;
    height: 48px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.button:not(.not_click):active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.8s;
}

.button.small {
    padding: 0px 20px;
    height: 40px;
    border-radius: 12px;
}

.button.pill {
    padding: 0px 15px;
    height: 32px;
    border-radius: 40px;
}

.button.small-pill {
    padding: 0px 15px;
    height: 24px;
    border-radius: 40px;
}

.button.square {
    padding: 0;
    height: 48px;
    width: 48px;
    border-radius: 15px;
}

.button.square.small {
    padding: 0;
    height: 40px;
    width: 40px;
    border-radius: 12px;
}

.button.circle {
    padding: 0;
    height: 48px;
    width: 48px;
    border-radius: 40px;
}

.button.circle.small {
    padding: 0;
    height: 40px;
    width: 40px;
    border-radius: 40px;
}

.button.circle.small-pill {
    padding: 3px 0 0 0;
    height: 24px;
    width: 24px;
    border-radius: 24px;
}

.button.-jus-c-s {
    justify-content: flex-start;
}

.field {
    padding-bottom: 20px;
}

.field .input {
    height: 48px;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid var(--n200);
    width: 100%;
    /* font-size: 14px; */
    font-size: 16px;
    color: var(--n900);
}

.field .input.-px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.field textarea.input {
    height: auto;
}

.field .input::placeholder {
    color: var(--n400);
}

.field .icon-r,
.field .icon-l,
.field .icon-l2 {
    display: none;
}

.field.icon-r .icon-r,
.field.icon-l .icon-l,
.field.icon-l2 .icon-l,
.field.icon-l2 .icon-l2 {
    display: flex;
}

/* .field.icon-r .icon-r.-dis-f,
.field.icon-l .icon-l.-dis-f,
.field.icon-l2 .icon-l.-dis-f,
.field.icon-l2 .icon-l2.-dis-f {
    display: flex;
} */

.field .icon-r {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 100%;
    width: 30px;
    align-items: center;
    justify-content: center;
}

body.-d-l .field .icon-r {
    left: 20px;
    right: auto;
}

.field .icon-l {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 100%;
    width: 30px;
    align-items: center;
    justify-content: center;
}

body.-d-l .field .icon-l {
    right: 20px;
    left: auto;
}

.field .icon-l2 {
    position: absolute;
    top: 50%;
    left: 64px;
    transform: translateY(-50%);
}

body.-d-l .field .icon-l2 {
    right: 64px;
    left: auto;
}

.field.icon-r .input {
    padding-right: 50px;
}

.field.icon-l .input {
    padding-left: 50px;
}

.field.icon-l2 .input {
    padding-left: 90px;
}

body.-d-l .field.icon-r .input {
    padding-right: 20px;
    padding-left: 50px;
}

body.-d-l .field.icon-l:not(.icon-r) .input {
    padding-right: 50px;
    padding-left: 20px;
}

body.-d-l .field.icon-l.icon-r .input {
    padding-right: 50px;
    padding-left: 50px;
}

body.-d-l .field.icon-l2:not(.icon-r) .input {
    padding-right: 90px;
    padding-left: 20px;
}

body.-d-l .field.icon-l2.icon-r .input {
    padding-right: 90px;
    padding-left: 50px;
}

.field .label {
    display: inline-block;
    padding-bottom: 3px;
}

.field .info,
.field .error,
.field .limit {
    display: block;
    padding-right: 20px;
    padding-top: 3px;
}

.field .limit {
    text-align: left;
    color: var(--n400);
}

body.-d-l .field .limit {
    text-align: right;
}

body.-d-l .field .label,
body.-d-l .field .info,
body.-d-l .field .error {
    padding-right: auto;
    padding-left: 20px;
}

#header {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5)), url("/images/pattern.png") no-repeat top center / contain;
}

#header .img.n1 {
    transform: scale(1.1);
}

.features .item {
    aspect-ratio: 1/1;
}

.features .item>div {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features>main>div>.item:nth-child(3n-2) {
    cursor: url("/images/cursor3.png"), auto;
}

.features>main>div>.item:nth-child(3n-1) {
    cursor: url("/images/cursor2.png"), auto;
}

.features>main>div>.item:nth-child(3n) {
    cursor: url("/images/cursor1.png"), auto;
}

.features .item>div:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50%;
    width: 50%;
    border-radius: 50%;
    border: 45px solid var(--red);
    box-sizing: border-box;
    z-index: -1;
    opacity: 0.1;
    filter: grayscale(1);
    transition: all 0.3s;
}

.features .item>div:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 45px solid var(--red);
    box-sizing: border-box;
    z-index: -1;
    box-shadow: 3px 7px 0px -1px var(--red-4);
    opacity: 0.1;
    filter: grayscale(1);
    transition: all 0.3s;
}

.features .item>div:hover::before,
.features .item>div:hover::after {
    opacity: 0.5;
    filter: grayscale(0);
}

.features2>main>div>div:nth-child(2n) {
    flex-direction: row-reverse;
}

.socials>main>div {
    background: var(--light-green);
    min-height: 100px;
}

.error .code {
    box-sizing: border-box;
    padding-left: 7%;
}

.error .message {
    box-sizing: border-box;
    padding-left: 6%;
}

.about-svg {
    margin-bottom: -39px;
}

.textbox p{
    padding-bottom: 10px;
}
.textbox img{
    border-radius: 10px;
    width: 100%;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.platform-svg svg{
    fill: var(--n300);
    transition: all 0.3s;
}
.platform-svg:hover svg{
    fill: var(--primary);
}

.hooray-box:hover img{
    display: block;
}

.new-box{
    background-color: var(--gray-2);
    border-radius: 30px;
    padding: 50px;
    box-sizing: border-box;
    background-color: #f1f5f9;
}

.new-box .image-box{
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
}

@media all and (max-width: 810px) {
    #header {
        background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url("/images/pattern.png") no-repeat top center / cover;
    }

    .close-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #000000;
        height: 100vh;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 1000;
    }

    .close-menu.active {
        pointer-events: all;
        opacity: 0.7;
    }

    .menu {
        display: block;
        position: fixed;
        top: 0;
        left: -350px;
        width: 300px;
        background-color: #ffffff;
        height: 100vh;
        border-radius: 0 20px 20px 0;
        padding: 20px 0;
        box-sizing: border-box;
        transition: all 0.3s;
        z-index: 1000;
    }

    .menu.active {
        left: 0;
    }
    .new-box{
        padding: 20px;
    }
    .new-box .image-box{
        padding: 10px;
    }
}

@media all and (max-width: 650px) {
    .title-x {
        font-size: 48px;
    }

    .title-1 {
        font-size: 24px;
    }

    .title-2 {
        font-size: 20px;
    }

    .title-3 {
        font-size: 18px;
    }
}