/*
Theme Name: Edutech Theme
Theme URI: https://edutech.or.id/
Author: Andi Ferdiawan
Author URI: https://edutech.or.id/
Description: Custome Theme By Edi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready
Text Domain: edutech-theme
*/

/* --- Styling dari index.html Anda --- */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
body {
  font-family: "Inter", sans-serif;
}


.promo-static {
  background-color: transparent;
  color: black;
  padding: 8px 0;
  text-align: center;
}

.marquee-container {
  background-color: #DBFFDE !important;
  color: white;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-animation 200s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin: 0 16px;
  font-size: 0.875rem;
  color: #00378A;
}

.marquee-content .font-semibold {
  font-weight: 600;
}

@keyframes marquee-animation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


