/* ============================================
   RHINO SOLUCIONES INTEGRALES - Landing CSS
   Elaborado por 4Lab
   ============================================ */

/* --- Variables y Reset --- */
:root {
  --rhino-blue: #1e3a6e;
  --rhino-navy: #0f2347;
  --rhino-green: #2da44e;
  --rhino-yellow: #f5b400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Override GeneratePress & plugin styles */
body.rhino-landing,
body.rhino-landing * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body.rhino-landing {
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  background: #fff;
}

/* Kill GeneratePress header/footer/sidebar */
body.rhino-landing .site-header,
body.rhino-landing .site-footer,
body.rhino-landing .site-navigation,
body.rhino-landing #page>.site-content>.content-area,
body.rhino-landing .inside-article>.entry-header,
body.rhino-landing .inside-article>.entry-meta,
body.rhino-landing #secondary,
body.rhino-landing .wp-admin-bar-fix,
body.rhino-landing .generate-back-to-top,
body.rhino-landing #wpadminbar {
  display: none !important;
}

body.rhino-landing .site-content,
body.rhino-landing .content-area,
body.rhino-landing .inside-article,
body.rhino-landing .entry-content,
body.rhino-landing #page,
body.rhino-landing .site {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

body.rhino-landing .inside-article {
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

body.rhino-landing h1,
body.rhino-landing h2,
body.rhino-landing h3,
body.rhino-landing h4,
body.rhino-landing h5,
body.rhino-landing h6 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2;
}

body.rhino-landing img {
  max-width: 100%;
  height: auto;
}

body.rhino-landing a {
  text-decoration: none;
}

body.rhino-landing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- NAV --- */
.rhino-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.rhino-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 7.0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rhino-nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

body.rhino-landing .rhino-nav-logo img {
  height: 5.6rem;
  width: auto;
  object-fit: contain;
  transform: scale(1.15);
  transform-origin: left center;
}

.rhino-nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.rhino-nav-links a {
  color: var(--rhino-blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.rhino-nav-links a:hover {
  color: var(--rhino-green);
  border-bottom-color: var(--rhino-green);
}

.rhino-nav-cta {
  background: var(--rhino-blue);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 900;
  border-bottom: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.rhino-nav-cta:hover {
  background: var(--rhino-green) !important;
  color: #fff !important;
}

@media (min-width: 1024px) {
  .rhino-nav-links {
    display: flex;
  }
}

/* --- HERO --- */
.rhino-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  padding-top: 7.0rem;
}

.rhino-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .rhino-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.rhino-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  background: rgba(45, 164, 78, 0.05);
  border: 1px solid rgba(45, 164, 78, 0.2);
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--rhino-green);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.rhino-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--rhino-blue);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .rhino-hero h1 {
    font-size: 3.75rem;
  }
}

.rhino-hero h1 span {
  color: var(--rhino-green);
}

.rhino-hero-desc {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 32rem;
  border-left: 4px solid var(--rhino-yellow);
  padding-left: 2rem;
}

.rhino-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.rhino-btn-primary {
  background: var(--rhino-blue);
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rhino-btn-primary:hover {
  background: var(--rhino-green);
  color: #fff;
}

.rhino-btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 2px solid var(--rhino-blue);
  color: var(--rhino-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}

.rhino-btn-secondary:hover {
  background: var(--rhino-blue);
  color: #fff;
}

.rhino-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 2rem;
}

.rhino-hero-stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--rhino-green);
}

.rhino-hero-stat-label {
  font-size: 0.55rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.rhino-hero-image {
  position: relative;
  height: 600px;
  display: none;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .rhino-hero-image {
    display: block;
  }
}

.rhino-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rhino-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 110, 0.3), transparent);
}

.rhino-hero-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rhino-hero-image-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--rhino-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* --- SECTIONS COMUNES --- */
.rhino-section {
  padding: 4.5rem 0 5rem;
  scroll-margin-top: 3rem;
}

.rhino-contact {
  scroll-margin-top: 3rem;
}

.rhino-section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rhino-section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--rhino-blue);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .rhino-section-title {
    font-size: 3rem;
  }
}

.rhino-section-title span {
  color: var(--rhino-green);
}

.rhino-divider {
  width: 6rem;
  height: 4px;
  background: var(--rhino-green);
  margin: 0 auto 1.7rem;
  border-radius: 2px;
}

