@charset "UTF-8";
@font-face {
  font-family: 'Speedee_W_Bd';
  src: url("../font/WOFF2/Speedee_W_Bd.woff2") format("woff2"), url("../font/WOFF/Speedee_W_Bd.woff") format("woff"); }
@font-face {
  font-family: 'Speedee_W_BdIt';
  src: url("../font/WOFF2/Speedee_W_BdIt.woff2") format("woff2"), url("../font/WOFF/Speedee_W_BdIt.woff") format("woff"); }
@font-face {
  font-family: 'Speedee_W_It';
  src: url("../font/WOFF2/Speedee_W_It.woff2") format("woff2"), url("../font/WOFF/Speedee_W_It.woff") format("woff"); }
@font-face {
  font-family: 'Speedee_W_Lt';
  src: url("../font/WOFF2/Speedee_W_Lt.woff2") format("woff2"), url("../font/WOFF/Speedee_W_Lt.woff") format("woff"); }
@font-face {
  font-family: 'Speedee_W_LtIt';
  src: url("../font/WOFF2/Speedee_W_LtIt.woff2") format("woff2"), url("../font/WOFF/Speedee_W_LtIt.woff") format("woff"); }
@font-face {
  font-family: 'Speedee_W_Rg';
  src: url("../font/WOFF2/Speedee_W_Rg.woff2") format("woff2"), url("../font/WOFF/Speedee_W_Rg.woff") format("woff"); }
:root {
  --brand-red: #DA291C;
  --brand-yellow: #FFC72C;
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --manga-shadow: 8px 8px 0px 0px #000000;
  --manga-shadow-sm: 4px 4px 0px 0px #000000;
  --manga-shadow-red: 8px 8px 0px 0px #DA291C; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  font-family: "Speedee_W_Rg","Speedee_W_Bd",Helvetica Neue,Arial,Microsoft JhengHei,"Noto Sans TC","微軟正黑體",sans-serif,sans-serif;
  color: #000000;
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.5; }

a {
  color: inherit; }

nav.main-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 4px solid #000000;
  height: 80px; }
  nav.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  nav.main-nav .logo > a {
    max-width: 3rem;
    margin-right: 2rem;
    display: inline-block;
    vertical-align: middle; }
    nav.main-nav .logo > a img {
      max-width: 100%; }
  nav.main-nav .logo-wrap {
    display: inline-block;
    vertical-align: middle;
    transform: skewX(-12deg);
    background: #DA291C;
    padding: 5px 15px;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000; }
    nav.main-nav .logo-wrap a {
      color: #FFC72C;
      text-decoration: none;
      font-weight: 900;
      font-size: 1.5rem; }
  nav.main-nav .nav-links {
    display: none;
    gap: 30px;
    align-items: center; }
    nav.main-nav .nav-links a {
      font-weight: 900;
      font-style: italic;
      color: #000000;
      text-decoration: none; }
      nav.main-nav .nav-links a:hover, nav.main-nav .nav-links a.here {
        color: #DA291C;
        text-decoration: underline;
        text-decoration-thickness: 4px; }

