
:root {
  --om-graphite: #1F1F1F;
  --om-white: #FFFFFF;
  --om-accent: #2F5DFF;
  --om-accent-hover: #1E4AD9;
  
  --om-light-gray: #F5F5F5;
  --om-medium-gray: #7A7A7A;
  --om-dark-gray: #2A2A2A;
  --om-border-gray: #E0E0E0;
  
  --om-font-display: 'Playfair Display', serif;
  --om-font-body: 'Inter', sans-serif;
  
  --om-section-padding: 100px 0;
  --om-container-max: 1200px;
  
  --om-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --om-transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--om-font-body);
  color: var(--om-graphite);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--om-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--om-font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--om-medium-gray);
}

a {
  text-decoration: none;
  transition: var(--om-transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.om-navbar {
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--om-transition-smooth);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.om-navbar.om-scrolled {
  padding: 12px 0;
  background: rgba(31, 31, 31, 0.98);
}

.om-navbar-brand {
  font-family: var(--om-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--om-white);
  letter-spacing: 1px;
}

.om-navbar-nav .om-nav-link {
  color: var(--om-white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 4px;
  transition: var(--om-transition-fast);
  position: relative;
}

.om-navbar-nav .om-nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  width: 0;
  height: 2px;
  background: var(--om-accent);
  transition: width 0.3s ease;
}

.om-navbar-nav .om-nav-link:hover::after,
.om-navbar-nav .om-nav-link.active::after {
  width: calc(100% - 40px);
}

.om-navbar-nav .om-nav-link:hover {
  color: var(--om-accent);
}

.om-btn-book-nav {
  background: var(--om-accent);
  color: var(--om-white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  margin-left: 15px;
  border: 2px solid var(--om-accent);
}

.om-btn-book-nav:hover {
  background: transparent;
  color: var(--om-accent);
}

.om-hero-dynamic {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.om-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.85) 0%, rgba(47, 93, 255, 0.3) 100%),
              url('../images/banner.jpg') center/cover;
  z-index: 1;
}

.om-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.om-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--om-white);
  max-width: 900px;
  padding: 0 20px;
}

.om-hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.om-hero-subtitle {
  font-size: 1.4rem;
  font-family: var(--om-font-body);
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.om-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.om-btn-primary {
  background: var(--om-accent);
  color: var(--om-white);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid var(--om-accent);
  cursor: pointer;
  transition: var(--om-transition-smooth);
  display: inline-block;
}

.om-btn-primary:hover {
  background: transparent;
  color: var(--om-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(47, 93, 255, 0.3);
}

.om-btn-secondary {
  background: transparent;
  color: var(--om-white);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid var(--om-white);
  cursor: pointer;
  transition: var(--om-transition-smooth);
  display: inline-block;
}

.om-btn-secondary:hover {
  background: var(--om-white);
  color: var(--om-graphite);
  transform: translateY(-2px);
}

.om-section {
  padding: var(--om-section-padding);
  position: relative;
}

.om-section-light {
  background: var(--om-white);
}

.om-section-dark {
  background: var(--om-graphite);
  color: var(--om-white);
}

.om-section-gray {
  background: var(--om-light-gray);
}

.om-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.om-section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.om-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--om-accent);
}

.om-section-subtitle {
  font-size: 1.15rem;
  color: var(--om-medium-gray);
  max-width: 700px;
  margin: 20px auto 0;
  text-align: center;
}

