
:root {
  --brand-red: #C4181F;
  --brand-red-dark: #b01f24;
  --brand-black: #000;
  --brand-dark: #101011;
  --body-text: #2f3138;
}

/*--------------------------------- 01 Variables / Base ---------------------------------*/
body {
  background: var(--brand-black);
  color: var(--body-text);
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-red);
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: var(--brand-red-dark);
  outline: none;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(229, 0, 17, 0.35);
  outline-offset: 3px;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: var(--brand-black);
}


.wow {
  visibility: hidden;
}


/*--------------------------------- 02 Back To Top ---------------------------------*/

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--brand-red);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top[style*="display: block"] {
  display: block !important;
}

.back-to-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.back-to-top:focus {
  background: var(--brand-black);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: var(--brand-black);
  color: #fff;
}


/*--------------------------------- 03 Header ---------------------------------*/

#header {
  min-height: 90px;
  padding: 24px 0;
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-fixed {
  min-height: 76px;
  padding: 14px 0;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s;
}

#header .container {
  min-height: auto;
  padding-right: 15px;
  padding-left: 15px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: none;
}

#header #logo {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

#header #logo img {
  display: block;
  width: 150px;
  height: auto;
  padding: 0;
  margin: 0;
  max-height: 40px;
}


/*--------------------------------- 04 Navigation ---------------------------------*/

#header .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  box-shadow: none;
}

#header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.18);
}

#header .navbar-nav .nav-link {
  position: relative;
  padding: 12px 0;
  margin: 0 16px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Roboto','Noto Sans TC',sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: 0;
  transition: color 0.25s ease;
}

#header .navbar-nav .nav-link:hover,
#header .navbar-nav .nav-link:focus,
#header .navbar-nav .nav-link.active {
  color: #fff;
  background: transparent;
}

#header .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 6px;
  display: block;
  background-color: var(--brand-red);
  visibility: hidden;
  transition: all 0.25s ease;
}

#header .navbar-nav .nav-link:hover:before,
#header .navbar-nav .nav-link.active:before {
  width: 100%;
  visibility: visible;
}

#header .nav-cta {
  display: flex;
  align-items: center;
}

#header .nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 24px;
  color: #fff;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#header .nav-contact-btn:hover,
#header .nav-contact-btn:focus,
#header .nav-contact-btn.active {
  color: #fff;
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  box-shadow: 0 10px 24px rgba(229, 0, 17, 0.25);
  transform: translateY(-1px);
}


/*--------------------------------- 05 Hero ---------------------------------*/

#intro {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: url(../img/intro-bg.webp) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro:before {
  content: "";
  background: rgba(15, 52, 89, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#intro h1 {
  color: #fff;
  font-size: clamp(37px, 7vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}

#intro h3 {
  color: #ea3046;
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  margin-bottom: 0;  
  margin-left: 5px;
  margin-right: 20px;
}

#intro h5 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(14px, 2.3vw, 26px);
  margin-top: 0;  
}


/*--------------------------------- 06 Countdown ---------------------------------*/

.start-in {
  display: inline-flex;
  background-color: #e50011;
  color: #fff;
  padding: 10px 12px 12px 12px;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  margin-top: -6px;
  margin-right: 20px; 
  line-height: 15px;
  vertical-align: middle;
}

#timer {
  padding: 10px 0;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 40px;
}

#timer span {
  font-size: 18px;
  font-weight: 200;
  margin-right: 10px;
}


/*--------------------------------- 07 Intro Info ---------------------------------*/

.intro-info .wrap {
  width: 100%;
  align-items: stretch;
}

.intro-info .wrap .info {
  flex: 1 1 65%;
  background: var(--brand-black);
  padding: 48px 5% 44px 8%;
  display: flex;
  align-items: flex-start;
}

.intro-info .wrap .info > .row {
  width: 100%;
}

.intro-info .wrap .info h3 {
  font-size: 16px;
  color: var(--brand-red);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.intro-info .wrap .info p {
  margin-top: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}


.intro-info .wrap .info-about {
  flex: 0 0 35%;
  width: 35%;
  background: var(--brand-red);
  padding: 48px 4% 44px !important;
}

.intro-info .wrap .info-about h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 30px;
}

.intro-info .wrap .info-about p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 0;
  margin-bottom: 0;
}

.intro-info .event-info p {
  margin-top: 14px;
}

.intro-info .event-info small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
  .intro-info .wrap .info {
    width: 100%;
    padding: 30px 24px;
  }

  .intro-info .wrap .info-about {
    flex-basis: auto;
    width: 100%;
    padding: 30px 24px !important;
  }
}

.intro-info .wrap .text {
  width: calc(100% - 40px);
}


@media (max-width: 767px) {
  .intro-info .wrap .info h3 {
    font-size: 16px;
    color: var(--brand-red);
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.1em;
  }

  .intro-info .wrap .info p {
    margin-top: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.03em;
    margin-bottom: 0;
  }

    .intro-info .event-info p {
    margin-top: 12px;
  }

  .intro-info .event-info small {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
  }

}