.btn-manga {
  background: #FFC72C;
  border: 2px solid #000000;
  padding: 8px 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 4px 0px 0px #000000;
  transition: 0.2s;
  color: #DA291C; }
  .btn-manga:hover {
    transform: translateY(-3px);
    background: #DA291C;
    color: white; }

.section-title {
  text-align: center;
  margin-bottom: 60px; }
  .section-title h2 {
    display: inline-block;
    background: white;
    border: 4px solid #000000;
    padding: 15px 30px;
    box-shadow: 8px 8px 0px 0px #000000;
    transform: rotate(-2deg);
    font-weight: 900;
    font-style: italic;
    font-size: 2.5rem; }
    @media (max-width: 767px) {
      .section-title h2 {
        font-size: 1.5rem; } }

.mobile-trigger {
  display: block;
  font-size: 1.8rem;
  cursor: pointer; }

.mobile-overlay {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 4px solid #000000;
  padding: 20px;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  font-weight: 900; }

@media (min-width: 767px) {
  nav.main-nav .nav-links {
    display: flex !important; }

  .mobile-trigger {
    display: none; } }
header.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #DA291C;
  padding-top: 60px; }
  @media (max-width: 767px) {
    header.hero {
      min-height: 650px; } }
  header.hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1; }
  header.hero .speed-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.3;
    mix-blend-mode: overlay;
    background: repeating-conic-gradient(from 0deg, black 0deg 10deg, transparent 10deg 20deg); }
  header.hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px; }
    header.hero .hero-content .wanted-badge {
      position: absolute;
      top: -100px;
      left: -20px;
      background: white;
      border: 4px solid #000000;
      padding: 15px;
      border-radius: 50%;
      border-bottom-left-radius: 0;
      transform: rotate(-12deg);
      box-shadow: 8px 8px 0px 0px #000000;
      font-weight: 900;
      font-size: 1.2rem;
      text-align: center;
      line-height: 1.2;
      animation: bounce 2s infinite; }
    header.hero .hero-content .hero-tag {
      background: #FFFFFF;
      display: inline-block;
      padding: 5px 15px;
      border: 4px solid #000000;
      transform: skewX(-12deg);
      margin-bottom: 20px;
      font-weight: 900;
      box-shadow: 4px 4px 0px 0px #000000; }
    header.hero .hero-content h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 900;
      color: #FFC72C;
      line-height: 1;
      font-style: italic;
      text-shadow: 6px 6px 0 #000;
      transform: translate(-10px, 0); }
      header.hero .hero-content h1 span {
        color: #FFFFFF; }
      header.hero .hero-content h1 + strong {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        font-style: italic;
        font-weight: bold;
        text-shadow: 3px 3px 0 #000;
        margin: 1rem auto 0; }
    header.hero .hero-content .hero-sub {
      background: black;
      color: white;
      display: inline-block;
      margin: 1rem auto;
      font-size: 1rem;
      transform: skewX(-12deg); }
      header.hero .hero-content .hero-sub ul {
        max-width: 300px;
        text-align: center; }
        header.hero .hero-content .hero-sub ul li {
          display: inline-block;
          vertical-align: middle;
          list-style: none;
          text-align: left;
          transform: skewX(12deg); }
          header.hero .hero-content .hero-sub ul li:nth-child(1) {
            width: 62%;
            padding: .5rem .5rem .5rem 1rem; }
          header.hero .hero-content .hero-sub ul li:nth-child(2) {
            width: 35%; }
          header.hero .hero-content .hero-sub ul li img {
            max-width: 180px;
            transform: scale(1.2) translate(0.5rem, -0.5rem); }
      @media (max-width: 767px) {
        header.hero .hero-content .hero-sub {
          font-size: 1rem;
          margin: .5rem auto 1rem; }
          header.hero .hero-content .hero-sub ul li {
            font-size: .9rem; }
            header.hero .hero-content .hero-sub ul li img {
              max-width: 110px; } }
      header.hero .hero-content .hero-sub + div a {
        padding: 15px 40px;
        font-size: 1.5rem;
        text-decoration: none;
        display: inline-block; }
        @media (max-width: 767px) {
          header.hero .hero-content .hero-sub + div a {
            padding: 5px 15px;
            font-size: 1.3rem; } }
  header.hero .main_shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    height: 60px;
    z-index: 10;
    background-image: radial-gradient(circle, #e5e7eb 20%, transparent 20%);
    background-size: 20px 20px; }

section.highlights {
  padding: 5rem 0rem;
  background-image: radial-gradient(circle, #e5e7eb 20%, transparent 20%);
  background-size: 20px 20px; }
  section.highlights .grid {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center; }

.manga-panel {
  border: 4px solid #000000;
  background: white;
  padding: 30px;
  position: relative;
  box-shadow: 8px 8px 0px 0px #000000;
  transition: 0.3s;
  max-width: 100%;
  width: 45%;
  display: inline-block;
  margin: 1%; }
  @media (max-width: 767px) {
    .manga-panel {
      width: 100%;
      margin: 1rem auto; } }
  .manga-panel:hover {
    transform: translateY(-10px); }
  .manga-panel .panel-num {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: #DA291C;
    color: white;
    border: 4px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(12deg); }
  .manga-panel img {
    max-width: 120px;
    display: block;
    margin: 0 auto; }
  .manga-panel h3 {
    font-weight: 900;
    border-bottom: 4px solid #FFC72C;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.5rem; }
  .manga-panel > i {
    font-size: 2rem;
    line-height: 5rem;
    display: block;
    height: 5.5rem;
    width: 5.5rem;
    border-radius: 5.5rem;
    border: #000 4px solid;
    background-color: #FFC72C;
    text-align: center;
    margin: .5rem auto;
    color: #000000; }
  .manga-panel:last-child {
    background-color: #FFC72C; }
    .manga-panel:last-child > i {
      background-color: #DA291C;
      color: #FFFFFF; }
    .manga-panel:last-child h3 {
      border-bottom: 4px solid #DA291C; }

section.highlights_2 {
  background-image: radial-gradient(circle, #fff3d1 20%, transparent 20%);
  background-size: 30px 30px; }
  section.highlights_2 .grid {
    max-width: 1300px; }
  section.highlights_2 .manga-panel {
    min-height: 380px;
    vertical-align: top;
    width: 22%; }
    @media (max-width: 1000px) {
      section.highlights_2 .manga-panel {
        width: 100%;
        margin: 1rem 1%;
        min-height: auto;
        max-width: 300px; } }
    section.highlights_2 .manga-panel strong {
      display: block;
      color: #DA291C;
      font-size: 1.2rem;
      margin-bottom: .5rem; }
    section.highlights_2 .manga-panel ul li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: .5rem;
      list-style: none;
      text-align: left; }
    section.highlights_2 .manga-panel ul li:before {
      content: '\f00c';
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #DA291C;
      position: absolute;
      left: 0;
      top: 0; }

section.reson-section {
  background-color: #DA291C;
  padding: 5rem 1rem;
  color: #FFFFFF;
  text-align: center; }
  section.reson-section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px; }
  section.reson-section h2 {
    margin: 1rem auto;
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    font-style: italic;
    text-shadow: 6px 6px 0 #000; }
    section.reson-section h2 span {
      color: #FFC72C; }
  section.reson-section > div {
    max-width: 1000px;
    width: 90%;
    margin: 2rem auto; }
    section.reson-section > div div {
      width: 30%;
      background-color: #FFFFFF;
      font-size: 1.5rem;
      font-weight: bold;
      box-shadow: 1rem 1rem 0 #000000;
      border-radius: 2rem;
      border-bottom-right-radius: 0px;
      border: 4px solid #000000;
      display: inline-block;
      vertical-align: middle;
      text-align: center;
      padding: 3rem 1rem;
      color: #000000;
      margin: 1%; }
      section.reson-section > div div:nth-child(1) {
        transform: rotate(3deg); }
      section.reson-section > div div:nth-child(2) {
        transform: rotate(-3deg);
        border-radius: 2rem;
        border-top-left-radius: 0px; }
      section.reson-section > div div:nth-child(3) {
        transform: rotate(2deg);
        border-radius: 2rem;
        border-top-right-radius: 0px; }
  @media (max-width: 767px) {
    section.reson-section h2 {
      font-size: 2rem; }
    section.reson-section > div div {
      width: 100%;
      margin: 1.5rem auto;
      font-size: 1.2rem;
      display: block;
      width: auto;
      padding: 1.5rem .5rem; }
      section.reson-section > div div:nth-child(1) {
        transform: none; }
      section.reson-section > div div:nth-child(2) {
        transform: none; }
      section.reson-section > div div:nth-child(3) {
        transform: none; } }

section.map-section {
  padding: 5rem 0rem;
  background-image: radial-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  /* Pins */
  /* List Area */
  /* --- Custom Scrollbar --- */ }
  section.map-section .section-title h2 {
    transform: rotate(2deg);
    clear: both; }
  section.map-section .section-title > span {
    background-color: #000;
    color: #FFC72C;
    transform: skewY(1deg) skewX(1deg);
    padding: .5rem;
    display: inline-block;
    font-weight: bold;
    font-size: .8rem;
    margin-bottom: .5rem; }
  section.map-section .section-title > p {
    display: block;
    color: #666;
    text-align: center;
    margin-top: 1.5rem; }
  section.map-section .flex-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; }
    @media (min-width: 992px) {
      section.map-section .flex-layout {
        flex-direction: row; } }
  section.map-section .map-container {
    flex: 1;
    height: 550px;
    border: 4px solid #000000;
    position: relative;
    background: url("../images/map.png?1") no-repeat center center #eaeaea;
    border-radius: 20px;
    box-shadow: 8px 8px 0px 0px #000000;
    overflow: hidden;
    background-size: auto 100%; }
  section.map-section .map_bgw {
    padding: 40px;
    opacity: 0.05;
    font-size: 6rem;
    font-weight: 900; }
  section.map-section .list-container {
    flex: 1;
    border: 4px solid #000000;
    box-shadow: 8px 8px 0px 0px #000000;
    height: 550px;
    display: flex;
    flex-direction: column;
    max-height: 600px; }
  section.map-section .pin {
    position: absolute;
    cursor: pointer;
    animation: pin-bounce 2s infinite;
    transition: 0.3s;
    font-size: 2.5rem; }
    section.map-section .pin:hover {
      transform: scale(1.25) rotate(-12deg); }
  section.map-section .pin-north {
    top: 10%;
    left: 55%;
    color: var(--brand-red); }
  section.map-section .pin-central {
    top: 35%;
    left: 40%;
    color: var(--brand-yellow);
    -webkit-text-stroke: 1px black; }
  section.map-section .pin-south {
    top: 60%;
    left: 30%;
    color: #2563eb; }
  section.map-section .pin-outlying {
    top: 40%;
    left: 10%;
    color: #ff9e4f; }
@keyframes pin-bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
  section.map-section .session-list-card {
    flex-grow: 1;
    width: 100%;
    background: white;
    border: 4px solid black;
    box-shadow: var(--manga-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px; }
  section.map-section .list-header {
    background: black;
    color: var(--brand-yellow);
    padding: 16px;
    text-align: center;
    font-weight: 900;
    font-size: 1.5rem;
    border-bottom: 4px solid black; }
  section.map-section .list-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px; }
    section.map-section .list-body .list_data > strong {
      font-size: 1.2rem;
      font-weight: bold;
      border-left: 5px solid #DA291C;
      display: block;
      margin-bottom: 1rem;
      padding-left: 1rem;
      margin-top: 2rem; }
    section.map-section .list-body .list_data > div {
      margin-bottom: 4rem; }
    section.map-section .list-body .list_data:nth-child(2) > strong {
      border-left: 5px solid #FFC72C; }
    section.map-section .list-body .list_data:nth-child(3) > strong {
      border-left: 5px solid #2563eb; }
    section.map-section .list-body .list_data:nth-child(4) > strong {
      border-left: 5px solid #ff9e4f; }
  section.map-section .session-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: 0.2s;
    cursor: default; }
    @media (max-width: 767px) {
      section.map-section .session-item {
        display: block !important; } }
    section.map-section .session-item:hover {
      border-color: black;
      background: white; }
    section.map-section .session-item .info-box {
      width: 40%;
      margin-right: 1%; }
      @media (max-width: 767px) {
        section.map-section .session-item .info-box {
          width: 100%;
          margin-right: 0; } }
      section.map-section .session-item .info-box .school-name {
        display: block;
        font-weight: 900;
        font-size: 1.125rem;
        transition: 0.2s; }
      section.map-section .session-item .info-box .session-type {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        color: #9ca3af;
        background: #f3f4f6;
        padding: 2px 8px;
        border-radius: 999px;
        margin-top: 4px; }
    section.map-section .session-item .date-box {
      font-weight: 900;
      width: 25%; }
      @media (max-width: 767px) {
        section.map-section .session-item .date-box {
          width: 100%;
          margin-right: 0;
          margin: .5rem auto; } }
    section.map-section .session-item:hover .school-name {
      color: var(--brand-red); }
    section.map-section .session-item button {
      margin-left: 8px;
      background: var(--brand-yellow);
      border: 2px solid black;
      padding: 5px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 2px 2px 0 black;
      color: #000; }
  section.map-section .list-body::-webkit-scrollbar {
    width: 8px; }
  section.map-section .list-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-left: 2px solid black; }
  section.map-section .list-body::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border: 2px solid black; }
  section.map-section .session-item {
    background: #f9f9f9;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s; }
    section.map-section .session-item:hover {
      border-color: #000000;
      background: white; }
    section.map-section .session-item .info b {
      font-size: 1.1rem; }
    section.map-section .session-item .date {
      font-weight: 900;
      color: #DA291C;
      font-size: 1.4rem; }

section.join-section {
  background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 10px, transparent 10px, transparent 20px) #FFC72C;
  padding: 5rem 1rem;
  text-align: center;
  border-top: 8px solid #000000; }
  section.join-section .manga-panel {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--manga-shadow-red);
    border-radius: 20px;
    width: 90%;
    background-color: #FFFFFF; }
    section.join-section .manga-panel > span {
      background-color: #000;
      color: #FFC72C;
      transform: skewY(1deg) skewX(1deg);
      padding: .5rem;
      display: inline-block;
      font-weight: bold;
      font-size: .8rem;
      margin-bottom: .5rem; }
    section.join-section .manga-panel > h2 {
      font-size: 2.5rem;
      font-weight: 900;
      margin: .5rem auto;
      display: block; }
    section.join-section .manga-panel > p {
      display: block;
      color: #666;
      text-align: center; }
    section.join-section .manga-panel > div {
      margin: 1rem auto; }
      section.join-section .manga-panel > div > button {
        width: 45%;
        margin: 1%;
        padding: 2rem;
        border-radius: 20px;
        background-color: #fff; }
        @media (max-width: 767px) {
          section.join-section .manga-panel > div > button {
            width: 100%;
            margin: 1rem auto; } }
        section.join-section .manga-panel > div > button i {
          font-size: 3rem;
          line-height: 5rem;
          display: block;
          height: 5.5rem;
          width: 5.5rem;
          border-radius: 5.5rem;
          border: #000 4px solid;
          background-color: #DA291C;
          text-align: center;
          margin: .5rem auto;
          color: #FFFFFF;
          position: relative; }
          section.join-section .manga-panel > div > button i span {
            position: absolute;
            font-size: 2rem;
            color: #FFC72C;
            right: -1rem;
            bottom: -.5rem;
            transform: rotate(-30deg); }
        section.join-section .manga-panel > div > button h3 {
          font-size: 1.5rem;
          color: #000000; }
        section.join-section .manga-panel > div > button p {
          font-size: 1rem;
          color: #666;
          display: block; }
        section.join-section .manga-panel > div > button:nth-child(2) {
          background-color: #000000; }
          section.join-section .manga-panel > div > button:nth-child(2) i {
            background-color: #FFC72C;
            border: #FFFFFF 4px solid;
            color: #000000; }
          section.join-section .manga-panel > div > button:nth-child(2) h3 {
            color: #FFC72C; }

footer {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 3rem 1rem;
  border-top: #DA291C 8px solid; }
  footer h2 {
    font-size: 1.5rem;
    color: #FFC72C;
    font-weight: bold; }
  footer > div {
    margin: 1rem auto; }
    footer > div a {
      color: #FFFFFF;
      padding: 1rem; }
  footer p {
    font-size: .8rem;
    color: #666; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; }

.modal-box {
  background: white;
  border: 6px solid #000000;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 8px 8px 0px 0px #000000;
  border-radius: 20px; }
  .modal-box .close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #FFC72C;
    border: 3px solid #000000;
    border-radius: 50%;
    font-weight: 900;
    cursor: pointer; }

/* Result View inside Modal */
.box_send {
  text-align: center; }

.box_send h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-red);
  margin-bottom: 1rem;
  font-style: italic; }

.box_send .result-card {
  background: #f4f4f4;
  border: 3px solid #000;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 4px 4px 0px #000; }

.box_send .result-card p {
  margin-bottom: 10px;
  font-weight: 700; }

.box_send .result-card strong {
  display: block;
  color: var(--brand-red);
  font-size: 1.1rem; }

.box_send .cta-box {
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px; }

.box_send .cta-box p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--brand-yellow); }

.box_send .btn-resume {
  display: inline-block;
  background: var(--brand-red);
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-weight: 900;
  text-decoration: none;
  transform: skewX(-10deg); }

.box_send .btn-resume span {
  display: block;
  transform: skewX(10deg); }

.box_send .btn-resume:hover {
  background: white;
  color: var(--brand-red);
  border-color: var(--brand-red); }

.box {
  display: none; }
  .box h2 {
    text-align: center;
    font-weight: 900;
    font-style: italic;
    color: #DA291C;
    margin-bottom: 20px; }
  .box input[type="checkbox"] {
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    padding: .5rem;
    border: 2px solid #000;
    width: 20px;
    padding: .5rem; }
  .box input[type="checkbox"] + p {
    display: inline-block;
    padding-left: .5rem;
    width: calc(100% - 30px);
    font-size: 13px;
    line-height: 1.2;
    color: #666;
    vertical-align: top; }

.box_form form > div {
  margin-bottom: 1rem; }
  .box_form form > div label {
    display: block;
    font-weight: bold;
    margin-bottom: .5rem; }
  .box_form form > div input, .box_form form > div select {
    width: 100%;
    padding: 10px;
    border: 3px solid black;
    font-weight: 700; }
.box_form .submit {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem; }

.box_data .result-card {
  background: #f4f4f4;
  border: 3px solid #000;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 4px 4px 0px #000; }

@keyframes bounce {
  0%, 100% {
    transform: rotate(-12deg) translateY(0); }
  50% {
    transform: rotate(-12deg) translateY(-15px); } }
@keyframes pin-bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
