/*
Theme Name: HMI 2024
Theme URI:
Author: Heinrich
Version 1.0
*/
/* breakpoints */
@media (max-width: 980px) {
  .stack {
    display: block !important;
  }
}

@media (max-width: 980px) {
  .wp-spacer-hide .wp-block-spacer {
    display: none;
  }
}

/* 
:::::::::: BASE VARIABLES :::::::::
*/
/* transparencies */
/* degrees */
/* 
:::::::::: BASE STYLES :::::::::
*/
.mobile {
  display: none !important;
}
@media (max-width: 980px) {
  .mobile {
    display: block !important;
  }
}

.desktop {
  display: none;
}
@media (min-width: 981px) {
  .desktop {
    display: block;
  }
}

.hide {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.anchor {
  position: relative;
}
.anchor a {
  position: absolute;
  left: 0;
  top: -196px;
}

.flip-x {
  transform: scaleX(-1);
}

.flip-y {
  transform: scaleY(-1);
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-decoration: underline;
}

.no-pad {
  padding: 0 !important;
}

.no-pad-top {
  padding-top: 0 !important;
}

.no-pad-bottom {
  padding-bottom: 0 !important;
}

.no-pad-left {
  padding-left: 0 !important;
}

.no-pad-right {
  padding-right: 0 !important;
}

.pad {
  padding: 2rem;
}

.pad-v {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .pad-v {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.pad-h {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .pad-h {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.pad-top {
  padding-top: 2rem;
}

.pad-bottom {
  padding-bottom: 2rem;
}

.pad-left {
  padding-left: 2rem;
}

.pad-right {
  padding-right: 2rem;
}

.pad-lg {
  padding: 4rem;
}
@media (max-width: 767px) {
  .pad-lg {
    padding: 1rem 2rem;
  }
}

.pad-v-lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .pad-v-lg {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.pad-h-lg {
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .pad-h-lg {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.pad-top-lg {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .pad-top-lg {
    padding-top: 1rem;
  }
}

.pad-bottom-lg {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 1rem;
  }
}

.pad-left-lg {
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .pad-left-lg {
    padding-left: 2rem;
  }
}

.pad-right-lg {
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .pad-right-lg {
    padding-right: 2rem;
  }
}

.no-margin {
  margin: 0 !important;
}

.margin {
  margin: 2rem;
}

.margin-v {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.margin-h {
  margin-left: 2rem;
  margin-right: 2rem;
}

.margin-top {
  margin-top: 2rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.margin-left {
  margin-left: 2rem;
}

.margin-right {
  margin-right: 2rem;
}

.margin-lg {
  margin: 4rem;
}

.margin-v-lg {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.margin-h-lg {
  margin-left: 4rem;
  margin-right: 4rem;
}

.margin-top-lg {
  margin-top: 4rem;
}

.margin-bottom-lg {
  margin-bottom: 4rem;
}

.margin-left-lg {
  margin-left: 4rem;
}

.margin-right-lg {
  margin-right: 4rem;
}

/** Base Percentage Classes **/
.hundredPct {
  width: 100%;
}

.ninetyPct {
  width: 90%;
}

.eightyPct {
  width: 80%;
}

.seventyFivePct {
  width: 70%;
}

.seventyPct {
  width: 70%;
}

.sixtyPct {
  width: 60%;
}

.fiftyPct {
  width: 50%;
}

.fortyPct {
  width: 40%;
}

.thirtyPct {
  width: 30%;
}

.twentyFivePct {
  width: 20%;
}

.twentyPct {
  width: 20%;
}

.tenPct {
  width: 10%;
}

.fivePct {
  width: 5%;
}

.twoFivePct {
  width: 2.5%;
}

.opacity100 {
  opacity: 1;
}

.opacity90 {
  opacity: 0.9;
}

.opacity80 {
  opacity: 0.8;
}

.opacity75 {
  opacity: 0.75;
}

.opacity70 {
  opacity: 0.7;
}

.opacity60 {
  opacity: 0.6;
}

.opacity50 {
  opacity: 0.5;
}

.opacity40 {
  opacity: 0.4;
}

.opacity30 {
  opacity: 0.3;
}

.opacity25 {
  opacity: 0.25;
}

.opacity20 {
  opacity: 0.2;
}

.opacity10 {
  opacity: 0.1;
}

.opacity05 {
  opacity: 0.05;
}

.opacity0 {
  opacity: 0;
}

/** Scroll Animation **/
.scroll-element {
  opacity: 0;
  transition: opacity 1500ms;
  z-index: 1;
}

.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: "BlackDiamond";
  src: url("assets/webfonts/BlackDiamond/font.woff2") format("woff2"), url("assets/webfonts/BlackDiamond/font.woff") format("woff");
}
* {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

h1 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 60px;
  color: #0D0630;
}
h1.hero {
  font-size: 100px;
  color: #ffffff;
}

h2 {
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.2px;
  line-height: 56px;
  margin-bottom: 32px;
  color: #DC582A;
}

h2.wp-block-heading {
  margin-top: 48px;
}

h3 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #050213;
}

h4 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #050213;
}

h5 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 26px;
  color: #050213;
  opacity: 0.6;
}

h6 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  color: #050213;
}

p, ul, li, a {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #050213;
  font-style: normal;
}

p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}

p.large {
  font-size: 18px;
  line-height: 28px;
}

p.small {
  font-size: 14px;
  line-height: 22px;
}

a {
  font-size: inherit;
  font-weight: 700;
  color: #1067A9;
}

ul {
  margin-left: 32px;
  margin-bottom: 16px;
  line-height: 26px;
}
ul li ul {
  margin-left: 24px;
}

b, strong {
  font-weight: 700;
}

.semi-bold {
  font-weight: 700;
}

em {
  font-style: italic;
}

.white {
  color: #ffffff;
}

.no-top-margin {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-letter-spacing {
  letter-spacing: 0;
}

.right-padding {
  padding-right: 60px;
}
@media (max-width: 980px) {
  .right-padding {
    padding-right: 0;
  }
}

a.btn,
a.btn-trans,
a.btn-white,
a.btn-to,
a.btn-blk {
  display: inline-block;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 16px;
  color: #651C32;
  text-decoration: none;
  margin-bottom: 0;
  transition: all 0.5s;
}

a.btn:hover {
  background: #ffffff;
  color: #651C32;
}

a.btn-trans {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
a.btn-trans:hover {
  background-color: #ffffff;
  color: #333333 !important;
}

a.btn-white {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
a.btn-white:hover {
  background-color: transparent;
  color: #ffffff;
}

a.btn-to {
  background-color: transparent;
  border: 1px solid #DC582A;
  color: #DC582A;
}
a.btn-to:hover {
  background-color: #DC582A;
  color: #ffffff;
}

a.btn-blk {
  background-color: transparent;
  border: 1px solid #333333;
  color: #333333;
}
a.btn-blk:hover {
  background-color: #333333;
  color: #ffffff;
}

.phead-intro {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.phead-large {
  font-size: 80px;
  line-height: 80px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2.29px;
  text-transform: uppercase;
}

.phead-med {
  font-size: 55px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.phead-bd {
  font-family: BlackDiamond, cursive;
  font-size: 120px;
  line-height: 100px;
  margin-top: -60px;
  letter-spacing: 1.2px;
  color: #DC582A;
}
.phead-bd.indent {
  margin-left: 64px;
}

.cs-head-row .phead-bd {
  margin-top: 0;
  margin-left: 0;
}

.cs-head-row .phead-intro {
  margin-bottom: 48px;
}

.indent {
  margin-left: 64px !important;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

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

#header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #651C32;
  position: relative;
  height: 100px;
  position: fixed;
  z-index: 99;
}
@media (max-width: 980px) {
  #header {
    position: relative;
  }
}
#header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
}
#header .content .hmi-logo {
  width: 150px;
}
#header .content .hmi-logo a img {
  width: 124px;
  height: auto;
}
#header .content .main-navigation {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#header .content .main-navigation .primary-menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 820px;
  margin-bottom: 0;
}
#header .content .main-navigation .primary-menu .current-menu-parent,
#header .content .main-navigation .primary-menu .current-menu-item {
  border-bottom: 3px solid #EDC8A3;
  padding-bottom: 4px;
}
#header .content .main-navigation .primary-menu li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
#header .content .main-navigation .primary-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("assets/images/caret-down.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 12px;
  right: -16px;
  width: 12px;
  height: 8px;
  margin-left: 5px;
}
#header .content .main-navigation .primary-menu li a {
  color: #ffffff;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  margin-bottom: 0;
  letter-spacing: 1px;
  cursor: pointer;
}
@media screen and (max-width: 1279px) {
  #header .content .main-navigation .primary-menu li a {
    font-size: 15px;
    letter-spacing: 0;
  }
}
#header .content .main-navigation .primary-menu li:hover > ul {
  display: block;
}
#header .content .main-navigation .primary-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  z-index: 999;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.2);
}
#header .content .main-navigation .primary-menu li ul li {
  display: block;
  padding-right: 48px;
}
#header .content .main-navigation .primary-menu li ul li.current-menu-item {
  border-bottom: none;
}
#header .content .main-navigation .primary-menu li ul li.current-menu-item a {
  font-weight: bold;
}
#header .content .main-navigation .primary-menu li ul li a {
  display: inline-block;
  position: relative;
  padding: 10px 0 10px 25px;
  color: #ffffff;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  max-width: 180px;
  cursor: pointer;
}
#header .content .main-navigation .primary-menu li ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("assets/images/arrow-right.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 35%;
  right: -24px;
  width: 15px;
  height: 15px;
  transition: all 0.2s ease-in-out;
}
#header .content .main-navigation .primary-menu li ul li a:hover::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("assets/images/arrow-right-expanded.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: 35%;
  right: -30px;
  width: 22px;
  height: 15px;
  transition: all 0.2s ease-in-out;
}
#header .content .main-navigation .primary-menu li ul li:hover {
  display: block;
}

