/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Thomson
VERSION:	1.0
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,600,700|Work+Sans:400,700,800");

/* CSS Custom Properties for consistency and easy maintenance */
:root {
  /* Brand Colors */
  --primary-color: #003EE5;
  --black: #000000;
  --white: #ffffff;
  
  /* Text Colors */
  --text-gray: #818385;
  --text-dark-gray: #777;
  
  /* Background Colors */
  --bg-light-gray: #f7f8f9;
  --bg-extra-light: #eee;
  --bg-dark: #2f3238;
  --bg-border-dark: #3c3f45;
  --bg-pagination: #f0f0f0;
  
  /* Font Families */
  --font-primary: "Satoshi", "Satoshi-Fallback", sans-serif;
  --font-monospace: 'Tabular', monospace;
  
  /* Common Transitions */
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.25s ease;
  --transition-in-out: all 0.3s ease-in-out;
  
  /* Common Values */
  --border-radius-none: 0px;
  --shadow-none: #999999 0px 0px 0px 0px;
  
  /* Copyright Text */
  --copyright-text: "© Danielle M. Olson, 2025";
  
  /* Logo Text */
  --logo-text: "DANIELLE M. OLSON";
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.166667px;
  line-height: 1.7em;
  color: var(--text-gray);
}

p {
  color: var(--text-gray);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-primary);
  color: var(--black);
  font-weight: 600;
}

h1, .h1 {
  font-size: 52px;
  text-transform: none;
}

h2, .h2 {
  font-size: 48px;
  line-height: 58px;
}

h3, .h3 {
  color: var(--primary-color);
  font-size: 28px;
  line-height: 38px;
}

h4, .h4 {
  font-size: 23px;
  line-height: 34px;
}

h5, .h5 {
  font-size: 19px;
  line-height: 29px;
}

h6, .h6 {
  font-size: 16px;
}

.text-sm {
  font-size: 16px;
}

.mb-2 {
  font-family: 'Tabular', monospace !important;
}

.mb-3.mt-1 {
  font-family: 'Tabular', monospace !important;
}

.section {
  padding: 120px 0px;
}

.section-sm {
  padding: 60px 0px;
}

.btn {
  /*padding: 18px 38px;*/
  margin: 10px;
  border: 2px solid transparent;
  text-transform: uppercase;
  border-radius: 0px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  box-shadow: #999999 0px 0px 0px 0px;
}

.btn-outline {
  margin: 0px;
  margin-top: 10px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline-static {
  margin: 0px;
  margin-top: 10px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-secondary {
  background-color: #8B939D;
}

.btn-sm {
  /*padding: 6px 12px;*/
  border: 2px solid transparent;
  text-transform: uppercase;
  border-radius: 0px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  box-shadow: #999999 0px 0px 0px 0px;
}

.btn:focus {
  outline: 0px;
  border: 0px;
  box-shadow: none;
}

.btn-main {
  background: var(--primary-color);
  color: var(--white);
}

.btn-main:hover {
  color: var(--white) !important;
  background: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

a {
  color: var(--black);
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: none;
  outline: none;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-secondary {
  background: var(--bg-light-gray) !important;
}

.bg-extra {
  background: var(--bg-extra-light) !important;
}

.text-color {
  color: var(--primary-color);
}

.page-title h1 {
  position: relative;
  padding-bottom: 30px;
}

.page-title h1:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0px;
  width: 40px;
  height: 2px;
  margin-left: -25px;
  background: var(--primary-color);
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 32px;
    line-height: 43px;
  }
  
  /* Fix carousel text overflow on mobile */
  .banner .cd-headline {
    font-size: 28px;
    line-height: 36px;
  }
  
  .cd-words-wrapper {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .cd-words-wrapper b {
    white-space: normal;
  }
  
  /* Responsive navbar brand */
  .navbar-brand-text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  /* Responsive paragraph text */
  .banner p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  
  .banner-intro {
    font-size: 17px !important;
  }
  
  .banner-text {
    font-size: 16px !important;
  }
}

.cd-headline.clip span {
  padding: 0px;
}

.banner .cd-headline {
  font-size: 54px;
  line-height: 58px;
}

.banner-3 {
  position: relative;
}

.main-nav .header-top-socials a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  padding: 20px 6px;
  font-family: var(--font-monospace);
}

.navbar-brand-text {
  font-family: 'Tabular', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-brand-text:hover {
  color: var(--black);
  text-decoration: none;
}

.navbar-nav .nav-link {
  padding: 20px 15px !important;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  font-family: var(--font-monospace);
}

ul.dropdown-menu {
  background: var(--bg-dark);
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
}

ul.dropdown-menu > li > a, .navbar ul ul ul.dropdown-menu li .nav-link {
  font-size: 12px;
  line-height: 22px;
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg-border-dark);
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-monospace);
}

ul.dropdown-menu > li > a:hover, .navbar ul ul ul.dropdown-menu li .nav-link:hover {
  color: var(--primary-color);
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--white);
  text-decoration: none;
  background-color: transparent;
}