.om-section-dark .om-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.om-service-card-premium {
  background: var(--om-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: var(--om-transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.om-service-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.om-service-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.om-service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.om-service-card-premium:hover .om-service-card-image img {
  transform: scale(1.1);
}

.om-service-card-body {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.om-service-icon {
  font-size: 3rem;
  color: var(--om-accent);
  margin-bottom: 20px;
}

.om-service-card-body h3 {
  margin-bottom: 15px;
  color: var(--om-graphite);
}

.om-service-card-body p {
  flex: 1;
  margin-bottom: 25px;
}

.om-service-link {
  color: var(--om-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--om-transition-fast);
}

.om-service-link:hover {
  gap: 12px;
  color: var(--om-accent-hover);
}

.om-service-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.om-service-tab-btn {
  background: transparent;
  border: 2px solid var(--om-accent);
  color: var(--om-accent);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--om-transition-fast);
}

.om-service-tab-btn:hover,
.om-service-tab-btn.om-active {
  background: var(--om-accent);
  color: var(--om-white);
}

.om-service-tab-content {
  display: none;
  opacity: 0;
  animation: om-fadeIn 0.5s forwards;
}

.om-service-tab-content.om-active {
  display: block;
}

.om-process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.om-process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--om-transition-smooth);
}

.om-process-step.om-visible {
  opacity: 1;
  transform: translateY(0);
}

.om-process-number {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--om-accent);
  color: var(--om-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 30px;
  box-shadow: 0 5px 20px rgba(47, 93, 255, 0.3);
}

.om-process-content h4 {
  margin-bottom: 10px;
}

.om-footer-disclaimer {
  background: rgba(99, 102, 241, 0.05);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #fff;
  font-size: 0.9rem;
}
.om-client-review-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.om-review-card {
  background: var(--om-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: none;
}

.om-review-card.om-active {
  display: block;
  animation: om-fadeIn 0.5s;
}

.om-review-stars {
  color: #FFB800;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.om-review-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--om-graphite);
}

.om-review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.om-review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.om-review-author-info h5 {
  margin-bottom: 5px;
  color: var(--om-graphite);
}

.om-review-author-info p {
  font-size: 0.9rem;
  margin: 0;
}

.om-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--om-accent);
  color: var(--om-white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--om-transition-fast);
  border: none;
  font-size: 1.2rem;
}

.om-slider-nav:hover {
  background: var(--om-accent-hover);
  transform: translateY(-50%) scale(1.1);
}

.om-slider-prev { left: 0; }
.om-slider-next { right: 0; }

.om-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.om-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--om-border-gray);
  cursor: pointer;
  transition: var(--om-transition-fast);
  border: none;
  padding: 0;
}

.om-slider-dot.om-active {
  background: var(--om-accent);
  width: 35px;
  border-radius: 6px;
}

.om-team-member-block {
  text-align: center;
  margin-bottom: 30px;
}

.om-team-photo-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.om-team-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.om-team-member-block:hover .om-team-photo {
  transform: scale(1.1);
}

.om-team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 31, 31, 0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.om-team-member-block:hover .om-team-overlay {
  transform: translateY(0);
}

.om-team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.om-team-social a {
  color: var(--om-white);
  font-size: 1.2rem;
  transition: var(--om-transition-fast);
}

.om-team-social a:hover {
  color: var(--om-accent);
}

.om-team-member-block h4 {
  margin-bottom: 5px;
}

.om-team-role {
  color: var(--om-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.om-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.om-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  height: 300px;
}

.om-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.om-gallery-item:hover img {
  transform: scale(1.2);
}

.om-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 93, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--om-transition-smooth);
}

.om-gallery-item:hover .om-gallery-overlay {
  opacity: 1;
}

.om-gallery-overlay i {
  color: var(--om-white);
  font-size: 3rem;
}

.om-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.om-lightbox.om-active {
  display: flex;
}

.om-lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.om-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--om-white);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--om-transition-fast);
}

.om-lightbox-close:hover {
  color: var(--om-accent);
}

.om-contact-form-wrapper {
  background: var(--om-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.om-form-group {
  margin-bottom: 25px;
}

.om-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--om-graphite);
}

.om-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--om-border-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--om-font-body);
  transition: var(--om-transition-fast);
}

.om-form-control:focus {
  outline: none;
  border-color: var(--om-accent);
  box-shadow: 0 0 0 3px rgba(47, 93, 255, 0.1);
}

.om-form-control.om-error {
  border-color: #DC3545;
}

.om-error-message {
  color: #DC3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.om-error-message.om-show {
  display: block;
}

textarea.om-form-control {
  resize: vertical;
  min-height: 120px;
}

.om-captcha-wrapper {
  margin: 25px 0;
  padding: 20px;
  background: var(--om-light-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.om-captcha-question {
  font-weight: 600;
  flex: 1;
}

.om-captcha-input {
  width: 80px;
  padding: 10px;
  border: 2px solid var(--om-border-gray);
  border-radius: 4px;
  text-align: center;
  font-size: 1.1rem;
}

.om-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--om-accent);
  color: var(--om-white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--om-transition-smooth);
}