#mega-menu-wrap-primary-menu {
  position: absolute;
  z-index: 1000;
  top: 1.2rem;
  right: 1rem;
  margin-left: 1rem;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item:hover {
  border-bottom: 1px solid #EDC8A3;
  padding-bottom: 2px;
}

li.mm-col {
  border-right: 1px solid #EDC8A3 !important;
}
li.mm-col h4 {
  text-align: center !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
li.mm-col ul li {
  text-align: center !important;
  list-style: none;
}
li.mm-col ul li a {
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}
li.mm-col ul li a:hover {
  font-weight: 700;
}
li.mm-col ul li ul li {
  text-align: left !important;
}
li.mm-col img {
  width: auto !important;
  height: 80px !important;
}

#foot-wrap {
  position: relative;
  width: 100%;
  background-color: #651C32;
  display: block;
  border-top: 2px solid #D2D755;
}
#foot-wrap .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 0 24px 0;
}
@media only screen and (max-width: 768px) {
  #foot-wrap .content {
    display: block;
    padding: 3rem 0;
  }
}
#foot-wrap .content .foot-social-label {
  color: #ffffff;
  margin: 32px 0 24px 0;
  font-size: 14px;
  font-weight: 500;
}
#foot-wrap .content .foot-column {
  width: 22%;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  #foot-wrap .content .foot-column {
    width: 100% !important;
    padding: 1rem 1rem 0;
    text-align: center;
  }
  #foot-wrap .content .foot-column:nth-child(2) {
    padding-top: 3rem;
  }
  #foot-wrap .content .foot-column:nth-child(3) {
    padding-bottom: 3rem;
  }
  #foot-wrap .content .foot-column .foot-column-links a:last-child {
    margin-bottom: 0;
  }
}
#foot-wrap .content .foot-column:first-child {
  width: 250px;
}
#foot-wrap .content .foot-column a.foot-logo {
  width: 206px;
  height: auto;
}
#foot-wrap .content .foot-column .foot-social {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #foot-wrap .content .foot-column .foot-social {
    max-width: 50%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 420px) {
  #foot-wrap .content .foot-column .foot-social {
    max-width: 80%;
  }
}
#foot-wrap .content .foot-column .foot-column-links a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 18px;
}
#foot-wrap .term-conditions {
  display: block;
}
#foot-wrap .term-conditions .foot-separater {
  display: block;
  height: 1px;
  width: 96%;
  max-width: 1240px;
  margin: 24px auto;
  background-color: #D2D755;
}
#foot-wrap .term-conditions .content {
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  #foot-wrap .term-conditions .content {
    text-align: center;
  }
}

:where(.wp-block-columns.has-background) {
  padding: 0 !important;
}

:where(.wp-block-columns) {
  margin-bottom: 0 !important;
}

#primary {
  position: relative;
  width: 100%;
}

@media (max-width: 767px) {
  .basic .wp-block-spacer {
    height: 40px !important;
  }
  .basic h2 {
    font-size: 32px;
    line-height: 40px;
    margin: 0 auto;
  }
}

.anchor {
  position: relative;
}
.anchor a {
  position: absolute;
  left: 0;
  top: -100px;
}
@media (max-width: 767px) {
  .anchor a {
    top: 0;
  }
}

.content-area {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 150px;
}

.page-template-template-news-landing #animated-bg {
  position: absolute;
  width: 100%;
  max-width: unset;
  margin: 0 auto;
  height: 75vh;
  background-color: #DC582A;
  border-radius: 0 0 500px 500px;
  z-index: -1;
}
.page-template-template-news-landing #news {
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
}

#contact {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
#contact .contact-info {
  width: 50%;
  background-color: #050213;
}
#contact .contact-form {
  width: 50%;
  background-color: #ffffff;
}

.alignfull {
  width: 100%;
}