.dropdown-menu {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  padding: 0;
  border: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  min-width: 210px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: center top 0;
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transform-origin: center top 0;
  transition: all .3s ease-in-out 0s;
  -webkit-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

@media (max-width: 767px) {
  /* Tablet and larger mobile adjustments */
  .banner .cd-headline {
    font-size: 36px;
    line-height: 44px;
  }
  
  .navbar-brand-text {
    font-size: 16px;
  }
  
  .banner p {
    font-size: 18px !important;
  }
}

@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .banner .cd-headline {
    font-size: 42px;
    line-height: 48px;
  }
  .btn-group, .btn-group-vertical {
    display: block;
  }
}

.portfolio {
  padding-bottom: 100px;
}

.shuffle-wrapper {
  position: relative;
  overflow: visible;
}

.portfolio .btn:focus, .portfolio .btn:hover, .portfolio .btn.focus.active {
  box-shadow: none !important;
  outline: 0 !important;
}

.portfolio .btn-group .btn {
  border-radius: 0px !important;
  padding-left: 0px;
  font-weight: 700;
  font-family: var(--font-monospace);
}

.portfolio .btn-group .btn:hover {
  color: var(--primary-color);
}

.portfolio .btn-group:not(:first-child) > .btn, .portfolio .btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.portfolio .btn.active {
  color: var(--primary-color);
}

.inner-box {
  position: relative;
  z-index: 1;
}

.shuffle-item {
  position: relative;
  z-index: 1;
}

.shuffle-item:hover {
  z-index: 10;
}

.inner-box .image {
  position: relative;
  overflow: hidden;
}

.inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.inner-box .image .overlay-box {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  z-index: 2;
  opacity: 0;
  display: block;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  overflow: hidden;
}

.inner-box .image .overlay-box:before {
  position: absolute;
  content: '';
  left: -450px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: rgba(47, 50, 56, 0.8);
}

.inner-box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.inner-box:hover .image .overlay-box:before {
  opacity: 1;
  left: 0px;
}

.inner-box:hover .image .overlay-box {
  opacity: 1;
}