.om-form-submit:hover {
  background: var(--om-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(47, 93, 255, 0.3);
}

.om-form-submit:disabled {
  background: var(--om-medium-gray);
  cursor: not-allowed;
  transform: none;
}

.om-map-container {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.om-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.om-stats-counter {
  text-align: center;
  padding: 80px 0;
  background: var(--om-graphite);
}

.om-stat-item {
  margin-bottom: 30px;
}

.om-stat-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--om-accent);
  font-family: var(--om-font-display);
  margin-bottom: 10px;
}

.om-stat-label {
  font-size: 1.1rem;
  color: var(--om-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.om-footer {
  background: var(--om-dark-gray);
  color: var(--om-white);
  padding: 60px 0 30px;
}

.om-footer h5 {
  color: var(--om-white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.om-footer p,
.om-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.om-footer a:hover {
  color: var(--om-accent);
}

.om-footer-links {
  list-style: none;
}

.om-footer-links li {
  margin-bottom: 12px;
}

.om-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.om-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--om-transition-fast);
}

.om-footer-social a:hover {
  background: var(--om-accent);
  color: var(--om-white);
}

.om-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
}

.om-footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.om-article-header {
  padding: 150px 0 80px;
  background: var(--om-graphite);
  color: var(--om-white);
  text-align: center;
}

.om-article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.om-article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.om-article-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.om-article-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.om-article-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.om-article-content ul,
.om-article-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.om-article-content li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--om-medium-gray);
}

.om-article-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.om-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 31, 31, 0.98);
  color: var(--om-white);
  padding: 25px;
  z-index: 9998;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.om-cookie-consent.om-show {
  transform: translateY(0);
}

.om-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.om-cookie-text {
  flex: 1;
  min-width: 300px;
}

.om-cookie-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.om-cookie-text a {
  color: var(--om-accent);
  text-decoration: underline;
}

.om-cookie-buttons {
  display: flex;
  gap: 15px;
}

.om-cookie-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--om-transition-fast);
  border: none;
  font-size: 0.95rem;
}

.om-cookie-accept {
  background: var(--om-accent);
  color: var(--om-white);
}

.om-cookie-accept:hover {
  background: var(--om-accent-hover);
}

.om-cookie-decline {
  background: transparent;
  color: var(--om-white);
  border: 2px solid var(--om-white);
}

.om-cookie-decline:hover {
  background: var(--om-white);
  color: var(--om-graphite);
}

.om-legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 80px;
}

.om-legal-content h1 {
  margin-bottom: 30px;
}

.om-legal-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.om-legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.om-legal-content p {
  margin-bottom: 20px;
  line-height: 1.9;
}

.om-legal-content ul {
  margin-bottom: 25px;
  padding-left: 35px;
}

.om-legal-content li {
  margin-bottom: 12px;
}

.om-last-updated {
  font-style: italic;
  color: var(--om-medium-gray);
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  
  .om-hero-title { font-size: 3rem; }
  .om-hero-subtitle { font-size: 1.2rem; }
  
  .om-process-number {
    min-width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .om-client-review-slider {
    padding: 0 50px;
  }
  
  .om-stat-number { font-size: 3rem; }
}

@media (max-width: 767px) {
  :root {
    --om-section-padding: 60px 0;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .om-hero-title { font-size: 2.2rem; }
  .om-hero-subtitle { font-size: 1.05rem; }
  .om-hero-buttons { flex-direction: column; }
  
  .om-btn-primary,
  .om-btn-secondary {
    padding: 14px 30px;
  }
  
  .om-navbar-nav .om-nav-link {
    padding: 10px 15px;
  }
  
  .om-section-title h2 { font-size: 1.8rem; }
  
  .om-contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .om-client-review-slider {
    padding: 0 40px;
  }
  
  .om-slider-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .om-review-card {
    padding: 30px 20px;
  }
  
  .om-team-photo {
    height: 300px;
  }
  
  .om-stat-number { font-size: 2.5rem; }
  
  .om-cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .om-cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .om-cookie-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .om-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .om-process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .om-process-number {
    margin: 0 auto 20px;
  }
  
  .om-article-image {
    height: 250px;
  }
}


.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: #fff;
}



.navbar-brand img{
    max-width: 150px;
    width: 150px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}