/* Background */

.bg-orange {
    background-color: #ff7c19;
}

.bg-orange-80 {
    background-color: rgba(255, 124, 25, .80);
}

.bg-light-grey {
    background-color: #ececec;
}

.bg-orange-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 124, 25, .75);
}

.bg-black-overlay:before {
    background: rgba(0, 0, 0, .75);
}

/* Buttons */

.btn-orange {                   /* For use with BS's btn class */
    --bs-btn-color: #fff;
    --bs-btn-bg: #ff7c19;
    --bs-btn-border-color: #ff7c19;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ff994c;
    --bs-btn-hover-border-color: #ff994c;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ff7c19;
    --bs-btn-active-border-color: #ff7c19;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ffb882;
    --bs-btn-disabled-border-color: #ffb882;
    border-width: 2px;
}

.btn-orange-outline {           /* For use with BS's btn class */
    --bs-btn-color: #ff7c19;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #ff7c19;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ff7c19;
    --bs-btn-hover-border-color: #ff7c19;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #ff7c19;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #ff7c19;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffb882;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffb882;
    border-width: 2px;
}

.btn-white {           /* For use with BS's btn class */
    --bs-btn-color: #ff7c19;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ff7c19;
    --bs-btn-hover-border-color: #ff7c19;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #ff7c19;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #ff7c19;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffb882;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffb882;
}

.btn-black {                   /* For use with BS's btn class */
    --bs-btn-color: #fff;
    --bs-btn-bg: #000000;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #333333;
    --bs-btn-hover-border-color: #333333;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000000;
    --bs-btn-active-border-color: #000000;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #666666;
    --bs-btn-disabled-border-color: #666666;
    border-width: 2px;
}

a .btn-promo {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: .25rem .5rem;
    letter-spacing: .05rem;
    color: #ff7c19;
    border: none;
    border-radius: 0;
  }
  
a:focus .btn-promo,
a:hover .btn-promo {
    cursor: pointer;
    color: white;
    background-color: #ff7c19;
}