.inner-box:hover .image .overlay-box .overlay-content h5 {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.inner-box:hover .image .overlay-box .overlay-content p {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.inner-box .image .overlay-box .overlay-inner {
  position: absolute;
  left: 0px;
  bottom: 30px;
  z-index: 1;
  padding: 10px 40px;
}

.inner-box .image .overlay-box .overlay-inner .overlay-content i {
  font-size: 28px;
}

.inner-box .image h3 {
  color: var(--white);
}

.overlay-content h5 {
  text-transform: capitalize;
  background: rgba(255, 255, 255, 0.9);
  padding: 0px 8px;
  margin-bottom: 0px;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Tabular', monospace;
}

.overlay-content p {
  font-size: 14px;
  margin-bottom: 0px;
  padding: 0px 8px;
  margin-top: 2px;
  text-transform: capitalize;
  background: rgba(255, 255, 255, 0.9);
  color: #2f3238;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Tabular', monospace;
}

.portfolio-image {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding-top: 16px;
  position: absolute;
  top: 40%;
  font-size: 22px;
  margin-left: -28px;
  left: 50%;
}

.info a {
  margin-right: 10px;
}

.service-home {
  position: relative;
}

.service-item {
  margin-bottom: 2.5rem !important;
  min-height: 150px;
  overflow: hidden;
}

.service-item i {
  font-size: 35px;
  float: left;
  width: 65px;
  height: 120px;
  color: var(--black);
  margin-right: 10px;
}

.service-item p {
  font-size: 15px;
  line-height: 1.6em;
  color: var(--black);
  overflow: hidden;
  word-wrap: break-word;
}

.service-item h4 {
  overflow: hidden;
  margin-left: 75px;
}

.organization-name {
  font-family: 'Tabular', monospace;
  color: var(--black);
  font-weight: 700;
}

/* Media section year styling */
#media .col-2 b {
  color: var(--primary-color);
}


.testimonial-content {
  text-align: center;
  padding: 25px;
  position: relative;
}

.testimonial-content i {
  font-size: 60px;
}

.testimonial-content p {
  margin-top: 30px;
  margin-bottom: 25px;
}

.about-info h3 {
  margin-top: 15px;
}

.progress-bar-content {
  margin-bottom: 25px;
}

.progress-bar-content .progress-title {
  text-transform: capitalize;
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
}

.progress-bar-content .progress-label {
  margin-bottom: 15px;
}

.progress-bar-content .progress-bar {
  background: var(--black);
}

.progress-bar-content .progress-bar-units {
  color: var(--black);
}

.about-list {
  line-height: 40px;
}

.about-list li {
  text-transform: capitalize;
  color: var(--black);
}

.progress {
  width: 100%;
  overflow: visible;
  position: relative;
  margin: 0 0 35px 0;
  border-radius: 0px;
  height: 7px;
  background-color: #f7f8f9;
}

.progress-bar {
  position: absolute;
  width: 0;
  top: 0;
  left: 0;
  height: 100%;
  background: #e1a34c;
  border-radius: 0px;
  -webkit-transition: all 3s ease-in-out;
  transition: all 3s ease-in-out;
}

@media (max-width: 767px) {
  .cta {
    padding-bottom: 0px;
  }
}

#map {
  height: 300px;
  margin: 75px 0px;
}

.form-control {
  border-radius: 0px;
  height: 45px;
  border-color: var(--bg-extra-light);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: auto;
}

.text-black {
  color: var(--black);
}

.contact-title h2 {
  position: relative;
  padding-bottom: 30px;
}

.contact-title h2:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0px;
  width: 40px;
  height: 2px;
  margin-left: -25px;
  background: var(--primary-color);
}

.letter-spacing {
  letter-spacing: 1px;
}

.post .image-content {
  position: relative;
}

.post .image-content img {
  width: 100%;
}

.post .author img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.post .post-content {
  margin-top: 30px;
}

.post .post-content h4 {
  margin-top: 10px;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

.post .post-content a:hover h4 {
  color: var(--primary-color);
}

.pagination {
  margin-top: 70px;
}

.pagination li a {
  background: var(--bg-pagination);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 9px 18px;
  color: var(--text-dark-gray);
  -webkit-transition: .3s;
  transition: .3s;
}

.pagination li a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.pagination li.active a {
  background: var(--primary-color);
  color: var(--white);
}

.sidebar-widget .widget {
  padding-left: 20px;
}

.sidebar-widget .widget-title {
  text-transform: capitalize;
  position: relative;
  padding-bottom: 20px;
}

.sidebar-widget .widget-title:after {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 30px;
  height: 2px;
  background: var(--black);
}

.sidebar-widget .follow a {
  margin-right: 10px;
}

.sidebar-widget .tags a {
  text-transform: capitalize;
  font-size: 15px;
  padding: 2px 13px;
  display: inline-block;
  margin-bottom: 8px;
  background: #dedede;
}

.sidebar-widget .category ul {
  line-height: 40px;
}

.sidebar-widget .category ul li {
  font-size: 15px;
  text-transform: capitalize;
}

.post-body span {
  font-size: 13px;
  letter-spacing: 1px;
}

.single-post {
  margin-bottom: 70px;
}

.share ul li a {
  margin-right: 20px;
}

.mb-45 {
  margin-bottom: 45px;
}

.comments-text p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 26px;
}

@media (max-width: 767px) {
  .media {
    display: block;
  }
  .media img {
    margin-bottom: 10px;
  }
}

.footer {
  padding: 60px 0px;
  background: var(--black);
}

.footer-widget a {
  color: rgba(255, 255, 255, 0.5);
  text-transform: capitalize;
}

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

/*# sourceMappingURL=maps/style.css.map */
