@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Regular.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Light.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Einstellung";
  src: url("../fonts/NeueEinstellung-Medium.woff2") format("woff2"),
    url("../fonts/NeueEinstellung-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Galvji";
  src: url("../fonts/Galvji.woff2") format("woff2"),
    url("../fonts/Galvji.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Galvji";
  src: url("../fonts/Galvji-Bold.woff2") format("woff2"),
    url("../fonts/Galvji-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #2c3393;
  --teal: #53b9df;
  --green: #0ff909;
  --default-font-family: "Neue Einstellung";
  --heading-font-family: "Galvji";
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
html {
  height: 100%;
  min-height: 100%;
}

body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: var(--default-font-family);
  font-feature-settings: "kern";
  -webkit-font-feature-settings: "kern";
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  overflow-x: hidden;
  opacity: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: opacity 0.5s linear;
}

body.loaded {
  opacity: 1;
}

a,
a.visited {
  color: var(--blue);
  border-bottom: 1px solid transparent;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
}

[class^="viewing-page-homepage"]
  a:not(.secondary-section-content-block a):not(.site-flyout a),
a.visited:not(.secondary-section-content-block a):not(.site-flyout a) {
  color: #fff;
}

[class^="viewing-page-homepage"] .primary-navigation-wrap a:hover {
  color: #fff;
}

[class^="viewing-page-divisions"] .primary-navigation-wrap a,
.primary-navigation-wrap a.visited {
  color: #fff;
}

[class^="viewing-page-divisions"] .primary-navigation-wrap a:hover {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue);
  font-family: var(--heading-font-family);
  font-weight: 400;
  margin: 0 0 33px 0;
  line-height: 120%;
  padding: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 50px;
  margin-bottom: 60px;
}

h3 {
  font-family: var(--default-font-family);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 130%;
  margin-bottom: 25px;
  text-transform: uppercase;
}

h4 {
  font-size: 35px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 18px;
}

p {
  line-height: 127%;
  margin: 0 0 12px;
  padding: 0;
}

p:last-child {
  margin: 0;
}

strong {
  font-weight: 500;
}

@media (max-width: 890px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  h3 {
    font-size: 11px;
    margin-bottom: 25px;
  }
}

.default {
  color: #000;
}
.teal {
  color: #49a2b4;
}
.lime-green {
  color: #a8d145;
}
.dark-green {
  color: #7ca848;
}
.orange {
  color: #e27a31;
}
.purple {
  color: #7e14d9;
}
.red {
  color: #c93846;
}
.navy-blue {
  color: #36608f;
}
.cxr-blue {
  color: #53b9df;
}
.royal-blue {
  color: #0009e3;
}

.royal-blue > ul > li {
  color: #000;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
  background: #fff;
  display: flex;
  height: 84px;
  justify-content: space-between;
  left: 0;
  padding: 0 90px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.2s ease, top 0.2s ease;
  z-index: 50;
}

body.not-past-intro .header {
  background: transparent;
}

body.scrolling-down .header {
  top: -84px;
}

.header .logo {
  border: 0;
  position: absolute;
  top: 23px;
  width: 184px;
  z-index: 101;
}

.header .logo img,
.header .logo svg {
  display: block;
  width: 100%;
}

.header .logo svg path,
.header .logo svg rect {
  transition: fill 0.2s ease;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.nav-toggle {
  display: none;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap {
  display: flex;
  margin: 28px 0 0 auto;
}

.primary-navigation-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-navigation-wrap a {
  border: 0;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.shop-button {
  display: inline-block;
  padding: 20px 100px; /* Adjust padding as needed */
  font-size: 16px; /* Adjust font size */
  font-family: Arial, sans-serif; /* Adjust font family */
  font-weight: 400; /* Normal weight */
  color: #000080; /* Navy blue text */
  text-decoration: none;
  text-align: center;
  border: 2px solid #050d9e; /* Navy blue border */
  border-radius: 12px; /* Adjust border radius */
  background-color: transparent; /* Transparent background */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover effect */
  margin-top: 30px;
}

.shop-button:hover {
  background-color: #050d9e; /* Navy blue background */
  color: #ffffff; /* White text */
}

@media (min-width: 1024.5px) {
  .primary-navigation-wrap a:after {
    background: var(--blue);
    bottom: -8px;
    content: "";
    height: 1px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: background 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    width: 40px;
  }

  .primary-navigation-wrap li:hover > a:after,
  .primary-navigation-wrap li.selected > a:after {
    opacity: 1;
    visibility: visible;
  }
}

.primary-navigation-wrap > ul {
  display: flex;
}

.primary-navigation-wrap > ul > li {
  display: inline-block;
  padding: 0 30px;
}

.primary-navigation-wrap > ul > li > a {
  font-family: var(--heading-font-family);
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

/* dropdown */
@media (min-width: 1024.5px) {
  .primary-navigation-wrap > ul > li > .drop:before {
    background: #fff;
    bottom: -20px;
    content: "";
    left: -100vw;
    position: absolute;
    right: -100vw;
    top: 10px;
  }

  body[class^="viewing-page-homepage"]
    div.primary-navigation-wrap
    > ul
    > li
    > div.drop:before {
    background: var(--blue);
  }

  body[class^="viewing-page-divisions"]
    div.primary-navigation-wrap
    > ul
    > li
    > div.drop:before {
    background: var(--blue);
  }

  .primary-navigation-wrap .drop {
    opacity: 0;
    position: absolute;
    top: calc(100% - 10px);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
  }

  .primary-navigation-wrap > ul > li:hover > .drop {
    opacity: 1;
    visibility: visible;
  }
}

.primary-navigation-wrap > ul > li > .drop li {
  margin-bottom: 8px;
}

.primary-navigation-wrap > ul > li > .drop li:last-child {
  margin: 0;
}

@media (min-width: 1024.5px) {
  .primary-navigation-wrap > ul > li > .drop a:after {
    left: 0;
    height: 1px;
    bottom: -2px;
    transform: none;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.footer {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 20px 120px;
}

.footer .col:first-child img {
  display: block;
  margin: 0 auto;
  max-width: 204px;
}

.footer .col:nth-child(2) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .col:nth-child(2) ul li {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-left: 14px;
  padding-right: 6px;
  position: relative;
  text-transform: uppercase;
}

.footer .col:nth-child(2) ul li:before {
  border-radius: 100%;
  background: #fff;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
}

.footer .col:nth-child(2) ul li:first-child:before {
  display: none;
}

.footer .col:nth-child(2) ul li:last-child {
  padding-right: 0;
}

@media (max-width: 1725px) {
  .footer {
    padding: 20px 45px;
  }
}

@media (max-width: 1600px) {
  .footer {
    display: block;
    padding: 50px 30px;
    text-align: center;
  }

  .footer .col:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 890px) {
  .footer .col:first-child img {
    width: 200px;
  }

  .footer .col:nth-child(2) ul {
    columns: 2;
  }

  .footer .col:nth-child(2) ul li {
    display: block;
    margin: 0 0 10px 0;
    font-size: 11px;
    padding: 0;
  }

  .footer .col:nth-child(2) ul li:before {
    display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Layouts -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap {
  margin-bottom: 80px;
}

.content-block {
  display: block;
  margin-bottom: 50px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: left;
  width: 100%;
}

.content-block p:last-child,
.content-block h2:last-child,
.content-block h3:last-child,
.content-block h4:last-child,
.content-block h5:last-child {
  margin-bottom: 0;
}

.content-block.align-bottom {
  vertical-align: bottom;
}

.content-block img {
  height: auto !important;
  max-width: 100%;
}

p.align-bottom {
  margin-bottom: 0;
  margin-top: auto;
}

@media (min-width: 891px) {
  .section-wrap-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-left: 65px;
    margin-right: 65px;
  }

  .section-wrap.align-center .section-wrap-inner {
    justify-content: center;
  }

  .section-wrap.align-right .section-wrap-inner {
    justify-content: flex-end;
  }

  .content-block {
    display: block;
    margin-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }

  .content-block.col-1,
  .content-block.col-2 {
    display: block;
  }

  .content-block.col-3 {
    width: calc((100% / 3) - 30px);
  }

  .content-block.col-2-3 {
    width: calc(((100% / 3) * 2) - 30px);
  }

  .content-block.col-4,
  .content-block.col-3-4,
  .content-block.col-5,
  .content-block.col-2-5,
  .content-block.col-4-5 {
    width: calc(50% - 30px);
  }

  .content-block.col-2,
  .content-block.col-4 {
    display: flex;
    flex-direction: column;
    width: calc(50% - 30px);
  }

  .content-block.col-4 {
    width: calc(25% - 30px);
  }

  .content-block.col-3-4 {
    width: calc(75% - 30px);
  }

  .content-block.col-5 {
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    width: calc(20% - 30px);
  }

  .content-block.col-2-5 {
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    width: calc(40% - 30px);
  }

  .content-block.col-3-5 {
    width: calc(60% - 30px);
  }

  .content-block.col-4-5 {
    width: calc(80% - 30px);
  }
}

@media (max-width: 890px) {
  .main-content .wrapper {
    display: flex;
    flex-direction: column;
  }

  .section-wrap {
    margin-bottom: 48px;
    order: 2;
  }

  .section-wrap.mobile-first {
    order: 1;
  }

  .content-block {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: auto;
  }

  .content-block:last-child {
    margin-bottom: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Inline Carousels ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.slick-slide {
  outline: none;
  position: relative;
  width: 100%;
}

.slick-slide .image {
  background-color: #000;
  background-size: cover;
}

.slick-slide .image img {
  display: block;
  margin: 0 auto;
  opacity: 0;
  width: 100%;
}

.slick-slide .caption {
  padding: 40px;
  text-align: center;
}

.slick-prev,
.slick-next {
  background: url(https://solovievgroup.com/assets/images/icons/slideshow-arrow-left.svg)
    50% 50% no-repeat;
  background-size: contain;
  border: 0;
  cursor: pointer;
  left: 30px;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  text-indent: -9999px;
  top: 50%;
  z-index: 20;
  height: 32px;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  width: 19px;
}

.slick-next {
  background-image: url(https://solovievgroup.com/assets/images/icons/slideshow-arrow-right.svg);
  left: auto;
  right: 30px;
}

body.viewing-page-homepage .slick-prev {
  left: 78px;
}

body.viewing-page-homepage .slick-next {
  right: 78px;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.7;
}

.embedded-gallery-wrap {
  margin-bottom: 25px;
}

.slick-dots {
  text-align: right;
  list-style: none;
  margin: 0;
  padding: 1vw 0 4vw 0;
  position: absolute;
  width: 100%;
  z-index: 52;
}

.slick-dots li {
  display: inline-block;
  margin: 0 0 0 10px;
}

.slick-dots li button {
  background: var(--blue);
  border-radius: 100%;
  border: 0;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin: 0;
  opacity: 0.1;
  outline: none;
  padding: 0;
  text-indent: -9999px;
  transition: opacity 0.2s ease;
  vertical-align: middle;
  width: 12px;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
  opacity: 1;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Hero Video ----------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.has-hero .header {
  background: transparent;
}

body.showing-sub-nav .header,
body.has-hero.past-intro .header {
  background: #fff;
}

body[class^="viewing-page-homepage"].showing-sub-nav .header,
body[class^="viewing-page-homepage"].has-hero.past-intro .header {
  background: var(--blue);
}

body[class^="viewing-page-divisions"].showing-sub-nav .header,
body[class^="viewing-page-divisions"].has-hero.past-intro .header {
  background: var(--blue);
}

body.has-hero.not-past-intro.nav-closed
  .header:not().static-blue-bar
  .logo
  svg
  path,
body.has-hero.not-past-intro.nav-closed
  .header:not().static-blue-bar
  .logo
  svg
  rect {
  fill: var(--blue);
}

body.viewing-page-divisions\/colorado-pacific-railroad.has-hero.not-past-intro.nav-closed
  .header
  .logo
  svg
  path,
body.viewing-page-divisions\/colorado-pacific-railroad.has-hero.not-past-intro.nav-closed
  .header
  .logo
  svg
  rect {
  fill: #fff;
}

body.viewing-page-divisions\/agriculture.has-hero.not-past-intro.nav-closed
  .header
  .logo
  svg
  path,
body.viewing-page-divisions\/agriculture.has-hero.not-past-intro.nav-closed
  .header
  .logo
  svg
  rect {
  fill: #fff;
}
body.viewing-page-impact-initiatives\/art-and-architecture.not-past-intro.nav-closed
  .header
  .logo
  svg
  path,
body.viewing-page-impact-initiatives\/art-and-architecture.not-past-intro.nav-closed
  .header
  .logo
  svg
  rect {
  fill: #fff;
}

body.showing-sub-nav.has-hero.not-past-intro .header .logo svg path,
body.showing-sub-nav.has-hero.not-past-intro .header .logo svg rect {
  fill: #fff;
}

@media (min-width: 1024.5px) {
  body.has-hero.not-past-intro .primary-navigation-wrap > ul > li > a {
    color: #fff;
  }

  body[class*="energy"].has-hero.not-past-intro
    .primary-navigation-wrap
    > ul
    > li
    > a {
    color: var(--blue);
  }

  body[class*="hospitality"].has-hero.not-past-intro
    .primary-navigation-wrap
    > ul
    > li
    > a {
    color: var(--blue);
  }

  body.showing-sub-nav.has-hero.not-past-intro
    .primary-navigation-wrap
    > ul
    > li
    > a {
    color: #fff;
  }

  body.has-hero.not-past-intro .primary-navigation-wrap li:hover > a:after,
  body.has-hero.not-past-intro .primary-navigation-wrap li.selected > a:after {
    background: var(--blue);
  }

  body[class^="viewing-page-homepage"].has-hero.not-past-intro
    .primary-navigation-wrap
    li:hover
    > a:after,
  body[class^="viewing-page-homepage"].has-hero.not-past-intro
    .primary-navigation-wrap
    li.selected
    > a:after {
    background: #fff;
  }

  body[class^="viewing-page-divisions"].has-hero.not-past-intro
    .primary-navigation-wrap
    li:hover
    > a:after,
  body[class^="viewing-page-divisions"].has-hero.not-past-intro
    .primary-navigation-wrap
    li.selected
    > a:after {
    background: #fff;
  }

  body[class*="energy"].has-hero.not-past-intro
    .primary-navigation-wrap
    li:hover
    > a:after,
  body[class*="energy"].has-hero.not-past-intro
    .primary-navigation-wrap
    li.selected
    > a:after {
    background: var(--blue);
  }

  body[class*="hospitality"].has-hero.not-past-intro
    .primary-navigation-wrap
    li:hover
    > a:after,
  body[class*="hospitality"].has-hero.not-past-intro
    .primary-navigation-wrap
    li.selected
    > a:after {
    background: var(--blue);
  }

  body.showing-sub-nav.has-hero.not-past-intro
    .primary-navigation-wrap
    li:hover
    > a:after,
  body.showing-sub-nav.has-hero.not-past-intro
    .primary-navigation-wrap
    li.selected
    > a:after {
    background: #fff;
  }
}

.hero {
  background: #000;
  height: 100vw;
  position: relative;
}

.hero .video-urls {
  display: none;
}

.hero .caption {
  bottom: 120px;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  position: absolute;
  right: 120px;
  transform: translateY(25px);
  transition: opacity 1s ease, transform 0.5s ease-out;
  transition-delay: 1s;
  width: 600px;
  z-index: 2;
}

.hero .caption h1,
.hero .caption h2,
.hero .caption h3,
.hero .caption h4 {
  color: #fff;
}

@media (min-width: 890.5px) {
  .hero .caption h1 {
    font-size: 54px;
  }
}

.hero .caption p {
  margin-bottom: 15px;
}

.hero .caption p:last-child {
  margin-bottom: 0;
}

body.loaded .hero .caption {
  opacity: 1;
  transform: translateY(0);
}

.hero-video-wrap {
  bottom: 0;
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-video-wrap video {
  height: 100vw;
  object-fit: cover;
  width: 100%;
}

.video-spinner {
  animation: rotation 0.8s ease infinite;
  -webkit-animation: rotation 0.8s ease infinite;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: rgba(0, 0, 0, 0.5);
  height: 4rem;
  left: calc(50% - 2rem);
  position: absolute;
  top: calc(50% - 2rem);
  width: 4rem;
  z-index: 100;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero .caption {
    right: 50px;
    bottom: 90px;
    width: auto;
    left: 200px;
  }
}

@media (max-width: 800px) {
  .hero .caption {
    bottom: 60px;
    font-size: 15px;
    left: 35px;
    right: 75px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Intro Section -------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.intro-section,
.video-page-section {
  font-size: 18px;
  padding: 200px 0 130px;
}

.intro-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 890px) {
  .video-page-section,
  .intro-section:first-child {
    padding-top: 150px;
  }

  .intro-section.second-on-mobile:first-child {
    padding-top: 75px;
  }

  .intro-section {
    font-size: 15px;
    padding: 75px 0 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Two Column / Two Column Full Bleed ----------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.two-column.full-bleed:last-child {
  margin-bottom: 0;
}

@media (max-width: 1650px) and (min-width: 890.5px) {
  .two-column .section-wrap-inner {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (min-width: 890.5px) {
  .two-column .section-wrap-inner {
    margin: 0;
  }

  .two-column .content-block {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 50px;
    width: 50%;
  }

  .two-column .content-block {
    align-items: flex-start;
    padding-left: 0;
  }

  .two-column .content-block:last-child {
    align-items: center;
    padding-left: 50px;
  }

  .two-column .content-block {
    align-items: center;
    padding: 50px;
    margin: 0;
    min-width: 50%;
    flex: 1;
  }

  .two-column .content-block.image-block {
    padding: 0 0 0 calc((50vw - 596px) / 2);
  }

  .two-column .content-block.image-block:last-child {
    padding: 0 calc((50vw - 596px) / 2) 0 0;
  }
}

@media (min-width: 890.5px) and (max-width: 1410px) {
  .two-column .content-block.image-block {
    padding: 0 0 0 50px;
  }

  .two-column .content-block.image-block:last-child {
    padding: 0 50px 0 0;
  }
}

.two-column.full-bleed .content-block.image-block {
  padding: 0;
}

.two-column .content-block .content-block-inner {
  max-width: 596px;
}

.two-column .content-block.image-block .content-block-inner {
  max-width: none;
  width: 100%;
}

.two-column.full-bleed {
  margin: 0;
}

.two-column.full-bleed .section-wrap-inner {
  margin: 0;
}

.two-column img,
.two-column.full-bleed img {
  display: block;
  max-width: none;
  width: 100% !important;
}

@media (max-width: 890px) {
  .two-column.full-bleed .content-block {
    margin: 0 30px 30px 30px;
  }

  .two-column.full-bleed .content-block.image-block {
    margin: 0 0 30px 0;
  }

  .no-margin-bottom-on-mobile {
    margin-bottom: 0 !important;
  }

  .swap-on-mobile:last-child {
    margin-bottom: 60px;
  }

  .swap-on-mobile .section-wrap-inner {
    display: flex;
    flex-direction: column;
  }

  .swap-on-mobile .section-wrap-inner .content-block {
    order: 2;
    margin-bottom: 0;
  }

  .swap-on-mobile:last-child .section-wrap-inner .content-block {
    margin-bottom: 90px;
  }

  .swap-on-mobile .section-wrap-inner .content-block:last-child {
    order: 1;
    margin-bottom: 30px;
  }

  /* .swap-on-mobile:last-child .section-wrap-inner .content-block:last-child {
        margin-bottom: 60px;
    } */
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Full Bleed Image ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 890.5px) {
  .section-wrap.full-bleed-image {
    display: block;
  }
}

.section-wrap.full-bleed-image .section-wrap-inner {
  margin: 0;
}

.section-wrap.full-bleed-image .content-block {
  margin: 0;
  width: 100%;
}

.section-wrap.full-bleed-image p {
  margin: 0;
}

.section-wrap.full-bleed-image img {
  display: block;
  max-width: none;
  width: 100% !important;
}

@media (max-width: 890px) {
  .section-wrap.full-bleed-image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
  }

  .section-wrap.full-bleed-image img {
    display: none;
  }

  .section-wrap.full-bleed-image.mobile-first {
    margin-bottom: 0;
  }

  .section-wrap.full-bleed-image .section-wrap-inner {
    display: none;
  }
}

@media (min-width: 551px) {
  .section-wrap.full-bleed-image.mobile-first.gallery {
    background-image: url(../../uploads/images/impact-initiatives/art-architecture/gallery-girl-in-mirror.webp);
  }
}

@media (max-width: 550px) {
  .section-wrap.full-bleed-image.mobile-first.gallery {
    background-image: url(../../uploads/images/impact-initiatives/art-architecture/gallery-girl-in-mirror-mobile.webp);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Gray BG With Heading and Image --------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.gray-bg-with-heading-and-image {
  background: #f1f2f2;
  margin: 0;
}

.gray-bg-with-heading-and-image .section-wrap-inner {
  margin: 0;
}

.gray-bg-with-heading-and-image .content-block {
  margin: 0;
  padding: 140px 90px 200px 90px;
}

.gray-bg-with-heading-and-image h2 {
  margin-bottom: 112px;
}

.gray-bg-with-heading-and-image img {
  display: block;
  max-width: none;
  width: 100% !important;
}

@media (max-width: 890px) {
  .gray-bg-with-heading-and-image {
    margin-bottom: 60px;
  }

  .gray-bg-with-heading-and-image .content-block {
    padding: 30px 0 88px 0;
  }

  .gray-bg-with-heading-and-image h2 {
    margin-bottom: 30px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Animated Icons List -------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.animated-icons-list {
  color: var(--blue);
  margin: 0;
  padding: 150px 0;
}

.animated-icons-list .section-wrap-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: unset;
  margin: 0 auto;
  max-width: 1150px;
}

.animated-icons-list.has-bg-color .section-wrap-inner {
  max-width: 1400px;
}

.animated-icons-list .section-wrap-inner .content-block {
  flex: 1;
}

.animated-icons-list .section-wrap-inner .content-block p:first-child {
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.animated-icons-list .section-wrap-inner .content-block p img {
  display: block;
  margin: 0 auto;
  max-height: 54px;
}

.animated-icons-list .section-wrap-inner .content-block p {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.animated-icons-list .section-wrap-inner .content-block p big {
  display: block;
  font-size: 35px;
  line-height: 100%;
}

@media (max-width: 890px) {
  .animated-icons-list {
    margin-bottom: 60px;
    padding: 75px 0 15px;
  }

  .animated-icons-list .section-wrap-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .animated-icons-list .section-wrap-inner .content-block {
    flex: 0;
    margin: 0 0 60px 0;
    min-width: 50%;
    width: 50%;
  }
}

@media (max-width: 500px) {
  .animated-icons-list .section-wrap-inner {
    max-width: 320px;
    margin: 0 auto;
  }

  .animated-icons-list .section-wrap-inner .content-block p {
    font-size: 12px;
  }

  .animated-icons-list .section-wrap-inner .content-block p big {
    font-size: 18px;
    margin-bottom: -5px;
  }

  .animated-icons-list .section-wrap-inner .content-block p:first-child {
    height: 37px;
  }

  .animated-icons-list .section-wrap-inner .content-block p img {
    max-height: 37px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Info Blocks ---------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.info-blocks .section-wrap-inner {
  margin: 0 auto;
  max-width: 1470px;
}

.info-blocks .content-block {
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  padding: 50px 0;
}

.info-blocks.secondary .section-wrap-inner {
  align-items: flex-start;
}

.info-blocks.secondary .content-block {
  border: 0;
}

@media (max-width: 890px) {
  .info-blocks .content-block {
    border-bottom: 0;
    padding: 30px 0 0 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Our North American Footprint ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.our-north-american-footprint {
  background: #f1f2f2;
  margin-top: -80px;
}

@media (max-width: 890px) {
  .section-wrap.our-north-american-footprint {
    margin-top: -48px;
  }
}

.section-wrap.our-north-american-footprint .section-wrap-inner {
  max-width: none;
  margin: 0;
}

.section-wrap.our-north-american-footprint .content-block.col-1 {
  /* border-bottom: 1px solid #2C3393; */
  margin: 0;
  padding: 128px 80px 112px 30px;
  width: 100%;
}

.section-wrap.our-north-american-footprint .content-block.col-3 {
  margin: 0;
  padding: 30px 30px 30px 50px;
  width: 400px;
}

.section-wrap.our-north-american-footprint .content-block.col-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-wrap.our-north-american-footprint .content-block.col-3 > ul > li {
  border-bottom: 1px solid #2c3393;
  opacity: 0.5;
  transition: opacity 0.3s linear;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li.selected {
  opacity: 1;
}

@media (min-width: 1024.5px) {
  .section-wrap.our-north-american-footprint
    .content-block.col-3
    > ul
    > li:hover,
  .section-wrap.our-north-american-footprint
    .content-block.col-3
    > ul
    > li.hovered {
    opacity: 1;
  }
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label {
  background: url(../images/map/icons/city.png@v=0.01) 0 50% no-repeat;
  background-size: auto 29px;
  border: 0;
  color: #2c3393;
  cursor: pointer;
  display: block;
  font-family: var(--default-font-family);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 130%;
  padding: 15px 35px 15px 54.6px;
  position: relative;
  text-transform: uppercase;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.northern {
  background-image: url(../images/map/icons/northern.png@v=0.01);
  background-size: auto 37.7px;
  font-size: 19.5px;
  letter-spacing: 1.3px;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.atlantic {
  background-image: url(../images/map/icons/atlantic.png@v=0.01);
}
.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.florida {
  background-image: url(../images/map/icons/florida.png@v=0.01);
}
.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.southern {
  background-image: url(../images/map/icons/southern.png@v=0.01);
}
.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.nevada {
  background-image: url(../images/map/icons/nevada.png@v=0.01);
}
.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.pacific {
  background-image: url(../images/map/icons/pacific.png@v=0.01);
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label.canada {
  background-image: url(../images/map/icons/canada.png@v=0.01);
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  .label:after {
  background: url(../images/icons/blue-arrow-up.svg) 100% 50% no-repeat;
  content: "";
  height: 13px;
  position: absolute;
  right: 0;
  top: calc(50% - (13px / 2));
  transition: transform 0.3s ease;
  width: 25px;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li.selected
  .label:after {
  transform: rotate(180deg);
}

.section-wrap.our-north-american-footprint .content-block.col-3 > ul > li > ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0 0 19px 0;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  > ul
  > li {
  padding-left: 36px;
  position: relative;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  > ul
  > li:before {
  content: "\2022";
  font-size: 175%;
  left: 17px;
  line-height: 100%;
  position: absolute;
  top: -7px;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  > ul
  strong {
  font-weight: 500;
}

.section-wrap.our-north-american-footprint
  .content-block.col-3
  > ul
  > li
  > ul
  > li
  > ul {
  font-size: 75%;
  margin-top: 14px;
}

.section-wrap.our-north-american-footprint
  .content-block.our-north-american-footprint-graphic {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  margin: 0;
  max-width: calc(100% - 400px);
  overflow: hidden;
  position: relative;
  width: calc(100% - 400px);
}

.section-wrap.our-north-american-footprint
  .content-block.our-north-american-footprint-graphic
  svg {
  display: block;
  height: auto !important;
  margin: 0;
  width: 100% !important;
}

.map-hover-element * {
  cursor: pointer;
  fill: #fff !important;
  transition: opacity 0.1s linear, fill 0.1s ease;
}
.map-hover-element#city {
  cursor: pointer;
  fill: #fff !important;
}

.map-hover-element#canada.hovered *,
.map-hover-element#canada:hover * {
  fill: rgba(215, 48, 34, 0.5) !important;
}
.map-hover-element#city.hovered,
.map-hover-element#city:hover {
  fill: rgba(0, 0, 0, 0.5) !important;
}
.map-hover-element#atlantic.hovered *,
.map-hover-element#atlantic:hover * {
  fill: rgba(73, 162, 180, 0.5) !important;
}
.map-hover-element#pacific.hovered *,
.map-hover-element#pacific:hover * {
  fill: rgba(168, 209, 69, 0.5) !important;
}
.map-hover-element#nevada.hovered *,
.map-hover-element#nevada:hover * {
  fill: rgba(54, 96, 143, 0.5) !important;
}
.map-hover-element#northern.hovered *,
.map-hover-element#northern:hover * {
  fill: rgba(76, 45, 211, 0.5) !important;
}
.map-hover-element#southern.hovered *,
.map-hover-element#southern:hover * {
  fill: rgba(201, 56, 70, 0.5) !important;
}
.map-hover-element#florida.hovered *,
.map-hover-element#florida:hover * {
  fill: rgba(226, 122, 49, 0.5) !important;
}

.map-hover-element#canada.selected * {
  fill: rgba(215, 48, 34, 1) !important;
}
.map-hover-element#city.selected {
  fill: rgba(0, 0, 0, 1) !important;
}
.map-hover-element#atlantic.selected * {
  fill: rgba(73, 162, 180, 1) !important;
}
.map-hover-element#pacific.selected * {
  fill: rgba(168, 209, 69, 1) !important;
}
.map-hover-element#nevada.selected * {
  fill: rgba(54, 96, 143, 1) !important;
}
.map-hover-element#northern.selected * {
  fill: rgba(76, 45, 211, 1) !important;
}
.map-hover-element#southern.selected * {
  fill: rgba(201, 56, 70, 1) !important;
}
.map-hover-element#florida.selected * {
  fill: rgba(226, 122, 49, 1) !important;
}

.map-text-element {
  cursor: pointer;
}

.map-text-element.selected.canada,
.map-text-element.selected.nevada,
.map-text-element.selected.northern,
.map-text-element.selected.southern {
  fill: #fff;
}

@media (max-width: 890px) {
  .section-wrap.our-north-american-footprint .content-block.col-1 {
    padding: 40px 30px 40px 30px;
  }

  .section-wrap.our-north-american-footprint .section-wrap-inner {
    display: flex;
    flex-direction: column;
  }

  .section-wrap.our-north-american-footprint .content-block.col-3 {
    order: 5;
    width: 100%;
    padding: 30px;
  }

  .section-wrap.our-north-american-footprint
    .content-block.our-north-american-footprint-graphic {
    height: 59vw;
    max-height: none;
    max-width: 100%;
    order: 4;
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Homepage Styles ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 890.5px) {
  body.viewing-page-homepage .intro-section {
    margin-bottom: 0;
    padding: 60px 0 0;
  }

  body.viewing-page-homepage .animated-icons-list:nth-child(4) {
    padding-top: 80px;
  }
}

@media (max-width: 890px) {
  body.viewing-page-homepage .intro-section {
    padding-top: 0;
    margin-bottom: 0;
  }

  body.viewing-page-homepage .animated-icons-list:nth-child(4) {
    margin-bottom: 30px;
    margin-top: 0;
    padding-bottom: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* News Styles ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.news-list-grid {
  padding-top: 160px;
}

.news-list-grid .section-wrap-inner {
  align-items: flex-start;
}

.news-list-grid .content-block {
  margin-bottom: 90px;
}

.news-list-grid .image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  height: 0;
  padding-top: 70%;
}

.news-list-grid .image img {
  display: none;
}

.news-list-grid h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.news-list-grid a {
  color: #1e6dff;
  font-size: 15px;
}

@media (max-width: 500px) {
  .news-list-grid {
    padding-top: 70px;
  }

  .news-list-grid .image {
    margin-bottom: 30px;
    margin-left: -30px;
    margin-right: -30px;
    padding-top: calc(70% + 60px);
  }

  .news-list-grid h2 {
    font-size: 24px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contact Page Styles --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.contact-form .form-group label {
  color: var(--blue);
  font-weight: 400;
}

@media (min-width: 890.5px) {
  body.viewing-page-contact .intro-section {
    padding-bottom: 0;
  }
}

@media (max-width: 890px) {
  body.viewing-page-contact .intro-section {
    padding-top: 150px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Divisions -> Agriculture Custom Heading ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.grain-storage-and-merchandising-heading,
.cpr-heading,
.cpr-rio-grand-heading,
.wgf-heading {
  background: url(../images/icons/cxr-icon.svg) 0 50% no-repeat;
  background-size: 108px auto;
  padding-left: 125px;
}

.grain-storage-and-merchandising-heading.one-line {
  min-height: 108px;
  line-height: 108px;
  vertical-align: middle;
}

.cpr-heading {
  background-image: url(../images/icons/cpr-icon.png);
}

.cpr-rio-grand-heading {
  background-image: url(../images/icons/cpr-rio-grand-icon.png);
}

.wgf-heading {
  background: url(../images/icons/weskan-grain-icon.png) 0 50% no-repeat;
}

@media (max-width: 750px) {
  .grain-storage-and-merchandising-heading,
  .cpr-heading,
  .cpr-rio-grand-heading,
  .wgf-heading {
    background-size: 50px auto;
    padding-left: 61px;
  }

  .grain-storage-and-merchandising-heading.one-line {
    min-height: 50px;
    line-height: 50px;
    vertical-align: middle;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Responsive Styles ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#mobile-check-element {
  display: none;
}

@media (max-width: 1250px) {
  .header {
    padding: 0 45px;
  }

  .primary-navigation-wrap > ul > li {
    margin-left: 30px;
  }
}

@media (max-width: 1024px) {
  #mobile-check-element {
    display: block;
  }

  .header {
    background: #fff;
    height: 56px;
    padding: 0 18px;
    z-index: 100;
  }

  .header .logo {
    width: 150px;
    top: 12px;
  }

  .primary-navigation-wrap {
    background: #fff;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    left: 0;
    margin: 0;
    opacity: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 84px 0 30px 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.2s linear, visibility 0.2s linear;
    visibility: hidden;
    z-index: 100;
  }

  body.show-nav .primary-navigation-wrap {
    background-color: var(--blue);
    opacity: 1;
    visibility: visible;
  }

  body.show-nav .primary-navigation-wrap a,
  a.visited {
    color: #fff;
  }

  /* body[class^='viewing-page-homepage'].show-nav .primary-navigation-wrap{
        background-color: var(--blue);
    } */

  .primary-navigation-wrap > ul {
    display: block;
    text-align: center;
  }

  .primary-navigation-wrap > ul > li {
    display: block;
    margin: 0 0 60px 0;
    width: 100%;
  }

  .primary-navigation-wrap > ul > li > a {
    font-size: 22px;
    padding: 0 53px;
    max-width: calc(100% - 30px);
  }

  .primary-navigation-wrap > ul > li.clicked-once > a {
    background: url(../images/icons/blue-arrow-up.svg) 100% 50% no-repeat;
    background-size: 24px auto;
  }

  .primary-navigation-wrap > ul .drop {
    display: none;
    margin: 20px 0 60px;
    position: static;
  }

  .nav-toggle {
    cursor: pointer;
    display: block;
    height: 30px;
    position: absolute;
    right: 21px;
    text-indent: -9999px;
    top: 24px;
    width: 40px;
    z-index: 101;
  }

  .nav-toggle > div,
  .nav-toggle > div:before,
  .nav-toggle > div:after {
    background: var(--blue);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform 0.2s ease, top 0.2s ease;
    width: 100%;
  }

  [class*=" static-blue-bar"] .nav-toggle > div,
  [class*=" static-blue-bar"] .nav-toggle > div:before,
  [class*=" static-blue-bar"] .nav-toggle > div:after {
    background: #fff !important;
  }

  .viewing-page-divisions\/colorado-pacific-railroad .nav-toggle > div,
  .viewing-page-divisions\/colorado-pacific-railroad .nav-toggle > div:before,
  .viewing-page-divisions\/colorado-pacific-railroad .nav-toggle > div:after {
    background: #fff !important;
  }

  .viewing-page-divisions\/agriculture .nav-toggle > div,
  .viewing-page-divisions\/agriculture .nav-toggle > div:before,
  .viewing-page-divisions\/agriculture .nav-toggle > div:after {
    background: #fff !important;
  }

  .viewing-page-impact-initiatives\/art-and-architecture .nav-toggle > div,
  .viewing-page-impact-initiatives\/art-and-architecture
    .nav-toggle
    > div:before,
  .viewing-page-impact-initiatives\/art-and-architecture
    .nav-toggle
    > div:after {
    background: #fff !important;
  }

  body.has-hero-video.not-past-intro.nav-closed .nav-toggle > div,
  body.has-hero-video.not-past-intro.nav-closed .nav-toggle > div:before,
  body.has-hero-video.not-past-intro.nav-closed .nav-toggle > div:after {
    background: #fff;
  }

  .nav-toggle > div:before {
    top: 12px;
    transition: opacity 0.2s ease;
  }

  .nav-toggle > div:after {
    top: 24px;
  }

  body.show-nav .nav-toggle > div:before {
    opacity: 0;
    background: #fff;
  }

  body.show-nav .nav-toggle > div {
    top: 14px;
    transform: rotate(-45deg);
    background: #fff;
  }

  body.show-nav .nav-toggle > div:after {
    top: 0;
    transform: rotate(-90deg);
    background: #fff;
  }
}

@media (min-width: 891px) {
  .viewing-page-impact-initiatives\/art-and-architecture .nav-toggle > div,
  .viewing-page-impact-initiatives\/art-and-architecture
    .nav-toggle
    > div:before,
  .viewing-page-impact-initiatives\/art-and-architecture
    .nav-toggle
    > div:after {
    background: var(--blue) !important;
  }

  body.viewing-page-impact-initiatives\/art-and-architecture.not-past-intro.nav-closed
    .header
    .logo
    svg
    path,
  body.viewing-page-impact-initiatives\/art-and-architecture.not-past-intro.nav-closed
    .header
    .logo
    svg
    rect {
    fill: var(--blue);
  }
}

@media (max-width: 890px) {
  .primary-navigation-wrap > ul > li {
    padding: 0;
  }

  .primary-navigation-wrap > ul > li > a {
    padding: 0 36px;
  }

  body:not(.viewing-page-homepage) .intro-section h1,
  .intro-section p {
    text-align: left !important;
  }

  .intro-section:nth-child(2) {
    padding-top: 0;
  }

  .br-wrap,
  .br-wrap:before {
    content: " ";
  }

  .br-wrap br {
    display: none;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Site Flyout Styles ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.site-flyout {
  bottom: 120px;
  color: #fff;
  left: -300px;
  position: fixed;
  transition: left 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 300px;
  z-index: 100;
}

.site-flyout.init {
  left: 0;
}

.site-flyout.collapsed,
.site-flyout.collapsed.init {
  left: -300px;
}

.site-flyout .flyout-region {
  background-color: rgba(0, 0, 0, 0.40);
  padding-left: 13px;
  margin-bottom: 10px;
  text-align: left;
  height: 75px;
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: space-between; /* Align headline and callout */
  left: -300px;
  transition: left 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flyout-region.init {
  left: 0;
}

.site-flyout .flyout-region .headline {
  font-size: 16px; /* Adjust as necessary */
  color: white;
  font-weight: 500;
  padding-right: 5px;
}

.site-flyout .flyout-region .readmore-callout {
  writing-mode: vertical-rl; /* Make text vertical from bottom to top */
  text-orientation: mixed; /* Ensure proper character orientation */
  transform: rotate(180deg); /* Rotate text so "R" is at the bottom */
  background-color: #050D9E; /* Dark blue background */
  color: white; /* White font color */
  font-size: 10px; /* Adjust font size */
  font-weight: 500;
  text-align: center;
  padding: 5px; /* Add some padding for spacing */
  width: 30px; /* Set fixed width for vertical text */
  height: 100%; /* Match parent height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-flyout-text {
  background: var(--blue);
  padding: 13px;
  text-align: right;
  height: 113px;
  place-content: center;
}

.site-flyout-text.middle {
  background: var(--teal);
}

.site-flyout-text.bottom {
  background: var(--green);
  color: #000;
}

.site-flyout-text p:first-child {
  font-size: 23px;
  font-family: var(--heading-font-family);
  text-align: left;
}

.site-flyout-text p:last-child {
  text-align: right;
}

.site-flyout-text .button {
  margin-left: auto;
  background: #fff;
  border: 0;
  color: #2c3393;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  line-height: 100%;
  padding: 8.5px 10.5px 7px 12px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-flyout {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 550px) {
  .site-flyout {
    top: 100px;
    transform: none;
    width: 251px;
  }

  .site-flyout.collapsed,
  .site-flyout.collapsed.init,
  .site-flyout:not(.init) {
    left: -251px;
  }

  body.well-past-intro .site-flyout {
    opacity: 0;
    visibility: hidden;
  }

  .site-flyout-text p:first-child {
    font-size: 15px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Text Only Section ---------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 890.5px) {
  .section-wrap.text-only-section {
    margin: 100px auto;
    max-width: 1360px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Stefan Soloviev Detail Page Section ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.stefan-soloviev-section .section-wrap-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.section-wrap.stefan-soloviev-section.two-column
  .content-block
  .content-block-inner {
  max-width: none;
}

@media (min-width: 891px) {
  .section-wrap.stefan-soloviev-section .section-wrap-inner {
    align-items: flex-start;
  }
}

@media (min-width: 890.5px) {
  .section-wrap.stefan-soloviev-section.two-column
    .content-block:not(.image-block) {
    padding-top: 40px;
  }

  .section-wrap.stefan-soloviev-section {
    margin-top: 50px;
  }

  .section-wrap.stefan-soloviev-section.two-column .content-block {
    padding: 50px;
  }
}

@media (max-width: 890px) {
  .section-wrap.stefan-soloviev-intro-image {
    margin-bottom: 30px;
  }

  .section-wrap.stefan-soloviev-section.two-column
    .content-block.image-block
    img {
    max-width: 50%;
  }

  .section-wrap.stefan-soloviev-section.two-column h2,
  .section-wrap.stefan-soloviev-section.two-column h3 {
    margin-bottom: 30px;
  }
}

.no-display {
  display: none !important;
}

a.logo svg {
  transform: scale(1.5);
  transform-origin: left center;
}

.scale-svg-300 {
  transform: scale(2);
  transform-origin: left center;
}

.static-blue-bar {
  background: var(--blue) !important;
}

.section-wrap.contact-form .section-wrap-inner .content-block {
  border-top: 1px solid var(--blue);
}

@media (max-width: 1024px) {
  .static-blue-bar {
    height: 68px;
  }
}

@media (min-width: 890px) {
  .address-block {
    max-width: 10em;
    margin: auto;
  }
}

/* Contact Form */
.contact-form-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group h3 {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--default-font-family);
  font-size: 18px;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  padding: 12px 20px;
  background-color: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  align-self: center;
  margin-top: 20px;
  font-family: var(--default-font-family);
  font-size: 11px;
  width: 200px;
  font-weight: 400;
  letter-spacing: 1px;
}

.submit-button:hover {
  filter: brightness(85%);
}

.recaptcha-dislcaimer {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
}

@media (min-width: 890px) {
  .form-row .form-group {
    width: 48%;
  }

  .contact-form-container {
    margin-top: 80px;
  }

  .submit-button {
    font-size: 16px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Privacy Policy / Thank You Message ------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

.intro-section.privacy-policy-content p {
  max-width: unset;
}

.privacy-policy-content h3 {
  font-size: 20px;
}

.privacy-policy-content b {
  font-weight: 500;
}

.privacy-policy-content ul {
  list-style-position: outside;
  padding-inline-start: 50px;
}

.privacy-policy-content li {
  padding-inline-start: 15px;
  margin-top: 10px;
}

.privacy-policy-link {
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.privacy-policy-link:hover {
  color: #fff;
  cursor: pointer;
}

@media (max-width: 890px) {
  .privacy-policy-content h3 {
    font-size: 16px;
  }

  .privacy-policy-content ul {
    padding-inline-start: 30px;
  }

  .privacy-policy-content li {
    padding-inline-start: 0px;
  }

  .privacy-policy-link {
    font-size: 10px;
  }
}

body.show-overlay:before {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: 1001;
}

body.show-overlay .form,
body.show-overlay .footer {
  opacity: 0.3;
}

.overlay-content {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  left: 50%;
  max-height: calc(100vh - 60px);
  max-width: calc(100vw - 60px);
  opacity: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 75px 100px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  width: 1252px;
  z-index: 1002;
}

.overlay-content.thank-you-message {
  background: #fff;
  padding: 75px 50px;
  width: 800px;
}

.overlay-content.show {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s linear, visibility 0.5s linear;
  visibility: visible;
}

.overlay-content p,
.overlay-content ul {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;
}

.overlay-content p a,
.overlay-content ul a {
  border-bottom: 1px solid;
  color: #000;
  text-decoration: none;
}

.overlay-content h3 {
  margin-bottom: 30px;
}

.overlay-content h3:not(:nth-child(2)) {
  margin-top: 60px;
}

.close-overlay-link,
.close-apply-sidebar-link,
.share-overlay-close-x {
  background: url(../images/icons/close-x.svg) 50% 50% no-repeat;
  color: transparent;
  cursor: pointer;
  font-size: 0;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -9999px;
  top: 30px;
  width: 20px;
}

.share-overlay-close-x {
  right: auto;
  left: 12px;
  top: 12px;
}

.close-apply-sidebar-link {
  right: 4px;
  top: 6px;
}

.thank-you-message .close-overlay-link,
.close-apply-sidebar-link {
  background-image: url(../images/icons/close-x.svg);
}

.close-overlay-link:hover {
  opacity: 0.7;
}

.thank-you-message {
  font-family: "SaolText";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

body.show-overlay .thank-you-message {
  display: block;
}

@media (max-width: 800px) {
  .overlay-content,
  .overlay-content.thank-you-message {
    padding: 55px 30px;
  }
}

@media (max-width: 750px) {
  .close-apply-sidebar-link {
    height: 10px;
    right: 8px;
    top: 8px;
    width: 10px;
  }
}

@media (max-width: 500px) {
  .overlay-content,
  .overlay-content.thank-you-message {
    max-height: none;
    max-width: none;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
    width: auto;
    bottom: 0;
  }

  .overlay-content.thank-you-message,
  body.show-overlay .overlay-content.thank-you-message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .overlay-content p {
    font-size: 15px;
  }
}

.main-content.land-report .full-bleed-image{
  height:0;
  margin:0;
}
.main-content.land-report{
  margin-top: 150px;
}

@media (max-width: 1024px) {
  .land-report {
    margin-top: 120px !important; 
  }

  .main-content.land-report .full-bleed-image{
    height:0;
    margin:0;
  }
}