/* Campaign */
.fg-bc {
    font-family: "field-gothic-compact", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.fg-demi {
    font-family: "field-gothic", Arial, sans-serif;
    font-weight: 600;
}

.fg-reg {
    font-family: "field-gothic", Arial, sans-serif;
    font-weight: 400;
}

.fg-light {
    font-family: "field-gothic", Arial, sans-serif;
    font-weight: 300;
}

.fg-bw {
    font-family: "field-gothic-wide", Arial, sans-serif;
    font-weight: 700;
}

.am-reg {
    font-family: "antarctican-mono", 'Courier New', monospace;
    font-weight: 400;
}

.am-med {
    font-family: "antarctican-mono", 'Courier New', monospace;
    font-weight: 500;
}

.am-bold {
    font-family: "antarctican-mono", 'Courier New', monospace;
    font-weight: 700;
}

.tcc-mark {
    background-color: rgba(255, 124, 25, 1.0);
}

.bg-blue-light {
    background-color: rgba(191, 232, 247, 1.0);
}

.bg-blue-bright {
    background-color: rgba(84, 198, 221, 1.0);
}

.bg-yellow {
    background-color: rgba(255, 183, 21, 1.0);
}

.text-blue-light {
    color:rgba(191, 232, 247, 1.0);
}

.text-blue-bright {
    color:rgba(84, 198, 221, 1.0);
}

.text-yellow {
    color:rgba(255, 183, 21, 1.0);
}

.hr-yellow {
    height: 10px;
    border: none;
    opacity: 1;
    color:rgba(255, 183, 21, 1.0);
    background-color: rgba(255, 183, 21, 1.0);
}

.hr-blue-bright {
    height: 10px;
    border: none;
    opacity: 1;
    color:rgba(84, 198, 221, 1.0);
    background-color: rgba(84, 198, 221, 1.0);
}

li::marker {
  color: #ff7c19;
  /* content: "►"; */
}

.pillar-hdr {
    min-height: 300px;
}

@media (min-width: 768px) {
    .pillar-hdr {
        min-height: 500px;
    }
}

@media (min-width: 1200px) {
    .pillar-hdr {
        min-height: 600px;
    }
}

.pillar-title {
    font-size: 24pt;
}

@media (min-width: 768px) {
    .pillar-title {
        font-size: 42pt;
    }
}

.join-us {
    font-size: 21pt;
}

@media (min-width: 768px) {
    .join-us {
        font-size: 36pt;
    }
}

/* Card */

.card.hover {
    transition: all .5s ease;
  }
  
  .card.hover:hover .bg-orange-80 {
    background-color: rgba(255, 124, 25, 0);
  }
  
  .card.hover:hover .item-title {
    color: #ff7c19;
    padding: 10px;
    background-color: rgba(255, 255, 255, .85);
  }

  .card.hover .item-title {
    color: white;
    background-color: transparent;
    transition: all .5s ease;
  }
  
  .card.hover:hover .btn.hover-btn {
    color: white;
    border-color: white;
    background-color: #ff7c19;
    transition: all .5s ease;
  }
  
  .card.hover:hover .btn.hover-btn:hover {
    background-color: #ff994c;
    transition: all .5s ease;
  }

/* Footer */

.ftr {
    background-color: rgba(0, 0, 0, .9)
}

/* Icons */

.icon-orange {
	color: #ff7c19;
}

.icon-facebook {
    color: #3e5a96;
}
  
.icon-twitter {
    color: #46acdd;
}
  
.icon-linkedin {
    color: #1a78b3;
}
  
.icon-instagram {
    color: #142865;
}
  
.icon-email {
    color: #333;
}

a .social-icon {
    width: 30px;
    height: 30px;
    opacity: .85;
}
  
a .social-icon:focus, a .social-icon:hover {
    opacity: 1;
}

a .quicklinks-icon {
    width: 25px;
    height: 25px;
}

.quicklinks-icon .icon-facebook, .quicklinks-icon .icon-twitter, .quicklinks-icon .icon-linkedin, .quicklinks-icon .icon-instagram, .quicklinks-icon .icon-email {
    color: white;
}
  
.quicklinks-icon .icon-facebook:focus,
.quicklinks-icon .icon-facebook:hover {
        cursor: pointer;
color: #3e5a96;
}

.quicklinks-icon .icon-twitter:focus,
.quicklinks-icon .icon-twitter:hover {
    cursor: pointer;
    color: #000;
}

.quicklinks-icon .icon-linkedin:focus,
.quicklinks-icon .icon-linkedin:hover {
    cursor: pointer;
    color: #1a78b3;
}

.quicklinks-icon .icon-instagram:focus,
.quicklinks-icon .icon-instagram:hover {
    cursor: pointer;
    color: #142865;
}

.quicklinks-icon .icon-email:focus,
.quicklinks-icon .icon-email:hover {
    cursor: pointer;
    color: #333;
}

.fill-orange {
    fill: #ff7c19;
  }

/* Images */

.img-right {
    float: right;
    margin-bottom: 1rem;
    margin-left: 0;
    padding: 0;
}
  
@media (min-width: 768px) {
    .img-right {
      margin-left: 1rem;
    }
}
  
.img-left {
    float: left;
    margin-right: 0;
    margin-bottom: 1rem;
    padding: 0;
}
  
@media (min-width: 768px) {
    .img-left {
      margin-right: 1rem;
    }
}

.bg-full {
    position: fixed;
    z-index: -100;
    top: 0;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: auto 100%;
}
  
@media (min-width: 992px) {
    .bg-full {
      background-size: cover;
    }
}
  
.bg-full>img {
    overflow: hidden;
    width: auto;
    height: 100%;
    margin: 0 auto;
}
  
@media (min-width: 992px) {
    .bg-full>img {
      width: 100%;
      height: auto;
    }
}

/* Links */

a {
    color: #ff7c19;
}

a:hover {
    color: #ff994c;
}

.gray-link {
    color: #666;
    text-decoration: none;
}
  
.gray-link:focus, .gray-link:hover {
    color: black;
}

.orange-link {
    color: #ff7c19;
    text-decoration: none;
}
  
.orange-link:focus, .orange-link:hover {
    color: #ff994c;
}

.white-link {
    color: #fff;
    text-decoration: none;
}

.white-link:focus, .white-link:hover {
    color: #ff7c19;
}

.quicklink {
    color: #fff;
    text-decoration: none;
}

.quicklink:focus, .quicklink:hover {
    color: #000;
}

/* Navigation */

    /* Desktop */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{ position:static!important; }
  .navbar .megamenu{ left:0; right:0; width:100%; margin-top:0; }

}	

    /* Mobile */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}