/*--------------------------------- 08 Stats ---------------------------------*/

#number,
#numeber {
  padding: 60px;
  background: url(../img/subscribe-bg.webp) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#number .container,
#number .row,
#numeber .container,
#numeber .row {
  position: relative;
  z-index: 1;
}

#number .row,
#numeber .row {
  row-gap: 24px;
}

#number:before,
#numeber:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.counter {
  padding: 20px 10px;
}

.count-title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #e50011;
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
  letter-spacing: 0.02em;
}

.count-text {
  font-size: 18px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #000;
}

.stat-icon {
  font-size: 32px;
  margin: 0 auto;
  float: none;
  display: table;
  color: #000;
}

@media (max-width: 767px) {
  #number,
  #numeber {
    padding: 45px 15px;
  }

  #number .col,
  #numeber .col {
    flex: 0 0 50%;
  }

  .count-title {
    font-size: 34px;
    letter-spacing: 0.02em;
  }

  .count-text {
    font-size: 16px;
  }
}


/*--------------------------------- 09 About / Exhibition Zones ---------------------------------*/
  #about {
    background-color: #f9f9f9;
    padding: 70px 20px 110px 20px;
  }

  .about-title {
    font-size: 32px;
    color: #e50011;
    font-weight: 900;
    line-height: 40px;
  }

  .about p {
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }


  
  
.expo-zones {
  margin-top: 64px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h3 {
  color: #000;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-focus-title {
  margin: 0 0 18px;
  color: #000;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}

.about-focus-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #202020;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
}

.about-focus-list i {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-size: 22px;
  line-height: 1.5;
}

.zone-card {
  width: 100%;
  padding: 0;
  background: #fff;
  border: 1px solid #dddddd;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.zone-card:hover {
  border-color: rgba(229, 0, 17, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.zone-card-title {
  display: flex;
  align-items: stretch;
  min-height: 104px;
  gap: 0;
}

.zone-card-title > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 104px;
  padding: 18px 20px;
}

.zone-card-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 92px;
  width: 92px;
  color: #fff;
  background: var(--brand-red);
  font-size: 34px;
}

.zone-card-title h4 {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.zone-card-title p {
  margin: 6px 0 0;
  color: #777778;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.zone-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.zone-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #202020;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.zone-list li i {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-size: 20px;
  line-height: 1.3;
}


/*--------------------------------- 11 Footer ---------------------------------*/

#footer {
  background: var(--brand-black);
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: var(--brand-dark);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 60px;
  margin-bottom: 20px;
}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  color: #fff;
  font-weight: 300;
  margin-right: 10px;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brand-red);
  letter-spacing: 0.05em;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: 300;
}

#footer .footer-top .footer-contact span {
  line-height: 26px;
  letter-spacing: 0.02em;
  font-size: 15px;
  font-weight: 500;
}

#footer .footer-top .footer-contact a {
  line-height: 26px;
  letter-spacing: 0.04em;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .footer-contact a:hover {
  line-height: 26px;
  letter-spacing: 0.04em;
  font-size: 15px;
  color: var(--brand-red);
  text-decoration: underline;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}


/*--------------------------------- 12 Responsive ---------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }

  #about {
    background-attachment: fixed;
  }
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  #header {
    min-height: 70px;
    padding: 15px 0;
    background: transparent;
    transition: all 0.5s;
  }

  #header:has(.navbar-collapse.show),
  #header:has(.navbar-collapse.collapsing),
  #header.menu-open,
  #header.header-scrolled,
  #header.header-fixed {
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: none;
  }

  #header .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  #header .navbar-collapse {
    flex-basis: 100%;
    background: transparent;
    margin-top: 14px;
    padding: 8px 0 4px;
  }

  #header .navbar-nav .nav-link {
    display: inline-block;
    padding: 10px 0;
    margin: 2px 0;
  }

  #header .navbar-nav .nav-link:before {
    bottom: 4px;
  }

  #header .navbar-nav .nav-link:hover:before,
  #header .navbar-nav .nav-link.active:before {
    width: 100%;
    visibility: visible;
  }

  #header .nav-cta {
    margin-top: 10px;
    margin-left: 0 !important;
  }

  #header .nav-contact-btn {
    width: 100%;
    min-height: 46px;
  }

  #intro .intro-container {
    top: 82px;
  }

  #intro h1 {
    font-size: 34px;
  }

  #intro p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
  }

  .expo-zones {
    margin-top: 44px;
  }

  .section-heading h3 {
    font-size: 26px;
  }

  .zone-card {
    padding: 0;
  }

  .zone-card-title {
    min-height: 118px;
  }

  .zone-card-title > div {
    min-height: 118px;
    padding: 18px 20px;
  }

  .zone-card-title i {
    flex-basis: 98px;
    width: 98px;
    font-size: 38px;
  }

  .zone-card-title h4 {
    font-size: 20px;
    line-height: 1.25;
  }

  .zone-card-title p {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.1;
  }

  .zone-list li {
    font-size: 16px;
  }

  .about-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .about p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .about-focus-title {
    font-size: 20px;
  }

  .about-focus-list li {
    font-size: 18px;
  }
}


/*--------------------------------- 10 Contact ---------------------------------*/

#contact
{
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact_text
{
  margin-top: 40px;
  margin-left: 30px;
  font-weight: 500;
  font-size: 18px;
}

.contact_text p
{
  margin-left:-10px;
  font-weight: 700;
  font-size: 18px;
}

.contact_list
{
  margin-left: -10px;
  margin-top: 30px;
}

.contact_list ul li
{
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 28px;
  margin-bottom: 20px;
}

.contact_list ul li i
{
  font-size: 16px;
  color: var(--brand-red);
  margin-right: 10px;
  margin-top: 2px;
}

.contact_list ul li a {
  color: #000;
  text-decoration:none;
}

.contact_list ul li a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}


.contact_title h3
{
  font-size: 28px;
  font-weight: 900;
  color: #000;
  line-height: 32px;
  letter-spacing: 0.02em;
}

.contact_title p
{
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.contact_form_container
{
  margin-top: 45px;
}

.contact_form .row {
  row-gap: 0;
}

.contact_input
{
  width: 100%;
  height: 52px;
  border: none;
  outline: none;
  background: #f2f2f2;
  padding-left: 25px;
  padding-right: 20px;
  border-left: solid 2px transparent;
  border-radius: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.contact_input:focus,
.contact_input:hover
{
  border-left: solid 2px var(--brand-red);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(229, 0, 17, 0.15);
}
.input_item
{
  margin-bottom: 17px;
}
.contact_input::-webkit-input-placeholder
{
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
}
.contact_input:-moz-placeholder
{
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
}
.contact_input::-moz-placeholder
{
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
} 
.contact_input:-ms-input-placeholder
{ 
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
}
.contact_input::placeholder
{
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #999 !important;
}
.contact_textarea
{
  padding-top: 15px;
  height: 200px;
}
.contact_button
{
  background: var(--brand-red);
  border: 0;
  min-width: 140px;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  margin-top: 30px;
  font-weight: 600;
}
.contact_button:hover
{
  background: var(--brand-black);
  color: #fff;
}

@media only screen and (max-width: 767px) {

  .contact_content{
    margin-top: 60px;
  }
  .contact_text
  {
    margin-top: 40px;
    margin-left: 30px;
    font-weight: 700;
    font-size: 16px;

  }
  .contact_list
  {
    margin-left: -10px;
    margin-top: 30px;
  }

  .contact_list ul li
  {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.714;
    margin-bottom: 20px;
  }

  .contact_list ul li i
  {
    font-size: 16px;
    font-weight: 400;
    color: var(--brand-red);
    margin-right: 10px;
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  #header {
    min-height: 72px;
    padding: 18px 0;
  }

  #header #logo img {
    width: 130px;
    max-height: 34px;
  }

  #header .navbar-toggler {
    width: 48px;
    height: 48px;
  }

  #intro {
    min-height: 100svh;
    background-position: center top;
  }

  #intro .intro-container {
    top: 76px;
    justify-content: center;
    align-items: stretch;
    padding: 0 28px;
    text-align: left;
  }

  #intro .intro-heading {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  #intro h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 8px;
    text-align: left !important;
    letter-spacing: 0.01em;
  }

  #intro h1 {
    font-size: clamp(38px, 11vw, 44px);
    line-height: 1.12;
    letter-spacing: 0;
    margin: 0;
    text-align: left;
    word-break: keep-all;
  }

  #intro h5 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 8px;
    text-align: right !important;
  }

  .countdown {
    width: 100%;
    max-width: 420px;
    margin: 34px auto 0;
  }

  #timer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    padding: 0;
    margin-top: 0;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .start-in {
    flex: 0 0 auto;
    padding: 9px 10px;
    margin: 0 4px 0 0;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
  }

  #timer span {
    flex: 0 0 auto;
    margin-right: 3px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  #intro .intro-container {
    padding: 0 22px;
  }

  #intro h3 {
    font-size: 21px;
  }

  #intro h1 {
    font-size: clamp(34px, 10.2vw, 38px);
  }

  #intro h5 {
    font-size: 16px;
  }

  #timer {
    font-size: 24px;
    gap: 4px;
  }

  .start-in {
    font-size: 14px;
    padding: 8px 9px;
    margin-right: 2px;
  }

  #timer span {
    font-size: 13px;
    margin-right: 2px;
  }
}

@media (max-width: 360px) {
  #timer {
    font-size: 22px;
    gap: 3px;
  }

  .start-in {
    font-size: 13px;
    padding: 7px 8px;
  }

  #timer span {
    font-size: 12px;
  }
}