.alignwide {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.tpadding-150 {
  padding-top: 150px;
}

.right-margin {
  margin-right: 40px;
}

.fader,
.fade-element {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.scroll-element {
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  .scroll-element {
    opacity: 1;
  }
}

.scrolled {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.video-container {
  cursor: none;
  position: relative;
  display: inline-block;
}

/* Custom cursor styling */
.custom-cursor {
  width: 170px;
  height: 171px;
  background-image: url("assets/images/cursor.png");
  background-size: cover;
  position: absolute;
  pointer-events: none;
  display: none;
  z-index: 10;
}

.latest-wrap {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url("assets/images/hmi-transparent.png");
  background-repeat: no-repeat;
  background-size: 280px;
  background-position: 0 0 -48px;
  z-index: -1;
}
@media (max-width: 980px) {
  .latest-wrap {
    background-size: 200px;
    background-position: 0;
  }
  .latest-wrap .wp-block-spacer {
    height: 40px !important;
  }
}
@media (max-width: 767px) {
  .latest-wrap {
    background-position: 0;
  }
}
@media (max-width: 419px) {
  .latest-wrap {
    background-position: 0;
  }
}
.latest-wrap .latest-btns {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .latest-wrap .latest-btns {
    display: block;
  }
  .latest-wrap .latest-btns .btn-blk {
    display: inline-block;
    margin-bottom: 1rem;
  }
  .latest-wrap .latest-btns .btn-blk.right-margin {
    margin-right: 0;
  }
}

.bottom-cta {
  position: relative;
  background-image: url("assets/images/hmi-logo-trans-gray.png");
  background-repeat: no-repeat;
  background-size: 260px;
  background-position: right bottom;
}
.bottom-cta h2 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 80px !important;
  line-height: 100px !important;
  letter-spacing: 2.29px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .bottom-cta h2 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 1px;
  }
}

.parallax-wrap {
  position: relative;
}
.parallax-wrap .img-parallax {
  position: absolute;
  top: -1000px;
  left: 0;
}

.logo-grid figure {
  border: none !important;
}

.ab-vid-bg {
  position: relative;
  width: 100%;
  display: block;
  background-color: #651C32;
  height: 150px;
}
.ab-vid-bg .ab-vid {
  position: absolute;
  top: -150px;
  width: 90%;
  left: 5%;
  overflow: hidden;
}

.not-quite-white-bg {
  background-color: #F6F5F5;
}

.peach-bg {
  background-color: #FAEFE3;
}

.gray-bg {
  background-color: #333333;
}

.merlot-bg {
  background-color: #651C32;
}

.wp-block-gallery.wp-block-gallery-1 {
  gap: 0 !important;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  gap: 0 !important;
  border: 1px solid #333333;
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-contact .grecaptcha-badge {
  visibility: visible;
}

.contact-columns {
  gap: 0;
  border-bottom: 10px solid #DC582A;
}
@media (max-width: 767px) {
  .contact-columns {
    display: block !important;
  }
}
.contact-columns .contact-info-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1279px) {
  .contact-columns .contact-info-wrap {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .contact-columns .contact-info-wrap {
    padding: 0 2rem;
  }
}
.contact-columns .contact-info-wrap .contact-info {
  padding-top: 150px;
  padding-right: 100px;
  width: 620px;
}
@media (max-width: 767px) {
  .contact-columns .contact-info-wrap .contact-info {
    padding-top: 2rem;
    padding-right: 0;
  }
}
.contact-columns .contact-info-wrap .contact-info div h1 {
  text-transform: uppercase;
  line-height: 80px;
}
@media (max-width: 767px) {
  .contact-columns .contact-info-wrap .contact-info div h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
.contact-columns .contact-info-wrap .contact-info div .c-border-top {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #D2D755;
  gap: 0;
}
.contact-columns .contact-info-wrap .contact-info div .c-border-bottom {
  padding-bottom: 12px;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #D2D755;
  gap: 0;
}
.contact-columns .contact-info-wrap .contact-info div a {
  font-weight: 400;
  text-decoration: none;
}
.contact-columns .contact-info-wrap .contact-info div a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contact-columns .contact-info-wrap .contact-info .social-contact {
    display: block;
  }
  .contact-columns .contact-info-wrap .contact-info .social-contact .wp-block-column {
    display: inline-block;
    padding: 0 0.5rem 0.5rem;
  }
}
.contact-columns .contact-form-wrap {
  padding-top: 150px;
}
@media (max-width: 767px) {
  .contact-columns .contact-form-wrap {
    display: block;
    width: 100% !important;
    padding: 2em;
  }
}
.contact-columns .contact-form-wrap .contact-form {
  width: 520px;
  margin-left: 100px;
}
@media (max-width: 1279px) {
  .contact-columns .contact-form-wrap .contact-form {
    width: 75%;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .contact-columns .contact-form-wrap .contact-form {
    margin-left: 0;
    width: 100%;
  }
}
.contact-columns .contact-form-wrap .contact-form .gform_wrapper {
  margin-top: 24px;
}
.contact-columns .contact-form-wrap .contact-form .gform_wrapper input,
.contact-columns .contact-form-wrap .contact-form .gform_wrapper textarea {
  border-radius: 5px;
  border: 1px solid #E5E1E6;
  padding: 20px;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  color: #333333;
}
.contact-columns .contact-form-wrap .contact-form .gform_wrapper .gform_heading .gform_required_legend {
  display: none;
}
.contact-columns .contact-form-wrap .contact-form .gform_wrapper .gform_button {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 16px !important;
  border-radius: 32px !important;
  padding: 18px 32px !important;
  letter-spacing: 1px;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  background-color: #01426A !important;
}
.contact-columns .contact-form-wrap .contact-form h2 {
  margin-top: 0;
}

@media (max-width: 767px) {
  .work-content, .teamlist {
    display: block !important;
    padding: 0;
  }
  .work-content .post-column, .teamlist .post-column {
    width: 100%;
    margin-bottom: 1rem;
  }
  .work-content .post-column .t-date, .teamlist .post-column .t-date {
    bottom: 200px !important;
  }
}
.sp-hero {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-bottom: 6px solid #651C32;
  margin-bottom: 2rem;
}

.sp-head {
  background-color: #651C32;
  padding: 120px 0 50px;
}
.sp-head .sp-head-row {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
  align-items: center;
}
@media (max-width: 767px) {
  .sp-head .sp-head-row {
    display: block;
  }
}
.sp-head .sp-head-row .sp-heading,
.sp-head .sp-head-row .sp-description {
  width: 50%;
}
.sp-head .sp-head-row .sp-heading p,
.sp-head .sp-head-row .sp-description p {
  color: #ffffff;
}
.sp-head .phead-intro {
  margin-bottom: 1rem;
}
.sp-head h1 {
  margin-bottom: 16px;
}
.sp-head h2 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 2rem;
}

.sp-content {
  background-color: #FAEFE3;
  padding-top: 2rem;
}
.sp-content h2 {
  color: #1B1D36;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 1rem;
}
.sp-content h3 {
  color: #DC582A;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.sp-content ul, .sp-content ol {
  margin: 0 0 1rem 2.5rem;
}
.sp-content ul li, .sp-content ol li {
  padding-bottom: 1rem;
  font-size: 18px;
  line-height: 24px;
}

.slp-sl-cta-block {
  width: 300px;
  background-color: #ffffff;
  border-radius: 16px;
  display: block;
  padding: 16px 0;
  margin: 0 auto 36px auto;
  text-align: center;
}
.slp-sl-cta-block .cta-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  margin-bottom: 4px;
}
.slp-sl-cta-block .cta-title {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 14px;
}
.slp-sl-cta-block .cta-link {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  margin-bottom: 8px;
  color: #DC582A;
  text-decoration: none;
}

article {
  background: #FAEFE3;
  padding: 2rem;
}
article h2 {
  color: #1B1D36;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 1rem;
}
article h3 {
  color: #DC582A;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
article ul, article ol {
  margin: 0 0 1rem 2.5rem;
}
article ul li, article ol li {
  padding-bottom: 1rem;
  font-size: 18px;
  line-height: 24px;
}

.related-articles {
  background: #FAEFE3 url("assets/images/hmi-transparent.png") bottom left no-repeat;
  background-size: 280px;
  background-position: 3rem 2.5rem;
  min-height: 35vh;
  position: relative;
}
@media (max-width: 980px) {
  .related-articles {
    display: block !important;
    min-height: 0;
    padding: 2rem 2rem 4rem !important;
    background-size: 200px;
    background-position: 0% 250%;
    background-position: 0 0 -48px;
  }
}
@media (max-width: 767px) {
  .related-articles {
    background-position: 0% 150%;
    background-position: 0 0 -48px;
  }
}
@media (max-width: 419px) {
  .related-articles {
    background-position: 0% 110%;
    background-position: 0 0 -48px;
  }
}
.related-articles h4 {
  position: absolute;
  bottom: 2rem;
  left: 10rem;
  color: #DC582A;
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 48px;
  line-height: 56px;
}
@media (max-width: 980px) {
  .related-articles h4 {
    position: relative;
    left: unset;
    bottom: unset;
    text-align: center;
  }
}
.related-articles .cta {
  position: absolute;
  bottom: 2rem;
  right: 5rem;
}
@media (max-width: 980px) {
  .related-articles .cta {
    position: relative;
    text-align: center;
    margin: 1rem auto 0;
    width: 100%;
    bottom: unset;
    right: unset;
  }
}
.related-articles .cta .btn {
  background: transparent;
  border: #0D0630 1px solid;
  border-radius: 20px;
  color: #0D0630;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
}
@media (max-width: 980px) {
  .related-articles .cta .btn {
    margin-bottom: 1rem;
  }
}
.related-articles .cta .btn:hover {
  background: #1B1D36;
  color: #ffffff;
}

.legal h3 {
  margin: 1rem 0;
}
.legal h4 {
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.not-found .container {
  text-align: center;
  color: #1B1D36;
  height: auto;
  min-height: 80vh;
  padding: 200px 2rem;
}
@media (max-width: 767px) {
  .not-found .container {
    height: auto;
    min-height: 50vh;
    padding: 4rem 2rem;
  }
}
.not-found .container .cta img {
  display: block;
  margin: 2rem auto;
  max-width: 160px;
}

#hp {
  position: relative;
}
#hp .hp-head {
  margin-top: -20px;
}
@media (max-width: 767px) {
  #hp .hp-head {
    margin-top: -120px;
  }
}
#hp .hp-head1 {
  font-size: 100px;
  color: #ffffff;
  letter-spacing: 5px;
}
@media (max-width: 1023px) {
  #hp .hp-head1 {
    font-size: 75px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  #hp .hp-head1 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
}
#hp .hp-head2 {
  font-family: BlackDiamond, cursive;
  color: #DC582A;
  font-size: 180px;
  margin-top: 0;
  margin-left: 67px;
  padding-top: 16px;
}
@media (max-width: 1023px) {
  #hp .hp-head2 {
    font-size: 110px;
  }
}
@media (max-width: 767px) {
  #hp .hp-head2 {
    font-size: 90px;
    margin-left: 30px;
    padding-top: 0;
  }
}
#hp .hp-head3 {
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 80px;
  line-height: 80px;
  color: #ffffff;
  letter-spacing: 2px;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  #hp .hp-head3 {
    font-size: 48px;
    line-height: 50px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 767px) {
  #hp .hp-head3 {
    font-size: 34px;
    letter-spacing: 1px;
    margin-top: 20px;
  }
}
#hp canvas {
  width: 80%;
  height: auto;
  margin-top: -40px;
}
#hp .hp-wwa img {
  width: 90% !important;
  max-width: 580px;
  margin: 36px 0;
}
@media (max-width: 767px) {
  #hp .hp-wwa img {
    width: 75% !important;
    margin-bottom: 0;
  }
}
#hp .hp-wwa p.wwa1 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
#hp .hp-wwa p.wwa2 {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 80px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #hp .hp-wwa p.wwa2 {
    font-size: 40px;
    line-height: 40px;
  }
}
#hp .hp-wwa p.wwa3 {
  font-family: BlackDiamond, cursive;
  font-size: 120px;
  letter-spacing: 1.2px;
  line-height: 120px;
  color: #DC582A !important;
  text-align: right;
  margin-right: -32px;
  margin-top: -36px;
}
@media (max-width: 767px) {
  #hp .hp-wwa p.wwa3 {
    font-size: 60px;
    line-height: 60px;
    margin-right: 0;
    margin-top: -18px;
  }
}
#hp .hp-wwa p.wwa4 {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #hp .ib-content, #hp .ib-image {
    display: none !important;
  }
  #hp .ib-button a {
    background: transparent;
    border: #0D0630 1px solid;
    border-radius: 20px;
    color: #0D0630;
    text-transform: uppercase;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    font-size: 16px !important;
    line-height: 16px !important;
  }
  #hp .ib-button a:hover {
    background: #1B1D36;
    color: #ffffff;
  }
}

