/*
* LittleLink
* https://littlelink.io
* Free to use under the MIT license
* http://www.opensource.org/licenses/mit-license.php
*/

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  font-size: 16px;
}

/* Grid
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 37.5rem; /* 600px */
  text-align: center;
  margin: 0 auto;
  padding: 3rem 1.25rem 0 1.25rem;
  box-sizing: border-box;
}
.container-left {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  text-align: left;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.container-left p {
  margin-bottom: 1rem; /* 16px space between paragraphs */
}
.column {
  position: center;
  width: 100%;
  float: center;
  box-sizing: border-box;
}
/* For devices larger than 400px */
@media (min-width: 25rem) {
  /* 400px */
  .container {
    width: 85%;
    padding-left: 0;
    padding-right: 0;
  }
} /* For devices larger than 550px */
@media (min-width: 34.375rem) {
  /* 550px */
  .container {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 0;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
}

/* Base Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: "Open Sans", system-ui;
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 1.6;
}

/* Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
  margin: 0 0 0.5rem 0;
  font-size: 3rem; /* 48px */
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto; /* Delete this to remove automatic hyphen on line break */
}
.container p {
  margin: 0 0 2rem 0;
}

/* Base Typography Settings
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Base size - 16px browser default */
:root {
  font-size: 16px; /* Using a 1.25 modular scale for typography */
  --scale-0: 1rem; /* 16px */
  --scale-1: 1.25rem; /* 20px */
  --scale-2: 1.563rem; /* 25px */
  --scale-3: 1.953rem; /* 31px */
  --scale-4: 2.441rem; /* 39px */
  --scale-5: 3.052rem; /* 49px */

  /* Spacing units */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-s: 1rem; /* 16px */
  --spacing-m: 1.5rem; /* 24px */
  --spacing-l: 2rem; /* 32px */
  --spacing-xl: 3rem; /* 48px */
  --spacing-xxl: 4rem; /* 64px */

  /* SoundWave / player variables (customizable) */
  --player-bg-color: #252525;
  --player-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --button-size: 24px;
  --button-hover-bg: #e0e0e0;
  --button-active-bg: #d0d0d0;
  --progress-bg: #eee;
  --progress-bar-color: #007bff;
  --slider-thumb-color: #007bff;
  --timestamp-color: #333;
  --volume-slider-bg: #ddd;
  --volume-slider-thumb-color: #007bff;
  --speed-selector-bg: #fff;
  --loop-color: #007bff; /* Default loop icon color */
}

/* Avatar */
.avatar {
  width: 8rem; /* 128px */
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  background-position: center;
  margin-bottom: var(--spacing-l);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Typography Scale */
h1 {
  margin: 0 0 var(--spacing-m) 0;
  font-size: var(--scale-5); /* ~49px */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body {
  font-size: var(--scale-1); /* 20px */
  line-height: 1.6;
}
.container p {
  margin: 0 0 var(--spacing-xl) 0;
  font-size: var(--scale-1);
  line-height: 1.6;
}

/* Container spacing */
.container {
  padding: var(--spacing-xl) var(--spacing-m) 0 var(--spacing-m);
  text-align: center;
}

/* Footer */
footer {
  margin: var(--spacing-xxl) 0; /* 4rem (64px) top and bottom */
  font-size: var(--scale-0);
}

/* Responsive adjustments */
@media (max-width: 34.375rem) {
  /* 550px */
  h1 {
    font-size: var(--scale-4);
  }
  body {
    font-size: var(--scale-0);
  }
  .container p {
    font-size: var(--scale-0);
  }
  .avatar {
    margin-bottom: var(--spacing-m);
  }
  footer {
    margin: var(--spacing-xl) 0; /* 3rem (48px) top and bottom */
  }
}

/* Links
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #2457f5;
  text-decoration: underline;
}
a:hover {
  color: #083bda;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem; /* 300px */
  min-height: 3rem; /* 48px */
  padding: 0.75rem 1rem; /* 12px ; 16px */
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  text-decoration: none;
  white-space: normal;
  background-color: var(--button-background, transparent);
  color: var(--button-text, #000000);
  border: var(--button-border, none);
  border-radius: 0.5rem;
  cursor: pointer;
  box-sizing: border-box;
  hyphens: auto; /* Delete this to remove automatic hyphen on line break */
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
}

/* Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Avatar
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
.avatar {
  width: 8rem; /* 128px */
  height: 8rem;
  object-fit: cover;
  background-position: center;
  margin-bottom: var(--spacing-l);
}

/* Modifier for no avatar rounding */
.avatar--none {
  border-radius: 0%;
}

/* Modifier for rounded avatar */
.avatar--rounded {
  border-radius: 50%;
}

/* Modifier for slightly rounded corners */
.avatar--soft {
  border-radius: 0.5rem; /* 8px rounded corners */
}

/* Theme System
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Light theme is default above */

/* Dark theme */
:root.theme-dark {
  color-scheme: dark;
}
:root.theme-dark :focus-visible {
  outline: 2px solid #4899f7;
  outline-offset: 2px;
}
:root.theme-dark body {
  background-color: #121212;
  color: #ffffff;
}
:root.theme-dark a:not(.button) {
  color: #4899f7;
}
:root.theme-dark a:not(.button):hover {
  color: #7ab8ff;
}

/* Auto theme */
:root.theme-auto {
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root.theme-auto body {
    background-color: #121212;
    color: #ffffff;
  }
  :root.theme-auto :focus-visible {
    outline: 2px solid #4899f7;
    outline-offset: 2px;
  }
  :root.theme-auto a:not(.button) {
    color: #4899f7;
  }
  :root.theme-auto a:not(.button):hover {
    color: #7ab8ff;
  }
}

/* Glass Effect for Avatar
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Enhanced glass cards for services and portfolio */
.glass-card-enhanced {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(220%);
  -webkit-backdrop-filter: blur(24px) saturate(220%);
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.66),
    rgba(8, 8, 8, 0.5)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.glass-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

.glass-card-enhanced::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  border-radius: inherit;
}

.glass-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.glass-card-enhanced:hover::after {
  opacity: 0.12;
}

.glass-card-accent {
  position: relative;
  overflow: hidden;
  /* Slightly reduced blur and a cooler purple-blue tint (pourpre) */
  backdrop-filter: blur(14px) saturate(200%);
  -webkit-backdrop-filter: blur(14px) saturate(200%);
  background: hsla(255, 72%, 48%, 0.08); /* bluish purple */
  border: 1px solid hsla(255, 72%, 48%, 0.16);
  box-shadow: 0 8px 32px hsla(255, 72%, 48%, 0.12),
    inset 0 1px 0 hsla(255, 72%, 70%, 0.08);
}

.glass-card-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    hsla(255, 80%, 70%, 0.1) 0%,
    hsla(255, 72%, 55%, 0.05) 50%,
    hsla(255, 72%, 40%, 0.02) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

.glass-card-button {
  position: relative;
  overflow: hidden;
  /* Reduced blur and tuned pourpre/blue tint for buttons */
  backdrop-filter: blur(12px) saturate(220%);
  -webkit-backdrop-filter: blur(12px) saturate(220%);
  background: hsla(255, 72%, 20%, 0.18);
  border: 1px solid hsla(255, 72%, 50%, 0.26);
  box-shadow: 0 6px 24px hsla(255, 72%, 45%, 0.09),
    inset 0 1px 0 hsla(255, 72%, 70%, 0.06);
}

.glass-card-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    hsla(255, 80%, 70%, 0.12) 0%,
    hsla(255, 72%, 55%, 0.06) 50%,
    hsla(255, 72%, 40%, 0.03) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Ajoute un effet marquant au survol des boutons glass-card-button */
.glass-card-button:hover {
  box-shadow: 0 10px 30px hsla(255, 72%, 44%, 0.16),
    inset 0 1px 0 hsla(255, 72%, 70%, 0.12);
}

/* Carousel for releases: show 3 items and enable horizontal scroll/wheel */
.releases-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.releases-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.carousel-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
}

