/**
* Theme Name: Aesthetica Child
* Description: This is a child theme of Aesthetica.
* Author: <a href="https://cmsmasters.net/">cmsmasters</a>
* Template: aesthetica
* Version: 1.1.1
* Tested up to: 6.6
* Requires PHP: 7.4
* License:
* License URI:
* Text Domain: aesthetica-child
* Copyright: cmsmasters 2025 / All Rights Reserved
*/
.elementor-widget-cmsmasters-site-logo-main {
	width: 100%;
	height: auto;
}
.hermosa-marquee {
  font-family: 'Archivo Black', sans-serif;
  box-sizing: border-box;
  background-color: #000;
  font-weight: normal;
  white-space: nowrap;
  align-items: center;
  overflow: hidden;
  padding: 5px 0px;
  display: flex;
  width: 100%;
}

.hermosa-content {
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  color: white;
  letter-spacing: 0.5px;
  animation: scroll-left 100s linear infinite;
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .hermosa-marquee {
		background: 'red';
    padding: 0px;
  }
  .hermosa-content {
    font-size: 14px;
  }
}

/* Extra small screens (small phones) */
@media (max-width: 480px) {
  .hermosa-content {
    font-size: 12px;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