/* Pagination */

.pagination {
    --bs-pagination-color: #000;
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #ff7c19;
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: #000;
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(255, 124, 25, 0.5);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #ff7c19;
    --bs-pagination-active-border-color: #ff7c19;
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
}

/* Rotation */

.rotate-1:hover {
    transition: all 0.4s ease;
    transform: rotate(1deg);
}

.rotate-neg-1:hover {
    transition: all 0.4s ease;
    transform: rotate(-1deg);
}

.rotate-5:hover {
    transition: all 0.4s ease;
    transform: rotate(5deg);
}

.rotate-neg-25 {
    transform: rotate(-25deg);
}

.rotate-90 {
    transform: rotate(90deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.rotate-270 {
    transform: rotate(270deg);
}

/* Sidenav */

.list-group {
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #ff7c19;
    --bs-list-group-active-border-color: #ff7c19;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

/* SVG Button */

#svg-box button{
    border: none;
}

.svg-button {
    background: none;
    position: relative;
    text-transform: uppercase;
    padding: 20px;
    color: #ffffff;
}

.svg-button-orange svg {
    fill: #ff7c19;
    color: #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-self: center;
}

.svg-button-blue svg {
    fill: rgba(84, 198, 221, 1.0);
    color: #000000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-self: center;
}

.svg-button-blue:hover svg {
    fill: #ff7c19;
}

.svg-button-orange:hover svg {
    fill: #000000;
    color: #ffffff;
}

.svg-button span {
    position: relative;
    z-index: 1;
}

/* Typography */

.text-orange {
    color:#ff7c19;
}

.text-orange-alt {
    color:#ff994c;
}

.text-grey {
    color:#c0c0c0;
}

.text-dark-grey {
    color:#8c8c8c;
}

.text-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.text-roboto {
    font-family: 'Roboto Slab', serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', serif;
  color: #ff7c19;
}

.tracking-tighter {
    letter-spacing: -0.5em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-normal {
    letter-spacing: 0em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.blockquote {
    border-left: solid 3px rgba(0, 0, 0, .1);
    margin-left: 1rem;
    padding-left: 1rem;
}

/* Utility */

.anchoroffset {
    position: relative;
    top: -100px;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

.dropshadow-orange {
    filter: drop-shadow(2px 2px 0 #ff7c19);
}

.dropshadow-black {
    filter: drop-shadow(2px 2px 0 #000000);
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #ff7c19;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 124, 25, 0.25);
}

.hr-full{
    opacity: 1;
}

.honeypot{ 
    display: none;
}

.hover-orange:focus,
.hover-orange:hover {
  cursor: pointer;
  color: #ff7c19;
  transition: all 0.4s ease;
}

hr {
    margin-top: .5rem;
    margin-bottom: 1.25rem;
}

mark {
    background-color: rgba(255, 124, 25, .75);
    color: #000;
}

.row {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
}

.zoom {
    overflow: clip;
}

.zoom img {
    width: 100%;
    transition: all .3s ease-in-out;
}

.zoom img:hover   {
    transform: scale(1.1);
}

.cc-window {
	font-family: 'Open Sans', sans-serif !important;
	font-size: 1rem !important;
	opacity: 1;
	color: rgba(255, 255, 255, .85);
	border-top: 2px solid rgba(255, 255, 255, .85);
	background-color: rgba(255, 124, 25, .85) !important;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .35);
	-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .35);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, .35);
}
  
.cc-btn.cc-dismiss {
	font-family: 'Roboto Slab', serif;
	letter-spacing: .25rem;
	color: rgba(255, 255, 255, .85);
	border: 2px solid rgba(255, 255, 255, .85);
	background-color: rgba(255, 124, 25, .05);
	text-decoration: none;
}
  
.cc-btn.cc-dismiss:hover {
	color: white;
	background-color: #ff7c19;
}
  
.cc-link {
	color: rgba(255, 255, 255, .85) !important;
}
  
.cc-link:hover {
	text-decoration: underline;
	color: white !important;
}