/* Global CSS Variables and Base Styles */

:root {
  --primary-color: #0E629D;
  --secondary-color: #222;
  --accent-color: #555;
  --text-color: #fff;
  --gray-100: #B6B6B6;
  --gray-200: #6C6C6C;
  --gray-300: #323232;
  --gray-400: #2B2B2B;
  --gray-500: #181818;
  --gray-900: #1D1D1D;
  --font-family-base: 'Inter', Arial, sans-serif;
  --font-size-base: 16px;
  --border-radius-base: 6px;
  --transition-base: 0.2s cubic-bezier(.4,0,.2,1);
}


body {
  background: var(--secondary-color);
  color: #fff;
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover, a:focus {
  color: var(--accent-color);
}

.global__btn_primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}

.global__btn_primary a {
    padding: 5px 10px;
    color: #fff;
}

.page-header {
  border:0;
  margin: 0;
}

.section__title {
  font-size: 4.2rem;
}

.page-title {
  font-size: 5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section__title, .page-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.section__subtitle {
    font-size: 1.6rem;
    color: #cccccc;
    margin-bottom: 2.5em;
}

.section__title::after, .page-title::after {
  content: "";
  display: block;
  width: 90%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -5px;
}

.center_text .section__title::after, .center_text .page-title::after {
  left: 50%;
  margin-left: -45%;
}

.center_text {
  text-align: center;
}

.hidden-desktop {
    display: none;
}

.breadcrumb {
  background: none;
  font-size: 1.2rem;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--primary-color);
}
    
@media (max-width: 900px) {
  .section__subtitle {
    font-size: 1.4rem;
  }
  .page-title {
    font-size: 5rem;
  }
}

@media (max-width: 600px) {
  .hidden-desktop {
    display: block;
  }
  
  .hidden-mobile {
    display: none;
  }

  .section__title {
    font-size: 3rem;
  }
  .section__subtitle {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 3.5rem;
  }
}
/* Add more global resets, utility classes, and variables as needed */