.exp-hero {
  margin-top: -80px;
}
@media (max-width: 767px) {
  .exp-hero {
    margin-top: -120px;
  }
  .exp-hero .tpadding-150 {
    padding-top: 20px;
  }
}
.exp-hero .phead-large {
  line-height: 80px;
}
@media (max-width: 1023px) {
  .exp-hero .phead-large {
    font-size: 75px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .exp-hero .phead-large {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}
.exp-hero .phead-bd {
  margin-top: -40px;
}
@media (max-width: 1023px) {
  .exp-hero .phead-bd {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .exp-hero .phead-bd {
    font-size: 60px;
    line-height: 60px;
    margin-left: 0;
    margin-bottom: 10px;
    padding-top: 20px;
  }
  .exp-hero .phead-bd.indent {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .exp-hero .p-intro {
    margin-top: -100px;
  }
}

@media (max-width: 767px) {
  #why-feature {
    position: relative;
    top: -50px;
  }
}

.work-hero {
  background: url("assets/images/logo-stack.webp") bottom right no-repeat;
  background-size: auto 100%;
  margin-top: -80px;
}
@media (max-width: 767px) {
  .work-hero {
    margin-top: -120px;
  }
  .work-hero .tpadding-150 {
    padding-top: 20px;
  }
}
.work-hero .phead-large {
  line-height: 80px;
}
@media (max-width: 1023px) {
  .work-hero .phead-large {
    font-size: 75px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .work-hero .phead-large {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}
.work-hero .phead-med {
  line-height: 60px;
}
@media (max-width: 1023px) {
  .work-hero .phead-med {
    font-size: 45px;
    margin-bottom: 24px;
  }
}
@media (max-width: 980px) {
  .work-hero .phead-med {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 1px;
  }
}
@media (max-width: 419px) {
  .work-hero .phead-med {
    font-size: 26px;
    line-height: 30px;
  }
}
.work-hero .phead-bd {
  margin-top: -40px;
}
@media (max-width: 1023px) {
  .work-hero .phead-bd {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .work-hero .phead-bd {
    font-size: 70px;
    line-height: 70px;
    margin-left: 30px;
    padding-top: 10px;
  }
}
.work-hero.expertise {
  background: none;
}
@media (max-width: 767px) {
  .work-hero.expertise .p-intro {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .work-hero.expertise .phead-bd {
    margin-top: -200px;
  }
}
@media (max-width: 560px) {
  .work-hero.expertise .phead-bd {
    margin-top: -245px;
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 465px) {
  .work-hero.expertise .phead-bd {
    margin-top: -230px;
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 370px) {
  .work-hero.expertise .phead-bd {
    margin-top: -280px;
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .exp-overview {
    padding: 1rem 0 4rem 2rem !important;
  }
  .exp-overview h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  .exp-overview .wp-block-spacer {
    display: none;
  }
}

.about-hero {
  margin-top: -80px;
}
@media (max-width: 767px) {
  .about-hero {
    margin-top: -120px;
  }
  .about-hero .tpadding-150 {
    padding-top: 20px;
  }
}
.about-hero .phead-large {
  line-height: 70px;
  font-size: 70px;
}
@media (max-width: 1023px) {
  .about-hero .phead-large {
    font-size: 70px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .about-hero .phead-large {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}
.about-hero .phead-bd {
  margin-top: -40px;
}
@media (max-width: 1023px) {
  .about-hero .phead-bd {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .about-hero .phead-bd {
    font-size: 70px;
    line-height: 70px;
    margin-left: 30px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .about-hero .p-intro {
    margin-top: -100px;
  }
}

.tm-row {
  width: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 980px) {
  .tm-row {
    display: block;
    padding-top: 0;
  }
}
.tm-row .tm-wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  background-color: #FAEFE3;
}
@media (max-width: 767px) {
  .tm-row .tm-wrap {
    display: block;
  }
}
.tm-row .tm-wrap .tm-img {
  background: #1B1D36;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  width: 50%;
}
.tm-row .tm-wrap .tm-img.subject-left {
  background-position: center left;
}
.tm-row .tm-wrap .tm-img.subject-left.subject-top {
  background-position: top left;
}
.tm-row .tm-wrap .tm-img.subject-left.subject-v-center {
  background-position: center left;
}
.tm-row .tm-wrap .tm-img.subject-left.subject-bottom {
  background-position: bottom left;
}
.tm-row .tm-wrap .tm-img.subject-center {
  background-position: center center;
}
.tm-row .tm-wrap .tm-img.subject-center.subject-top {
  background-position: top center;
}
.tm-row .tm-wrap .tm-img.subject-center.subject-v-center {
  background-position: center center;
}
.tm-row .tm-wrap .tm-img.subject-center.subject-bottom {
  background-position: bottom center;
}
.tm-row .tm-wrap .tm-img.subject-right {
  background-position: center right;
}
.tm-row .tm-wrap .tm-img.subject-right.subject-top {
  background-position: top right;
}
.tm-row .tm-wrap .tm-img.subject-right.subject-v-center {
  background-position: center right;
}
.tm-row .tm-wrap .tm-img.subject-right.subject-bottom {
  background-position: bottom right;
}
@media (max-width: 1420px) {
  .tm-row .tm-wrap .tm-img {
    width: 30%;
  }
}
@media (max-width: 980px) {
  .tm-row .tm-wrap .tm-img {
    background-image: unset !important;
  }
}
@media (max-width: 767px) {
  .tm-row .tm-wrap .tm-img {
    width: 100%;
    margin: 0 auto;
    padding: 0 0;
  }
}
.tm-row .tm-wrap .tm-img img {
  width: 100%;
  height: auto;
  display: none;
}
@media (max-width: 980px) {
  .tm-row .tm-wrap .tm-img img {
    display: block;
  }
}
.tm-row .tm-wrap .tm-info {
  width: 50%;
  padding: 1rem 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1420px) {
  .tm-row .tm-wrap .tm-info {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .tm-row .tm-wrap .tm-info {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.tm-row .tm-wrap .tm-info h1 {
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .tm-row .tm-wrap .tm-info h1 {
    font-size: 44px;
    line-height: 52px;
  }
}
.tm-row .tm-wrap .tm-info p.team-crumb,
.tm-row .tm-wrap .tm-info p.team-pos {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #333333;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 50px;
}
.tm-row .tm-wrap .tm-info p.team-crumb a,
.tm-row .tm-wrap .tm-info p.team-pos a {
  text-decoration: none;
  color: #333333;
  font-weight: 700;
  transition: 0.5s;
}
.tm-row .tm-wrap .tm-info p.team-crumb a:hover,
.tm-row .tm-wrap .tm-info p.team-pos a:hover {
  color: #1067A9;
}
.tm-row .tm-wrap .tm-info a.linked-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: #333333;
  font-weight: 400;
  margin-top: 32px;
  transition: 0.5s;
}
.tm-row .tm-wrap .tm-info a.linked-link:hover {
  color: #1067A9;
}
.tm-row .tm-wrap .tm-info a.linked-link img {
  width: 39px;
  height: auto;
  margin-right: 12px;
}

@media (max-width: 767px) {
  #team {
    padding: 2rem 0 !important;
  }
}
.thoughts-head {
  padding-top: 150px;
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .thoughts-head {
    padding: 2rem 0;
  }
}
.thoughts-head .thead-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 980px) {
  .thoughts-head .thead-wrap {
    display: block;
    padding: 0 2rem;
  }
}
.thoughts-head .thead-wrap .thead-title {
  width: 65%;
  padding-right: 80px;
}
.thoughts-head .thead-wrap .thead-title a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 2rem;
}
.thoughts-head .thead-wrap .thead-title h1 {
  margin: 2rem auto;
}
@media (max-width: 980px) {
  .thoughts-head .thead-wrap .thead-title {
    margin-bottom: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
  .thoughts-head .thead-wrap .thead-title h1 {
    font-size: 36px;
    line-height: 44px;
    margin: 1.5rem auto;
  }
}
.thoughts-head .thead-wrap .thead-info {
  width: 35%;
  margin-top: 4rem;
}
.thoughts-head .thead-wrap .thead-info p {
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
@media (max-width: 980px) {
  .thoughts-head .thead-wrap .thead-info {
    width: 100%;
    text-align: center;
  }
  .thoughts-head .thead-wrap .thead-info p {
    margin: 0 auto;
  }
}
.thoughts-head h1 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
}

.thought-hero {
  position: relative;
  background: linear-gradient(#651C32 50%, #FAEFE3 0%);
  padding: 2rem 0;
}
.thought-hero img {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}

.thoughts-hero {
  margin-top: -80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .thoughts-hero {
    margin-top: -120px;
  }
  .thoughts-hero .tpadding-150 {
    padding-top: 20px;
  }
}
.thoughts-hero .phead-large {
  line-height: 80px;
}
@media (max-width: 1023px) {
  .thoughts-hero .phead-large {
    font-size: 75px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .thoughts-hero .phead-large {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}
.thoughts-hero .phead-bd {
  margin-top: -40px;
}
@media (max-width: 1023px) {
  .thoughts-hero .phead-bd {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .thoughts-hero .phead-bd {
    font-size: 60px;
    line-height: 60px;
    margin-left: 0;
    margin-bottom: 10px;
    padding-top: 20px;
  }
  .thoughts-hero .phead-bd.indent {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .thoughts-hero .p-intro {
    margin-top: -100px;
    margin-right: -2rem !important;
    padding-bottom: 2rem;
  }
}

.social-share {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem 1rem 0;
}
.social-share h6 {
  color: #0D0630;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
  padding-right: 0.5rem;
}
.social-share ul {
  list-style-type: none;
  margin: 0;
}
.social-share ul li {
  display: inline-block;
  padding: 0 0.25rem;
}

@media (max-width: 767px) {
  .fw-wrap {
    position: relative;
    padding: 4rem 2rem;
  }
  .fw-wrap .fw {
    display: block !important;
  }
  .fw-wrap .fw .fw-content {
    width: 100% !important;
  }
  .fw-wrap .fw .fw-img-wrap {
    display: none !important;
    width: 100% !important;
    top: -100px !important;
    height: auto !important;
  }
  .fw-wrap .fw .fw-img-wrap img {
    position: relative !important;
    margin: 0 auto;
    height: auto !important;
    width: 100% !important;
  }
  #work-posts {
    padding: 2rem 2rem 0 !important;
  }
  #work-posts ul li {
    display: block;
    margin-bottom: 1rem;
  }
}
.cs-head {
  background-color: #651C32;
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 1279px) {
  .cs-head {
    padding: 150px 2rem 50px;
  }
}
@media (max-width: 767px) {
  .cs-head {
    padding: 2rem;
  }
}
.cs-head .cs-head-row {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 767px) {
  .cs-head .cs-head-row {
    display: block;
  }
}
.cs-head .cs-head-row .cs-heading {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-heading {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-heading .p-intro {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-heading .phead-large {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 560px) {
  .cs-head .cs-head-row .cs-heading .phead-large {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-heading .phead-bd {
    font-size: 80px;
    line-height: 80px;
  }
}
@media (max-width: 560px) {
  .cs-head .cs-head-row .cs-heading .phead-bd {
    font-size: 60px;
    line-height: 60px;
  }
  .cs-head .cs-head-row .cs-heading .phead-bd.indent {
    margin-left: 20px !important;
  }
}
@media (max-width: 465px) {
  .cs-head .cs-head-row .cs-heading .phead-bd {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 370px) {
  .cs-head .cs-head-row .cs-heading .phead-bd {
    font-size: 40px;
    line-height: 40px;
  }
}
.cs-head .cs-head-row .cs-heading p:last-child {
  padding-bottom: 48px;
}
.cs-head .cs-head-row .cs-info {
  width: 50%;
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-info {
    width: 100%;
  }
}
.cs-head .cs-head-row .cs-info .cs-info-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 125px;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-info .cs-info-row {
    display: block;
    padding: 2rem 1rem 2rem 0;
  }
}
.cs-head .cs-head-row .cs-info .cs-info-row:last-child {
  border-bottom: none;
}
.cs-head .cs-head-row .cs-info .cs-info-row p,
.cs-head .cs-head-row .cs-info .cs-info-row h2 {
  margin-bottom: 0;
}
.cs-head .cs-head-row .cs-info .cs-info-row .cs-info-head {
  width: 25%;
}
@media (max-width: 767px) {
  .cs-head .cs-head-row .cs-info .cs-info-row .cs-info-head {
    margin-bottom: 1rem;
  }
}
.cs-head .cs-head-row .cs-info .cs-info-row .cs-info-info {
  width: 75%;
}
.cs-head .cs-head-row .cs-info .cs-info-row .cs-info-columns {
  width: 75%;
  -moz-columns: 200px 2;
       columns: 200px 2;
}

.cs-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.alignwide.cs-need {
  padding: 60px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .alignwide.cs-need {
    display: block;
  }
}
.alignwide.cs-need .target {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 50%;
}
@media (max-width: 767px) {
  .alignwide.cs-need .target {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.alignwide.cs-need .target img {
  width: 106px;
  height: auto;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .alignwide.cs-need .target img {
    width: 70px;
  }
}
.alignwide.cs-need .target h2 {
  font-size: 48px;
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .alignwide.cs-need .target h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.alignwide.cs-need .need-copy {
  width: 50%;
}
@media (max-width: 767px) {
  .alignwide.cs-need .need-copy {
    width: 100%;
  }
}
.alignwide.cs-need .need-copy p {
  color: #ffffff;
}

.alignwide.wwd {
  padding: 60px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .alignwide.wwd {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
  }
}
.alignwide.wwd .wwd-image {
  width: 50%;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-image {
    width: 100%;
  }
}
.alignwide.wwd .wwd-image img {
  width: 90%;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-image img {
    width: 100%;
  }
}
.alignwide.wwd .wwd-copy {
  width: 50%;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-copy {
    width: 100%;
    padding: 2rem;
  }
}
.alignwide.wwd .wwd-copy .wwd-copy-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-copy .wwd-copy-head {
    display: block;
  }
}
.alignwide.wwd .wwd-copy .wwd-copy-head img {
  width: 96px;
  height: auto;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-copy .wwd-copy-head img {
    display: block;
    margin: 0 auto;
    width: 70px;
  }
}
.alignwide.wwd .wwd-copy .wwd-copy-head h2 {
  margin-bottom: 0;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .alignwide.wwd .wwd-copy .wwd-copy-head h2 {
    text-align: center;
    font-size: 36px;
    line-height: 42px;
  }
}

.alignwide.cs-results {
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}
.alignwide.cs-results.flex-center {
  align-items: center;
}
@media (max-width: 767px) {
  .alignwide.cs-results {
    display: block;
  }
}
.alignwide.cs-results .cs-result-info {
  width: 50%;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-info {
    width: 100%;
  }
}
.alignwide.cs-results .cs-result-info .cs-result-head {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-info .cs-result-head {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.alignwide.cs-results .cs-result-info .cs-result-head img {
  width: 90px;
  height: auto;
  margin-right: 24px;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-info .cs-result-head img {
    width: 70px;
  }
}
.alignwide.cs-results .cs-result-info .cs-result-head h2 {
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-info .cs-result-head h2 {
    font-size: 36px;
    line-height: 42px;
    margin-top: 0;
  }
}
.alignwide.cs-results .cs-result-info p {
  color: #ffffff;
  padding-right: 24px;
}
.alignwide.cs-results .cs-result-info .cs-result-col2-spacer {
  height: 110px;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-info .cs-result-col2-spacer {
    display: none;
  }
}
.alignwide.cs-results .cs-result-stats {
  width: 50%;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-stats {
    width: 100%;
    padding: 0;
  }
}
.alignwide.cs-results .cs-result-stats .cs-result-stat {
  padding: 0 24px;
  border-bottom: 1px solid #ffffff;
}
.alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat {
    display: block;
    margin: 0 auto;
    padding: 2rem 0;
  }
}
.alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat .big-stat {
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 120px;
  line-height: 120px;
  margin-bottom: 0;
  color: #DC582A;
  width: 75%;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat .big-stat {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
  }
}
.alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat .stat-desc {
  color: #ffffff;
  width: 25%;
}
@media (max-width: 767px) {
  .alignwide.cs-results .cs-result-stats .cs-result-stat .cs-stat .stat-desc {
    width: 100%;
    text-align: center;
  }
}
.alignwide.cs-results .cs-result-stats .cs-result-stat:last-child {
  border-bottom: none;
}

.alignwide.cs-test {
  padding: 60px 0;
  text-align: center;
}
.alignwide.cs-test img {
  margin-bottom: 12px;
}
.alignwide.cs-test .why-who,
.alignwide.cs-test .smiled {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .alignwide.cs-test h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

.cs-mid-hero img {
  width: 100%;
  height: auto;
}

.alignwide.cs-story-head {
  text-align: center;
  margin-bottom: 48px;
  padding-top: 2rem;
}
.alignwide.cs-story-head .story-head {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 100px;
  line-height: 100px;
  margin-bottom: 0;
  color: #DC582A;
  text-align: center;
}
@media (max-width: 767px) {
  .alignwide.cs-story-head .story-head {
    font-size: 56px;
    line-height: 62px;
  }
}
.alignwide.cs-story-head .story-head2 {
  font-family: "BlackDiamond";
  font-size: 140px;
  line-height: 140px;
  margin-top: -32px;
  text-align: center;
  color: #333333;
}
@media (max-width: 767px) {
  .alignwide.cs-story-head .story-head2 {
    font-size: 60px;
    line-height: 68px;
    margin-top: -16px;
  }
}

.alignwide.story-sections .story-section h3 {
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.2px;
  line-height: 56px;
  margin-bottom: 32px;
  color: #DC582A;
}
@media (max-width: 767px) {
  .alignwide.story-sections .story-section h3 {
    font-size: 36px;
    line-height: 42px;
  }
}
.alignwide.story-sections .story-section .story-divider {
  display: block;
  width: 75%;
  height: 1px;
  background-color: #651C32;
  margin: 36px auto;
}
.alignwide.story-sections .story-section .story-divider:last-child {
  background-color: unset;
  margin-bottom: 0;
  padding-bottom: 36px;
}
@media (max-width: 767px) {
  .alignwide.story-sections .story-section .story-divider:last-child {
    padding-bottom: 0;
    margin: 0;
  }
}

.career-hero {
  background-size: auto 100%;
  margin-top: -80px;
}
@media (max-width: 767px) {
  .career-hero {
    margin-top: -120px;
  }
  .career-hero .tpadding-150 {
    padding-top: 20px;
  }
}
.career-hero .phead-large {
  line-height: 80px;
}
@media (max-width: 1023px) {
  .career-hero .phead-large {
    font-size: 75px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .career-hero .phead-large {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
}
@media (max-width: 370px) {
  .career-hero .phead-large {
    font-size: 36px;
    line-height: 42px;
  }
}
.career-hero .phead-bd {
  margin-top: -40px;
}
@media (max-width: 1023px) {
  .career-hero .phead-bd {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .career-hero .phead-bd {
    font-size: 70px;
    line-height: 70px;
    margin-top: -200px;
    margin-left: 30px;
    padding-top: 10px;
  }
  .career-hero .phead-bd.indent {
    margin-left: 0 !important;
  }
}
@media (max-width: 560px) {
  .career-hero .phead-bd {
    margin-top: -245px;
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 465px) {
  .career-hero .phead-bd {
    margin-top: -230px;
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 370px) {
  .career-hero .phead-bd {
    margin-top: -250px;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .career-hero .p-intro {
    margin-top: 60px;
  }
}

.career-teaser {
  padding: 50px 0;
}
.career-teaser .phead {
  font-weight: 600;
}
.career-teaser h2 {
  margin: 0 auto 2rem;
}
@media (max-width: 767px) {
  .career-teaser h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.career-teaser .btn-blk {
  margin-top: 4rem;
}

.career-teaser-alt {
  background: #333333;
  padding: 50px 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .career-teaser-alt {
    padding-top: 2rem;
  }
}
.career-teaser-alt .phead {
  font-weight: 600;
  color: #ffffff;
}
.career-teaser-alt h2 {
  margin: 0 auto 2rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .career-teaser-alt h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.career-teaser-alt p {
  color: #ffffff;
}
.career-teaser-alt .btn-blk {
  margin-top: 4rem;
  color: #ffffff;
  border: #ffffff 1px solid;
}
@media (max-width: 767px) {
  .career-teaser-alt #career-feature {
    display: none;
  }
}

@media (max-width: 767px) {
  #career-feature {
    position: relative;
    top: unset;
  }
  #career-feature img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}

.job-posting .badge {
  width: 50%;
}
.job-posting .badge img {
  display: block;
  margin: 0 auto;
  width: 70%;
  height: auto;
}
@media (max-width: 767px) {
  .job-posting .badge {
    width: 100%;
    margin: 2rem auto;
  }
}
.job-posting .job-head {
  padding-top: 150px;
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .job-posting .job-head {
    padding: 2rem 0;
  }
}
.job-posting .job-head .job-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap {
    display: block;
    padding: 0 2rem;
  }
}
.job-posting .job-head .job-wrap .job-title {
  width: 50%;
  padding: 1rem 4rem 0 2rem;
}
.job-posting .job-head .job-wrap .job-title a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap .job-title {
    margin-bottom: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
  .job-posting .job-head .job-wrap .job-title h1 {
    font-size: 36px;
    line-height: 44px;
    margin: 1.5rem auto;
  }
}
.job-posting .job-head .job-wrap .job-info {
  width: 50%;
}
.job-posting .job-head .job-wrap .job-info .job-item {
  display: flex;
  align-items: center;
  border-bottom: #ffffff 1px solid;
  padding: 2rem 1rem 2rem 0;
  text-align: left;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap .job-info .job-item {
    display: block;
  }
}
.job-posting .job-head .job-wrap .job-info .job-item:last-child {
  border-bottom: none;
}
.job-posting .job-head .job-wrap .job-info .job-item .job-item-name {
  width: 25%;
  color: #ffffff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap .job-info .job-item .job-item-name {
    width: 100%;
  }
}
.job-posting .job-head .job-wrap .job-info .job-item .job-item-value {
  width: 75%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap .job-info .job-item .job-item-value {
    width: 100%;
  }
}
.job-posting .job-head .job-wrap .job-info .job-item .job-item-value h2 {
  margin-bottom: 0;
}
.job-posting .job-head .job-wrap .job-info p {
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .job-posting .job-head .job-wrap .job-info {
    width: 100%;
    text-align: center;
  }
  .job-posting .job-head .job-wrap .job-info p {
    margin: 0 auto;
  }
}
.job-posting .job-head h1 {
  color: #ffffff;
  font-size: 50px;
  line-height: 60px;
}
.job-posting .job-summary-wrap {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .job-posting .job-summary-wrap {
    display: block;
  }
}
.job-posting .job-summary-wrap .job-summary {
  width: 50%;
  color: #0D0630;
}
@media (max-width: 767px) {
  .job-posting .job-summary-wrap .job-summary {
    width: 100%;
  }
}
.job-posting .job-summary-wrap .job-summary h3 {
  text-transform: uppercase;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.job-posting .job-reqs-wrap {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media (max-width: 767px) {
  .job-posting .job-reqs-wrap {
    display: block;
  }
}
.job-posting .job-reqs-wrap p {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
  padding: 0.5rem 2rem;
  border-left: #E5E1E6 1px solid;
  margin-bottom: 2rem;
}
.job-posting .job-reqs-wrap .job-roles {
  width: 50%;
}
@media (max-width: 767px) {
  .job-posting .job-reqs-wrap .job-roles {
    width: 100%;
    margin-bottom: 4rem;
  }
  .job-posting .job-reqs-wrap .job-roles h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.job-posting .job-reqs-wrap .job-quals {
  width: 50%;
}
@media (max-width: 767px) {
  .job-posting .job-reqs-wrap .job-quals {
    width: 100%;
  }
  .job-posting .job-reqs-wrap .job-quals h2 {
    font-size: 36px;
    line-height: 42px;
  }
}

.application-form-wrap {
  margin: 0 auto;
  padding: 4rem 2rem;
  background: #FAEFE3;
  color: #0D0630;
}
.application-form-wrap .application-form-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .application-form-wrap .application-form-inner {
    display: block;
  }
  .application-form-wrap .application-form-inner h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.application-form-wrap .application-form-inner .application-form {
  width: 50%;
}
@media (max-width: 767px) {
  .application-form-wrap .application-form-inner .application-form {
    width: 100%;
  }
}
.application-form-wrap input[type=text],
.application-form-wrap input[type=email],
.application-form-wrap input[type=tel],
.application-form-wrap input[type=url] {
  border: #E5E1E6 1px solid !important;
  box-shadow: none !important;
  color: #3F3F3F !important;
}
.application-form-wrap legend,
.application-form-wrap .gfield_label {
  font-size: 16px;
  font: proxima-nova, Arial, Helvetica, sans-serif;
  font-weight: 600 !important;
  color: #0D0630;
  text-transform: uppercase;
}
.application-form-wrap .gform_required_legend {
  display: none;
}
.application-form-wrap img {
  display: block;
  max-width: 400px !important;
  height: auto;
  margin: 0 auto;
}
.application-form-wrap input[type=submit] {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 16px !important;
  border-radius: 32px !important;
  padding: 18px 32px !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  background: transparent !important;
  color: #0D0630 !important;
  border: #1B1D36 1px solid !important;
  box-shadow: none !important;
  display: block !important;
  margin: 0 auto !important;
}
.application-form-wrap input[type=submit]:hover {
  background: #1B1D36 !important;
  color: #ffffff !important;
}
.application-form-wrap .gfield--type-section {
  border-bottom: none !important;
}
.application-form-wrap .gfield--type-section h3 {
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}

#slanding {
  background-color: #651C32;
  padding-top: 50px;
}
#slanding .content-area {
  padding-top: 50px;
}
#slanding .sl-head {
  text-align: center;
  padding-bottom: 36px;
}
#slanding .sl-head img {
  width: 120px;
  height: auto;
  display: inline-block;
  margin: 0 auto 24px auto;
}
#slanding .sl-head .abril {
  font-family: abril-fatface, "Times New Roman", Times, serif;
  font-size: 48px;
  line-height: 55px;
  color: #DC582A;
}
#slanding .sl-head .blackdiamond {
  font-family: BlackDiamond, cursive;
  font-size: 48px;
  color: #DC582A;
}
#slanding .sl-head .sl-copy {
  width: 90%;
  max-width: 800px;
  display: block;
  margin: 0 auto 24px auto;
}
#slanding .sl-head .sl-copy p {
  color: #ffffff;
  font-family: proxima-nova, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}
#slanding .sl-head iframe {
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
  margin: 0 auto;
}

.sl-cta {
  background-color: #333333 !important;
  padding: 36px 0;
  text-align: center;
}
.sl-cta h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
}
.sl-cta .sl-cta-copy {
  display: block;
  width: 90%;
  max-width: 600px;
  margin: 0 auto 24px auto;
}
.sl-cta .sl-cta-copy p {
  color: #ffffff;
}
.sl-cta .sl-cta-block {
  width: 300px;
  background-color: #ffffff;
  border-radius: 16px;
  display: block;
  padding: 16px 0;
  margin: 0 auto 36px auto;
}
.sl-cta .sl-cta-block .cta-name {
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  margin-bottom: 4px;
}
.sl-cta .sl-cta-block .cta-title {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 12px;
  line-height: 14px;
}
.sl-cta .sl-cta-block .cta-link {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  margin-bottom: 8px;
  color: #DC582A;
  text-decoration: none;
}
.sl-cta .sl-footer-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 12px auto;
}
.sl-cta .sl-footer-address {
  font-size: 14px;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */