:root {
  --dl-layout-size-large: 144px;
  --dl-layout-size-small: 48px;
  --dl-layout-space-unit: 16px;
  --dl-layout-size-medium: 96px;
  --dl-layout-size-xlarge: 192px;
  --dl-layout-size-xsmall: 16px;
  --dl-color-theme-accent1: #FFFFFF;
  --dl-color-theme-accent2: #F0F0F0; /* Slightly lighter accent for subtlety */
  --dl-layout-radius-round: 50%;
  --dl-layout-size-xxlarge: 288px;
  --dl-color-theme-primary1: #4A90E2; /* A softer, modern blue */
  --dl-color-theme-primary2: #6DAFFD; /* Lighter shade of primary blue */
  --dl-layout-size-maxwidth: 1200px; /* Slightly reduced max-width for tighter layout */
  --dl-layout-radius-radius2: 2px;
  --dl-layout-radius-radius4: 4px;
  --dl-layout-radius-radius8: 8px;
  --dl-layout-space-halfunit: 8px;
  --dl-layout-space-sixunits: 96px;
  --dl-layout-space-twounits: 32px;
  --dl-color-theme-secondary1: #333333; /* Darker secondary for better contrast */
  --dl-color-theme-secondary2: #F5F5F5; /* Very light gray for backgrounds */
  --dl-layout-space-fiveunits: 80px;
  --dl-layout-space-fourunits: 64px;
  --dl-layout-space-threeunits: 48px;
  --dl-color-theme-neutral-dark: #222222; /* Deeper neutral dark */
  --dl-layout-radius-cardradius: 8px;
  --dl-color-theme-neutral-light: #F9F9F9; /* Off-white for general background */
  --dl-layout-radius-imageradius: 8px;
  --dl-layout-radius-inputradius: 6px; /* Slightly sharper input corners */
  --dl-layout-radius-buttonradius: 6px; /* Slightly sharper button corners */
  --dl-layout-space-oneandhalfunits: 24px;
}
 
.button {
  color: var(--dl-color-theme-secondary1); /* Changed text color to secondary1 */
  display: inline-block;
  padding: 0.75rem 1.5rem; /* Increased padding for better touch targets */
  border-color: var(--dl-color-theme-primary1); /* Using primary color for border */
  border-width: 1px;
  border-radius: var(--dl-layout-radius-buttonradius);
  background-color: var(--dl-color-theme-primary1); /* Using primary color for background */
  font-weight: 500; /* Slightly bolder text */
  transition: all 0.3s ease; /* Smooth transitions */
}
 
.button:hover {
  background-color: var(--dl-color-theme-primary2); /* Lighter primary on hover */
  border-color: var(--dl-color-theme-primary2);
  color: var(--dl-color-theme-neutral-light); /* Lighter text on hover */
}
 
.input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.75rem 1rem;
  border-color: var(--dl-color-theme-secondary1); /* Changed border color */
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
  transition: border-color 0.3s ease;
}
 
.input:focus {
  border-color: var(--dl-color-theme-primary1); /* Primary color on focus */
}
 
.textarea {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  padding: 0.75rem;
  border-color: var(--dl-color-theme-secondary1); /* Changed border color */
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
  transition: border-color 0.3s ease;
}
 
.textarea:focus {
  border-color: var(--dl-color-theme-primary1); /* Primary color on focus */
}
 
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none; /* Removed default list style */
  list-style-position: outside;
}
 
.list-item {
  display: list-item;
  margin-bottom: 0.5em; /* Added space between list items */
}
 
.teleport-show {
  display: flex !important;
  transform: none !important;
}
 
.thq-input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  outline: none;
  padding: 0.75rem 1rem;
  align-self: stretch;
  text-align: center;
  border-color: var(--dl-color-theme-secondary1); /* Changed border color */
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
  transition: border-color 0.3s ease;
}
 
.thq-input:focus {
  outline: none; /* Removed default outline */
  border: 1px solid var(--dl-color-theme-primary1);
}
 
.thq-button-filled {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-neutral-light); /* Changed fill to neutral-light */
  color: var(--dl-color-theme-neutral-light); /* Changed text color to neutral-light */
  cursor: pointer;
  display: flex;
  transition: all 0.3s ease;
  align-items: center;
  font-weight: 600; /* Bolder text */
  padding-top: var(--dl-layout-space-unit); /* Increased padding */
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-unit); /* Increased padding */
  justify-content: center;
  background-color: var(--dl-color-theme-primary1);
}
 
.thq-button-filled:hover {
  fill: var(--dl-color-theme-neutral-light);
  color: var(--dl-color-theme-neutral-light);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
  transform: translateY(-2px); /* Slight lift effect */
}
 
.thq-button-outline {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  border: 1px solid var(--dl-color-theme-primary1); /* Explicitly set border color */
  cursor: pointer;
  display: flex;
  transition: all 0.3s ease;
  align-items: center;
  font-weight: 600; /* Bolder text */
  padding-top: var(--dl-layout-space-unit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-unit);
  justify-content: center;
  background-color: transparent; /* Transparent background */
}
 
.thq-button-outline:hover {
  fill: var(--dl-color-theme-neutral-light);
  color: var(--dl-color-theme-neutral-light);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
  transform: translateY(-2px); /* Slight lift effect */
}
 
.thq-button-flat {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  cursor: pointer;
  display: flex;
  transition: all 0.3s ease;
  align-items: center;
  font-weight: 600; /* Bolder text */
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: transparent;
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
  background-color: transparent;
}
 
.thq-button-flat:hover {
  fill: var(--dl-color-theme-primary2);
  color: var(--dl-color-theme-primary2);
  background-color: transparent;
  text-decoration: underline; /* Underline on hover for flat buttons */
}
 
.thq-heading-1 {
  font-size: 42px; /* Slightly smaller for elegance */
  font-family: Inter, sans-serif; /* Changed to Inter for a modern look */
  font-weight: 700;
  line-height: 1.3; /* Adjusted line height */
  color: var(--dl-color-theme-neutral-dark); /* Ensure heading color is dark */
}
 
.thq-heading-2 {
  font-size: 32px; /* Slightly smaller */
  font-family: Inter, sans-serif; /* Changed to Inter */
  font-weight: 600;
  line-height: 1.4;
  color: var(--dl-color-theme-neutral-dark);
}
 
.thq-heading-3 {
  font-size: 24px; /* Slightly smaller */
  font-family: Inter, sans-serif; /* Changed to Inter */
  font-weight: 600;
  line-height: 1.5;
  color: var(--dl-color-theme-neutral-dark);
}
 
.thq-body-large {
  font-size: 17px; /* Slightly smaller for refinement */
  font-family: Noto Sans, sans-serif;
  line-height: 1.6; /* Increased line height for readability */
  color: var(--dl-color-theme-neutral-dark);
}
 
.thq-body-small {
  font-size: 15px; /* Slightly smaller */
  font-family: Noto Sans, sans-serif;
  line-height: 1.6;
  color: var(--dl-color-theme-neutral-dark);
}
 
.thq-team-image-round {
  width: 90px; /* Slightly larger image */
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--dl-color-theme-primary1); /* Added a subtle border */
}
 
.thq-section-padding {
  width: 100%;
  display: flex;
  padding: var(--dl-layout-space-sixunits) var(--dl-layout-space-fiveunits); /* More vertical padding */
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-section-max-width {
  width: 100%;
  max-width: var(--dl-layout-size-maxwidth);
}
 
.thq-img-ratio-1-1 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--dl-layout-radius-imageradius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
}
 
.thq-img-ratio-16-9 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--dl-layout-radius-imageradius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
.thq-img-ratio-4-3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--dl-layout-radius-imageradius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
.thq-img-ratio-4-6 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/6;
  border-radius: var(--dl-layout-radius-imageradius);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
.thq-img-round {
  width: 100%;
  border-radius: var(--dl-layout-radius-round);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
 
.thq-flex-column {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-flex-row {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
}
 
.thq-grid-6 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: repeat(6, 1fr); /* Changed to repeat for clarity */
}
 
.thq-grid-5 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: repeat(5, 1fr); /* Changed to repeat for clarity */
}
 
.thq-card {
  gap: var(--dl-layout-space-oneandhalfunits);
  display: flex;
  padding: var(--dl-layout-space-twounits);
  align-items: stretch;
  border-radius: var(--dl-layout-radius-cardradius);
  flex-direction: column;
  background-color: var(--dl-color-theme-accent1); /* White background for cards */
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* More pronounced, softer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.thq-card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12); /* Enhanced shadow on hover */
}
 
.thq-box-shadow {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* Updated shadow */
}
 
.thq-grid-3 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: repeat(3, 1fr);
}
 
.thq-grid-4 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: repeat(4, 1fr);
}
 
.thq-grid-2 {
  width: 100%;
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: repeat(2, 1fr);
}
 
.thq-checkbox {
  width: 20px; /* Slightly larger checkbox */
  height: 20px;
  border-color: var(--dl-color-theme-primary1);
  border-radius: 3px;
}
 
.thq-select {
  cursor: pointer;
  appearance: none;
  padding-top: var(--dl-layout-space-halfunit);
  padding-left: var(--dl-layout-space-unit);
  border-radius: var(--dl-layout-radius-inputradius);
  padding-right: var(--dl-layout-space-twounits);
  padding-bottom: var(--dl-layout-space-halfunit);
  background-color: var(--dl-color-theme-neutral-light);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 8px center;
  border: 1px solid var(--dl-color-theme-secondary1); /* Consistent border */
  transition: border-color 0.3s ease;
}
 
.thq-select:focus {
  border-color: var(--dl-color-theme-primary1);
}
 
.thq-divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: var(--dl-color-theme-secondary2); /* Lighter divider */
}
 
.thq-icon-small {
  width: 20px; /* Slightly smaller icons for a cleaner look */
  height: 20px;
  fill: var(--dl-color-theme-primary1); /* Primary color for icons */
}
 
.thq-button-icon {
  fill: var(--dl-color-theme-primary1); /* Changed fill to primary1 */
  padding: 5px; /* Increased padding for better clickability */
  transition: transform 0.3s ease, fill 0.3s ease;
  border-radius: var(--dl-layout-radius-round);
  background-color: transparent;
}
 
.thq-button-icon:hover {
  fill: var(--dl-color-theme-primary2);
  transform: scale(1.1); /* Slight scale on hover */
}
 
.thq-icon-medium {
  width: 32px; /* Adjusted size */
  height: 32px;
  fill: var(--dl-color-theme-primary1);
}
 
.thq-icon-x-small {
  width: 16px; /* Adjusted size */
  height: 16px;
  fill: var(--dl-color-theme-primary1);
}
 
.thq-link {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
  transition: background-position 300ms ease, color 300ms ease;
  font-weight: 500; /* Slightly less bold */
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
}
 
.thq-link:hover {
  background-position: 0 100%;
  -webkit-text-fill-color: var(--dl-color-theme-primary1); /* Keep primary color on hover */
}
 
.thq-grid-auto-300 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits); /* Increased gap */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax for better responsiveness */
}
 
.thq-animated-group-vertical-reverse {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-horizontal-reverse {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-vertical {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
}
 
.thq-animated-group-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
}
 
.thq-animated-group-container-vertical {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
 
.thq-animated-group-container-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
}
 
.thq-mask-image-vertical {
  mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent); /* Softer fade */
}
 
.thq-mask-image-horizontal {
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); /* Softer fade */
}
 
.thq-img-scale {
  transition: transform 0.3s ease;
}
 
.thq-img-scale:hover {
  transform: scale(1.03); /* Slightly less aggressive scale */
}
 
.thq-animated-card-bg-1 {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent1);
}
 
.thq-animated-card-bg-2 {
  transition: transform 0.3s ease;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent2);
}
 
.thq-button-animated {
  outline: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-width: 1px; /* Thinner border */
  border-color: var(--dl-color-theme-primary1);
  background-color: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-neutral-light);
  font-weight: 600;
  padding: var(--dl-layout-space-unit) var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  transition: all 0.3s ease;
}
 
.thq-input::placeholder {
  text-align: center;
  vertical-align: middle;
  color: #999; /* Lighter placeholder text */
}
 
.thq-animated-group-container-vertical:hover div {
  animation-play-state: paused;
}
 
.thq-animated-group-container-horizontal:hover div {
  animation-play-state: paused;
}
 
.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(1deg) skew(0deg, 0deg); /* Reduced rotation */
}
 
.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-1deg) skew(0deg, 0deg); /* Reduced rotation */
}
 
.thq-button-animated:before {
  top: 0;
  left: -100%; /* Start off-screen */
  color: var(--dl-color-theme-primary1); /* Primary color for hover text */
  width: 100%; /* Width matches button */
  height: 100%;
  content: attr(data-hover-text); /* Use a data attribute for hover text */
  z-index: 2; /* Ensure it's above the button text */
  position: absolute;
  transform: translateX(0); /* No initial transform */
  transition: transform 0.3s ease-out; /* Smooth slide in */
  border-radius: var(--dl-layout-radius-buttonradius);
  background-color: var(--dl-color-theme-neutral-light); /* Light background for hover */
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.thq-button-animated:hover::before {
  transform: translateX(100%); /* Slide out */
}
 
.thq-button-animated span {
  position: relative;
  z-index: 3; /* Ensure original text is above the pseudo-element before hover */
  transition: transform 0.3s ease;
  color: var(--dl-color-theme-neutral-light);
}
 
.thq-button-animated:hover span {
  transform: translateX(-100%); /* Slide out original text */
  color: var(--dl-color-theme-primary1); /* Change text color on hover */
}
 
.Content {
  font-size: 16px;
  font-family: Noto Sans, sans-serif; /* Changed to Noto Sans */
  font-weight: 400;
  line-height: 1.5; /* Increased line height */
  text-transform: none;
  text-decoration: none;
  color: var(--dl-color-theme-neutral-dark);
}
 
@media(max-width: 991px) {
  .thq-grid-4 {
    grid-template-columns: 1fr 1fr; /* Adjust for smaller screens */
  }
}
 
@media(max-width: 767px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-fourunits) var(--dl-layout-space-threeunits); /* Adjusted padding */
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr; /* Adjusted for smaller screens */
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr; /* Adjusted for smaller screens */
  }
  .thq-card {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr; /* Single column for small screens */
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    flex-direction: column;
    grid-template-columns: 1fr; /* Single column for small screens */
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr;
  }
  .thq-img-scale {
    width: 100%;
  }
  .thq-heading-1 {
    font-size: 36px; /* Adjusted for mobile */
  }
  .thq-heading-2 {
    font-size: 28px; /* Adjusted for mobile */
  }
  .thq-heading-3 {
    font-size: 22px; /* Adjusted for mobile */
  }
  .thq-body-large {
    font-size: 16px; /* Adjusted for mobile */
  }
  .thq-body-small {
    font-size: 14px; /* Adjusted for mobile */
  }
}
 
@media(max-width: 479px) {
  .thq-section-padding {
    padding: var(--dl-layout-space-twounits); /* Further reduced padding */
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-unit);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-unit);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr; /* Single column */
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr; /* Single column */
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    grid-template-columns: 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-unit);
  }
  .thq-grid-auto-300 {
    grid-template-columns: 1fr;
  }
  .thq-heading-1 {
    font-size: 32px;
  }
  .thq-heading-2 {
    font-size: 24px;
  }
  .thq-heading-3 {
    font-size: 20px;
  }
}