/* --- SERVICIOS GRID --- */
.rhino-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rhino-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .rhino-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rhino-service-card {
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.rhino-service-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.rhino-service-card-img {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.rhino-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.rhino-service-card:hover .rhino-service-card-img img {
  transform: scale(1.05);
}

.rhino-service-card-body {
  padding: 2rem;
  padding-top: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rhino-service-icon {
  position: absolute;
  top: -2rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background: var(--rhino-green);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: rotate(-3deg);
  transition: transform 0.3s;
  font-size: 1.5rem;
  color: #fff;
}

.rhino-service-card:hover .rhino-service-icon {
  transform: rotate(0);
}

.rhino-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rhino-blue);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.rhino-service-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rhino-service-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
  padding-top: 1.5rem;
}

.rhino-service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.rhino-service-card:hover .rhino-service-list li {
  color: var(--rhino-blue);
}

.rhino-check {
  color: var(--rhino-green);
  font-weight: 700;
}

/* --- NOSOTROS --- */
.rhino-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .rhino-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rhino-about-subtitle {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--rhino-blue);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .rhino-about-subtitle {
    font-size: 3rem;
  }
}

.rhino-about-desc {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 3rem;
  line-height: 1.7;
  border-left: 4px solid var(--rhino-green);
  padding-left: 1.5rem;
}

.rhino-card-mv {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s;
}

.rhino-card-mv:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rhino-card-mv-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rhino-card-mv-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 1.25rem;
}

.rhino-card-mv-icon.green {
  background: var(--rhino-green);
}

.rhino-card-mv-icon.blue {
  background: var(--rhino-blue);
}

.rhino-card-mv h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rhino-blue);
  margin-bottom: 0.5rem;
}

.rhino-card-mv p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
}

.rhino-about-image {
  position: relative;
  height: 40rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid #f3f4f6;
}

.rhino-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rhino-about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 71, 0.8), rgba(15, 35, 71, 0.2), transparent);
  opacity: 0.9;
}

.rhino-about-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- PROCESO DE VALOR --- */
.rhino-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rhino-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rhino-process-card {
  position: relative;
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.rhino-process-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.rhino-process-card-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.rhino-process-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.rhino-process-card:hover .rhino-process-card-img img {
  transform: scale(1.05);
}

.rhino-process-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--rhino-blue);
  font-weight: 900;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rhino-process-card-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rhino-process-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rhino-blue);
  margin-bottom: 1rem;
}

.rhino-process-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.rhino-process-line {
  width: 3rem;
  height: 4px;
  background: var(--rhino-green);
  margin-top: 2rem;
  border-radius: 2px;
}

/* --- CONTACTO --- */
.rhino-contact {
  background: #fdfbf7;
  padding: 4.5rem 0 5rem;
}

.rhino-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .rhino-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Chat Panel */
.rhino-chat-panel {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.rhino-chat-header {
  background: linear-gradient(to right, var(--rhino-navy), var(--rhino-blue));
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rhino-chat-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rhino-green);
  flex-shrink: 0;
}

.rhino-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rhino-chat-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.rhino-chat-status {
  color: var(--rhino-green);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.rhino-chat-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--rhino-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.rhino-chat-messages {
  height: 20rem;
  overflow-y: auto;
  padding: 1.5rem;
  background: #f9fafb;
}

.rhino-chat-msg {
  max-width: 85%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rhino-chat-msg.ai {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-top-left-radius: 0;
}

.rhino-chat-msg.user {
  background: var(--rhino-blue);
  color: #fff;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-top-right-radius: 0;
}

.rhino-chat-input-area {
  padding: 1.25rem;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  display: flex;
  gap: 0.75rem;
}

.rhino-chat-input {
  flex: 1;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  outline: none;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.rhino-chat-input:focus {
  border-color: var(--rhino-green);
}

.rhino-chat-send {
  background: var(--rhino-green);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.rhino-chat-send:hover {
  background: var(--rhino-navy);
}

/* Form Panel */
.rhino-form-panel {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  padding: 2rem 2.5rem;
}

.rhino-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
}

.rhino-form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rhino-blue);
}

.rhino-form-header p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.rhino-form-icons {
  display: flex;
  gap: 0.5rem;
}

.rhino-form-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rhino-green);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.rhino-form-icon-btn:hover {
  background: var(--rhino-green);
  color: #fff;
}

.rhino-form-group {
  margin-bottom: 1.25rem;
}

.rhino-form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.rhino-form-input,
.rhino-form-select,
.rhino-form-textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1a1a1a;
  transition: all 0.3s;
}

.rhino-form-input:focus,
.rhino-form-select:focus,
.rhino-form-textarea:focus {
  border-color: var(--rhino-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 58, 110, 0.1);
}

.rhino-form-textarea {
  resize: none;
  min-height: 7rem;
}

.rhino-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.rhino-form-submit {
  width: 100%;
  background: var(--rhino-blue);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.rhino-form-submit:hover {
  background: var(--rhino-navy);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* --- FOOTER --- */
.rhino-footer {
  background: var(--rhino-navy);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.rhino-footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 3rem;
  height: 3rem;
}

.rhino-footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.rhino-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}

.rhino-footer-links a:hover {
  color: #fff;
}

.rhino-footer p {
  color: #6b7280;
  font-size: 0.875rem;
}

.rhino-footer .rhino-credit {
  color: #4b5563;
  font-size: 0.75rem;
  margin-top: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}