.releases-carousel {
  scroll-snap-type: x mandatory;
}

/* Hide native scrollbar but keep functionality */
.releases-carousel::-webkit-scrollbar {
  height: 8px;
}
.releases-carousel::-webkit-scrollbar-thumb {
  background: rgba(120, 120, 140, 0.35);
  border-radius: 9999px;
}

/* Make prev/next buttons more visible on hover */
.releases-nav {
  opacity: 0.9;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.releases-nav:hover {
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .carousel-item {
    flex: 0 0 calc((100% - 1rem) / 1);
  }
}

/* On small screens, move social icons below the cover/title */
@media (max-width: 640px) {
  .artist-header {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .artist-icons {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .artist-icons a {
    flex: 0 0 auto;
  }
}

/* Button Text Color Override
    –––––––––––––––––––––––––––––––––––––––––––––––––– */
.button:hover,
button:hover {
  color: var(--button-text);
}

/* Glass-style buttons: subtle frosted background, clearer border and darken on hover */
.button.glass,
.glass-button,
.button--glass {
  /* Slightly less blur for buttons and a subtle cool purple tint */
  backdrop-filter: blur(6px) saturate(130%);
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  background: linear-gradient(
    180deg,
    rgba(210, 180, 255, 0.06),
    rgba(200, 150, 255, 0.035)
  );
  border: 1px solid rgba(180, 140, 255, 0.1);
  color: var(--button-text, #ffffff);
  box-shadow: 0 8px 24px rgba(12, 10, 30, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    filter 0.12s ease;
}

.button.glass .icon,
.glass-button .icon,
.button--glass .icon {
  filter: none;
}

.button.glass:hover,
.glass-button:hover,
.button--glass:hover {
  /* Darken on hover with a cool pourpre tint */
  background: linear-gradient(
    180deg,
    rgba(24, 12, 64, 0.56),
    rgba(20, 8, 48, 0.62)
  );
  color: var(--button-text, #ffffff);
  filter: brightness(0.92) contrast(1.02);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(8, 6, 30, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.button.glass:active,
.glass-button:active,
.button--glass:active {
  transform: translateY(0);
}

/* Keyboard focus for accessibility */
.button.glass:focus-visible,
.glass-button:focus-visible,
.button--glass:focus-visible {
  outline: 3px solid rgba(120, 180, 255, 0.22);
  outline-offset: 2px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .button.glass,
  .glass-button,
  .button--glass {
    transition: none;
  }
}

/* Responsive Typography
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 34.375rem) {
  /* 550px */
  h1 {
    font-size: 2rem; /* 32px */
  }
  body {
    font-size: 1rem; /* 16px */
  }
}

/* Floating player styles */
.floating-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  margin-top: -28px; /* float up under the card */
  z-index: 40;
  overflow: visible; /* allow popovers (volume) to escape the card */
}
.floating-player .player-cover {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
}
.player-meta .player-title {
  font-weight: 700;
  color: #9fb0ff; /* cool pourpre tint */
}
.player-meta .player-time {
  font-size: 0.875rem;
}
.player-progress {
  width: 160px;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.player-progress-bar {
  width: 58%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(120, 130, 255, 0.95),
    rgba(160, 110, 255, 0.9)
  );
}
.player-controls {
  display: flex;
  align-items: center;
}
.player-btn.volume {
  width: 44px;
  height: 44px;
  padding: 0; /* use box-sizing to keep it square */
}
.player-progress {
  cursor: pointer;
}
.player-progress.dragging {
  cursor: grabbing;
}
.player-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* include padding in width/height so buttons stay square */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5ff;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.player-btn:hover {
  transform: translateY(-3px);
  background: rgba(6, 6, 20, 0.48);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.55);
}
.player-btn.play {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(120, 130, 255, 0.12),
    rgba(90, 80, 170, 0.08)
  );
  border: 1px solid rgba(140, 130, 255, 0.18);
  border-radius: 50%;
}

/* Volume popover */
.player-volume {
  position: relative;
}
.volume-popover {
  position: absolute;
  /* position the popover to the left of the button, centered vertically */
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 18, 18, 0.247);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  display: none;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* keep above surrounding content */
  pointer-events: auto;
}

.volume-popover:hover {
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.24);
}

.player-volume:hover .volume-popover {
  display: flex;
}

/* Allow explicit open via JS for touch devices (toggle .open on .player-volume) */
.player-volume.open .volume-popover {
  display: flex;
}
.volume-slider {
  width: 96px;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(
    90deg,
    rgba(120, 130, 255, 0.95),
    rgba(160, 110, 255, 0.95)
  );
  border-radius: 999px;
  cursor: pointer;
}
.volume-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  margin-top: -2px;
}
.volume-slider:focus {
  outline: none;
}

/* Adjust popover on small screens */
@media (max-width: 640px) {
  /* On small screens hide the popover entirely (only show the button) */
  .volume-popover {
    display: none !important;
    pointer-events: none;
    right: 0;
    top: auto;
    bottom: 56px;
    transform: none;
    width: 120px;
    height: 36px;
  }
  .volume-slider {
    width: 88px;
  }
}

@media (max-width: 720px) {
  .floating-player {
    padding: 0.5rem;
    margin-top: -18px;
    gap: 0.5rem;
  }
  .player-progress {
    display: none;
  }
}

/* Tighter, smaller player controls on narrow mobile screens */
@media (max-width: 640px) {
  .floating-player {
    gap: 0.25rem;
    padding: 0.4rem;
  }
  .player-controls {
    gap: 0.25rem;
  }
  .player-btn {
    width: 40px;
    height: 40px;
  }
  .player-btn.play {
    width: 48px;
    height: 48px;
  }
  .player-cover {
    width: 48px;
    height: 48px;
  }
  .player-meta .player-title {
    font-size: 0.95rem;
  }
  /* Slightly reduce icon sizes inside buttons to fit */
  .player-btn svg {
    width: 18px;
    height: 18px;
  }
  .player-btn.play svg {
    width: 20px;
    height: 20px;
  }
}

/* Privacy Page Styles
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
nav {
  margin: var(--spacing-l) 0;
  text-align: left;
}
section {
  margin: var(--spacing-xl) 0;
  text-align: left;
}
h2 {
  font-size: var(--scale-3);
  font-weight: 700;
  margin-bottom: var(--spacing-m);
}
h3 {
  font-size: var(--scale-2);
  font-weight: 600;
  margin: var(--spacing-l) 0 var(--spacing-s) 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-m) 0;
}
ul li {
  margin-bottom: var(--spacing-xs);
}

/* Privacy page specific responsive adjustments */
@media (max-width: 34.375rem) {
  h2 {
    font-size: var(--scale-2);
  }
  h3 {
    font-size: var(--scale-1);
  }
  section {
    margin: var(--spacing-l) 0;
  }
}

/* Font Face Definitions
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot");
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2")
      format("woff2"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff")
      format("woff"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf")
      format("truetype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg#OpenSans")
      format("svg");
}
/* Player styles removed */
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot");
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2")
      format("woff2"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff")
      format("woff"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf")
      format("truetype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.svg#OpenSans")
      format("svg");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot");
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2")
      format("woff2"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff")
      format("woff"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf")
      format("truetype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.svg#OpenSans")
      format("svg");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot");
  src: url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff2")
      format("woff2"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.woff")
      format("woff"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.ttf")
      format("truetype"),
    url("../fonts/open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-800.svg#OpenSans")
      format("svg");
}
