@charset "UTF-8";
/* *****************************************/
/*    css
/*    V 20241009
/*        by AuOzzy
/******************************************/
/* ↓↓↓ ***** bootstrap reboot START ***** ↓↓↓ */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

h4 {
    font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

mark {
    padding: 0.1875em;
    color: var(--bs-highlight-color);
    background-color: var(--bs-highlight-bg);
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: var(--bs-code-color);
    word-wrap: break-word;
}
a > code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
}
kbd kbd {
    padding: 0;
    font-size: 1em;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-secondary-color);
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}
select:disabled {
    opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not(
        [type="time"]
    )::-webkit-calendar-picker-indicator {
    display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}
@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}
legend + * {
    clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

/* ↑↑↑ ***** bootstrap reboot END ***** ↑↑↑ */
/* ↓↓↓ ***** RESET START ***** ↓↓↓ */
p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    text-decoration: none;
}

img {
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* ↑↑↑ ***** RESET END ***** ↑↑↑ */
/* ↓↓↓ ***** ROOT START ***** ↓↓↓ */
:root {
    --spacing: 104px;
    --spacing-half: calc(104px / 2);
}
@media screen and (max-width: 768px) {
    :root {
        --spacing: 56px;
        --spacing-half: calc(56px / 2);
    }
}

:root {
    --spacing-1x: 8px;
    --spacing-2x: 16px;
    --spacing-4x: 32px;
    --spacing-8x: 64px;
    --spacing-16x: 128px;
}

:root {
    --Gray-01: #1a1a1a;
    --Gray-02: #333333;
    --Gray-03: #cccccc;
    --Gray-04: #e5e5e5;
    --Gray-05: #f6f6f6;
    --Gray-06: #ffffff;
    --dark-blue: #3046b6;
    --light-blue: #c4f1ff;
    --medium-blue: #82a4e4;
    --deep-blue: #063478;
    --common-blue: #4368c8;
    --auxiliary-color-1: #04be02;
    --auxiliary-color-2: #ea4e3d;
    --auxiliary-color-3: #ffaa09;
    --status-color-1: #3bac66;
    --status-color-2: #ffaa09;
    --status-color-3: #ea4f3d;
    --theme-color: #c4d8ff;
    --primary-color: #c4d8ff;
    --secondary-color: #d8d8d8;
    --light-color: #666666;
    --border-color: #333333;
    --background-color: #000000;
    --panel-color: #222222;
    --primary-button-text-color: #7ff800;
    --light-green: #c5e2d2;
    --medium-green: #71b394;
    --highlight-yellow: #f9fd4e;
    --text-highlight: #866638;
    --text-highlight2: #ff6f54;
    --text-highlight3: #fffe8f;
}

/* ↑↑↑ ***** ROOT END ***** ↑↑↑ */
/* ↓↓↓ ***** FONT START ***** ↓↓↓ */
@font-face {
    font-family: "corbel";
    src: url("../fonts/corbel/CORBELB.TTF") format("opentype");
    font-weight: 700;
}
body {
    font-family: "corbel", sans-serif;
    font-display: swap;
    font-weight: 600;
    color: #686868;
}

.txt-Gray-01 {
    color: #1a1a1a;
}

.txt-Gray-02 {
    color: #333333;
}

.txt-Gray-03 {
    color: #cccccc;
}

.txt-Gray-04 {
    color: #e5e5e5;
}

.txt-Gray-05 {
    color: #f6f6f6;
}

.txt-Gray-06 {
    color: #ffffff;
}

.txt-dark-blue {
    color: #3046b6;
}

.txt-light-blue {
    color: #c4f1ff;
}

.txt-medium-blue {
    color: #82a4e4;
}

.txt-deep-blue {
    color: #063478;
}

.txt-common-blue {
    color: #4368c8;
}

.txt-auxiliary-color-1 {
    color: #04be02;
}

.txt-auxiliary-color-2 {
    color: #ea4e3d;
}

.txt-auxiliary-color-3 {
    color: #ffaa09;
}

.txt-status-color-1 {
    color: #3bac66;
}

.txt-status-color-2 {
    color: #ffaa09;
}

.txt-status-color-3 {
    color: #ea4f3d;
}

.txt-theme-color {
    color: #c4d8ff;
}

.txt-primary-color {
    color: #c4d8ff;
}

.txt-secondary-color {
    color: #d8d8d8;
}

.txt-light-color {
    color: #666666;
}

.txt-border-color {
    color: #333333;
}

.txt-background-color {
    color: #000000;
}

.txt-panel-color {
    color: #222222;
}

.txt-primary-button-text-color {
    color: #7ff800;
}

.txt-light-green {
    color: #c5e2d2;
}

.txt-medium-green {
    color: #71b394;
}

.txt-highlight-yellow {
    color: #f9fd4e;
}

.txt-text-highlight {
    color: #866638;
}

.txt-text-highlight2 {
    color: #ff6f54;
}

.txt-text-highlight3 {
    color: #fffe8f;
}

/* ↑↑↑ ***** FONT END ***** ↑↑↑ */
/* ================================================================================ */
/* ================================================================================ */
/* ================================================================================ */
/* ...................######..########....###....########..########................ */
/* ..................##....##....##......##.##...##.....##....##................... */
/* ..................##..........##.....##...##..##.....##....##................... */
/* ...................######.....##....##.....##.########.....##................... */
/* ........................##....##....#########.##...##......##................... */
/* ..................##....##....##....##.....##.##....##.....##................... */
/* ...................######.....##....##.....##.##.....##....##................... */
/* ================================================================================ */
/* ================================================================================ */
/* ================================================================================ */
/* ↓↓↓ ***** COMMON START ***** ↓↓↓ */
html {
    height: 100dvh;
    overflow: hidden;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#121927),
        color-stop(50%, #1a2234)
    );
    background: linear-gradient(#121927 0%, #1a2234 50%);
}

body {
    width: 100%;
    height: 100%;
}

img {
    width: 100%;
    height: auto;
}

a {
    color: currentColor;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

span.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* ↑↑↑ ***** COMMON END ***** ↑↑↑ */
@-webkit-keyframes enlarge {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
    }
}
@keyframes enlarge {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
    }
}
@-webkit-keyframes iconActiveEffect {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.9;
    }
    100% {
        scale: 1;
    }
}
@keyframes iconActiveEffect {
    0% {
        scale: 1;
    }
    50% {
        scale: 0.9;
    }
    100% {
        scale: 1;
    }
}
/* ↓↓↓ ***** COMPONENT START ***** ↓↓↓ */
.tw_btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    background-color: transparent;
    color: var(--common-blue);
    font-weight: 600;
    line-height: 1;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
        border 0.3s ease-in-out, text-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out,
        text-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
        color 0.3s ease-in-out, border 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
        color 0.3s ease-in-out, border 0.3s ease-in-out, text-shadow 0.3s ease-in-out,
        -webkit-box-shadow 0.3s ease-in-out;
}
.tw_btn .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.tw_btn .tw_img {
    -webkit-transition: -webkit-filter 0.3s ease-in-out;
    transition: -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.tw_btn:hover .tw_img {
    -webkit-filter: saturate(2);
    filter: saturate(2);
}
.tw_btn:active {
    -webkit-transform: translate(1px, 1px);
    -ms-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
}
/* 滑鼠光點效果 */
/* .tw_btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(var(--x) * 1px) calc(var(--y) * 1px), hsla(0, 0%, 100%, 0.8), transparent 5vmin), transparent;
  background-attachment: fixed;
  pointer-events: none;
  border-radius: 80px;
  padding: 5px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.tw_btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at calc(var(--x) * 1px) calc(var(--y) * 1px), hsla(0, 0%, 100%, 0.3), transparent 5vmin);
  background-attachment: fixed;
  opacity: var(--active, 0);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
  border-radius: 80px;
}
.tw_btn:hover {
  --active: 1;
  text-decoration: none;
}
.tw_btn-icon-prepend .icon, .tw_btn-icon-append .icon {
  width: 20px;
  height: 20px;
}
.tw_img {
  position: relative;
}
.tw_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
} */

.icon,
.tw_img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.icon .default,
.tw_img .default {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.js-hover .icon .default,
.js-hover .tw_img .default {
    opacity: 0;
}
.icon .hover,
.tw_img .hover {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.js-hover .icon .hover,
.js-hover .tw_img .hover {
    opacity: 1;
}

/* ↑↑↑ ***** COMPONENT END ***** ↑↑↑ */
/* ↓↓↓ ***** LAYOUT START ***** ↓↓↓ */
.body_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}
@media (max-width: 768px) {
    .body_wrap {
        background-image: url("../images/bg_m.jpg");
        background-size: cover;
    }
}

.container {
    width: 100%;
}

/* ↑↑↑ ***** LAYOUT END ***** ↑↑↑ */
/* ↓↓↓ ***** ENTRY START ***** ↓↓↓ */

.tw_btn-default {
    width: 459px;
    height: 91px;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .tw_btn-default {
        width: 67.301369863%;
    }
}
.tw_btn-default .inner {
    width: min(100%, 459px);
    height: 91px;
    background-image: url(../images/menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 32px;
}
.tw_btn-default:hover .inner {
    width: min(100%, 459px);
    height: 91px;
    background-image: url(../images/menu_h.png);
    background-size: contain;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .tw_btn-default .inner {
        aspect-ratio: 459 / 91;
        width: 100%;
        height: auto;
    }
    .tw_btn-default:hover .inner {
        aspect-ratio: 459 / 91;
        width: 100%;
        height: auto;
    }
    @supports not (aspect-ratio: 459 / 91) {
        .tw_btn-default .inner {
            width: 100%;
            height: 0;
        }
    }
}

.page_main {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page_main .container {
    display: -webkit-box;
    display: -ms-flexbox;
    gap: 153px;
}
@media (max-width: 768px) {
    .page_main .container {
        gap: min(12.0547945205vw, 88px);
    }
}
.page_main-bd {
    margin-top: 25vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.tw_btn-default {
    width: 459px;
    transition: all 0.3s;
}
@media (max-width: 768px) {
    .tw_btn-default {
        width: 67.301369863%;
    }
    .page_fixed-btn {
        width: 20%;
    }
}
/* ↑↑↑ ***** ENTRY END ***** ↑↑↑ */

#menu {
    width: 112px;
    height: 112px;
    position: absolute;
    right: 5px;
    top: 70%;
    margin: -56px 0 0 -56px;
    list-style: none;
}

.menu-button {
    opacity: 0;
    z-index: -1;
}

.menu-button {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    text-decoration: none;
}
.menu-on {
    background: url(../images/customer_h.png) no-repeat center;
    background-size: contain;
}
.menu-off {
    background: url(../images/customer.png) no-repeat center;
    background-size: contain;
}
#menu:not(:target) > a:first-of-type,
#menu:target > a:last-of-type {
    opacity: 1;
    z-index: 1;
}

#menu:not(:target) > .icon-plus:before,
#menu:target > .icon-minus:before {
    opacity: 1;
}

.menu-item {
    width: 70px;
    height: 70px;
    position: absolute;
    right: 15%;
    line-height: 5px;
    top: 20%;
    border-radius: 50%;
    background-color: #424242;
    transform: translate(0px, 0px);
    transition: transform 500ms;
    z-index: -2;
    transition: 0.5s;
}

.menu-item:hover {
    opacity: 0.5;
    box-shadow: 0 5px 10px black;
}

.menu-item a {
    position: relative;
    top: 0%;
    left: 0;
    text-decoration: none;
    display: inline-block;
    width: 12vw;
    height: 12vw;
    z-index: 3;
}
#menu:hover > .menu-button {
    background: url(../images/customer_h.png) no-repeat center;
    background-size: contain;
}
#menu:target > .menu-item:nth-child(7) {
    transform: rotate(-180deg) translateY(-112px) rotate(180deg);
    transition-delay: 0s;
    background: url(../images/whatsapp_icon.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

#menu:target > .menu-item:nth-child(6) {
    transform: rotate(-135deg) translateY(-112px) rotate(135deg);
    transition-delay: 0s;
    background: url(../images/TG2_icon.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

#menu:target > .menu-item:nth-child(5) {
    transform: rotate(-90deg) translateY(-112px) rotate(90deg);
    transition-delay: 0.1s;
    background: url(../images/TG1_icon.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

#menu:target > .menu-item:nth-child(4) {
    transform: rotate(-45deg) translateY(-112px) rotate(45deg);
    transition-delay: 0.2s;
    background: url(../images/FB_icon.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

#menu:target > .menu-item:nth-child(3) {
    transform: rotate(0deg) translateY(-112px) rotate(0deg);
    transition-delay: 0.3s;
    background: url(../images/customer_icon.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

@media (max-width: 768px) {
    #menu {
        width: 20vw;
        height: 20vw;
        margin: -10vw 0 0 -10vw;
    }
    .menu-item {
        width: 12vw;
        height: 12vw;
    }
    #menu:target > .menu-item:nth-child(7) {
        transform: rotate(-180deg) translateY(-20vw) rotate(180deg);
    }

    #menu:target > .menu-item:nth-child(6) {
        transform: rotate(-135deg) translateY(-20vw) rotate(135deg);
    }

    #menu:target > .menu-item:nth-child(5) {
        transform: rotate(-90deg) translateY(-20vw) rotate(90deg);
    }

    #menu:target > .menu-item:nth-child(4) {
        transform: rotate(-45deg) translateY(-20vw) rotate(45deg);
    }

    #menu:target > .menu-item:nth-child(3) {
        transform: rotate(0deg) translateY(-20vw) rotate(0deg);
    }
}
