/*
---------------------------------------
BASIC STUFF AND TYPOGRAPHY
------------------------------------ */
html {
  overflow-y: scroll;
}

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}

.touch body {
  -webkit-text-size-adjust: none;
}

:focus {
  -moz-outline-style: none;
  outline: none;
}

body {
  margin: 0;
  font-size: 18px;
  line-height: 1.5em;
  font-family: "PPTelegraf", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

div.clear {
  clear: both;
}

h1, h2.parent {
  font: normal normal 64px/1.1em "Fixture-ExpandedSemiBold", Helvetica, Arial, sans-serif;
  margin: 0.5em 0;
  text-transform: uppercase;
  color: #F37222;
}
@media screen and (max-width: 767px) {
  h1, h2.parent {
    font-size: 35px;
  }
}

h2, h1.child {
  font: normal normal 45px/1.1em "Fixture-ExpandedSemiBold", Helvetica, Arial, sans-serif;
  margin: 0.5em 0;
  text-transform: uppercase;
  color: #F37222;
}
@media screen and (max-width: 767px) {
  h2, h1.child {
    font-size: 35px;
  }
}

h3 {
  font: normal normal 23px/1.5em "Fixture-ExpandedSemiBold", Helvetica, Arial, sans-serif;
  margin: 0.5em 0;
  text-transform: uppercase;
  color: #F37222;
}

h4 {
  font: normal normal 32px/1.5em "PPTelegraf", Helvetica, Arial, sans-serif;
  margin: 1em 0;
}
h4 strong {
  color: #F37222;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

.home_intro h4 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .home_intro h4 {
    font-size: 20px;
  }
}

h1 strong, h2 strong, h3 strong {
  color: white;
}

/* ------------------------------------
HEADER
------------------------------------ */
header.main {
  padding: 25px 0;
  background: white;
}
@media screen and (max-width: 767px) {
  header.main {
    height: 80px;
    padding: 0;
  }
}
header.main .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header.main .header_inner {
    height: 80px;
  }
}
header.main .header_inner .logo {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  header.main .header_inner nav {
    display: none;
  }
}
header.main .header_inner nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main .header_inner nav ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  line-height: 0;
}
header.main .header_inner nav ul.menu li a {
  font: normal normal 16px/normal "PPTelegraf", Helvetica, Arial, sans-serif;
  text-decoration: none;
  display: block;
  padding: 18px 25px;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  header.main .header_inner nav ul.menu li a {
    padding: 18px 12px;
  }
}
header.main .header_inner nav ul.menu li:hover > a, header.main .header_inner nav ul.menu li > a:hover {
  color: #757575;
}
header.main .header_inner nav ul.menu li.current_page_item > a, header.main .header_inner nav ul.menu li.current_page_parent > a {
  color: #F37222;
}
header.main .header_inner nav ul.menu li.phone a {
  color: white;
  background: #F37222;
  display: inline-block;
  padding: 12px 18px 10px 18px;
  font-weight: bold;
  margin-left: 10px;
}
@media screen and (max-width: 1400px) {
  header.main .header_inner nav ul.menu li.phone a {
    padding: 10px 12px 8px 12px;
  }
}
header.main .header_inner nav ul.menu li.phone a span {
  font-size: 12px;
  line-height: 12px;
  display: block;
}
header.main .header_inner nav ul.menu li.phone a:hover {
  background-color: #D95807;
  color: white;
}
header.main .header_inner nav ul.menu li.menu-item-has-children a::after {
  display: inline;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  font-size: 55%;
  margin: 0 0 0 5px;
}
header.main .header_inner nav ul.menu ul.sub-menu {
  display: none;
}

header.main nav ul.menu > li {
  position: relative;
}
header.main nav ul.menu > li > ul.sub-menu {
  position: absolute;
  left: 0;
  top: 98%;
  display: none;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
  width: 340px;
  z-index: 8;
}
header.main nav ul.menu > li > ul.sub-menu li {
  display: block;
}
header.main nav ul.menu > li > ul.sub-menu li a {
  display: block;
  padding: 8px 25px;
  color: black;
  text-align: left;
}
header.main nav ul.menu > li > ul.sub-menu li a:after {
  display: none !important;
}
header.main nav ul.menu > li > ul.sub-menu li a:hover {
  color: #757575 !important;
}
header.main nav ul.menu > li > ul.sub-menu li:first-child a {
  padding-top: 14px;
}
header.main nav ul.menu > li > ul.sub-menu li:last-child a {
  padding-bottom: 14px;
}
header.main nav ul.menu > li > ul.sub-menu ul.sub-menu {
  display: none !important;
}
header.main nav ul.menu > li.menu-item-has-children:hover ul.sub-menu {
  display: block;
}

a.nav_toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 26px;
  color: black;
  z-index: 81;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  a.nav_toggle {
    display: block;
  }
}

header.main {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.mm-wrapper--opened header.main {
  opacity: 0;
  pointer-events: none;
}
.mm-wrapper--opened a.nav_toggle {
  pointer-events: none;
  position: fixed;
}
.mm-wrapper--opened a.nav_toggle .fa-bars:before {
  content: "\e59b";
}

.mm-menu a {
  font-family: "PPTelegraf", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
}

.mm-listitem a span i {
  margin: 0 8px 0 6px;
}

@media screen and (min-width: 768px) {
  .wpmm-force-bg {
    background: transparent !important;
  }
}
a.emergency {
  display: none;
  background: #F37222;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 767px) {
  a.emergency {
    display: block;
  }
}

/* ------------------------------------
GENERAL LAYOUT
------------------------------------ */
.maxwidth {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .maxwidth {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.homebanner {
  background: black url(../images/homebanner_bg.png) no-repeat center center;
  background-size: cover;
  height: 42vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .homebanner {
    height: auto;
    display: block;
    background: black;
    padding: 20px 0;
    margin: 0 0 26px 0;
  }
}
.homebanner .homebanner_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_inner {
    display: block;
    max-width: none;
    width: auto;
  }
}
.homebanner .homebanner_inner .homebanner_text {
  max-width: 50%;
}
.homebanner .homebanner_inner .homebanner_text p.homebanner_cta a {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_inner .homebanner_text p.homebanner_cta a {
    margin: 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_inner .homebanner_text {
    max-width: none;
  }
}
.homebanner .homebanner_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 116%;
  z-index: 1;
  -webkit-mask-image: url(../images/homebanner_mask.png);
          mask-image: url(../images/homebanner_mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_image {
    position: relative;
    width: 80%;
    aspect-ratio: 1/1.1;
    margin: -20px 0 -68px 20px;
  }
}
.homebanner .homebanner_image.mask2 {
  -webkit-mask-image: url(../images/homebanner_mask2.png);
          mask-image: url(../images/homebanner_mask2.png);
}
.homebanner .homebanner_image video.homebanner_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homebanner .homebanner_image .homebanner_slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.homebanner .homebanner_image .homebanner_slides img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoomy 40s ease-out 0s infinite alternate;
          animation: zoomy 40s ease-out 0s infinite alternate;
}
.homebanner .homebanner_image .slick-track, .homebanner .homebanner_image .slick-list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.homebanner h1 {
  margin: 0;
  font-size: 86px;
}
@media screen and (max-width: 1400px) {
  .homebanner h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 767px) {
  .homebanner h1 {
    font-size: 30px;
  }
}
.homebanner h3 {
  margin: 0;
  color: white;
}
@media screen and (max-width: 767px) {
  .homebanner h3 {
    font-size: 18px;
  }
}

@-webkit-keyframes zoomy {
  0% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  }
  100% {
    -webkit-transform: scale(1.2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1.2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  }
}

@keyframes zoomy {
  0% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  }
  100% {
    -webkit-transform: scale(1.2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
    transform: scale(1.2) rotate(0deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
  }
}
.home_intro {
  padding: 50px 40px 40px 40px;
}
@media screen and (max-width: 767px) {
  .home_intro {
    padding: 20px;
  }
}
.home_intro .home_intro_inner {
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .home_intro .home_intro_inner {
    max-width: none;
  }
}
.home_intro p.intro_ctas a.button {
  margin: 8px 0;
}

.page_header {
  background: #2c282a;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .page_header {
    padding: 40px 0;
  }
}
.page_header .page_header_inner h1, .page_header .page_header_inner h2.parent {
  color: white;
  font-size: 18px;
  margin: 0;
  text-indent: 4px;
}
.page_header .page_header_inner h2, .page_header .page_header_inner h1.child {
  color: #F37222;
  font-size: 55px;
  margin: 0;
  text-indent: 0;
}
@media screen and (max-width: 767px) {
  .page_header .page_header_inner h2, .page_header .page_header_inner h1.child {
    font-size: 35px;
  }
}

.modules section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .modules section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.modules section.module_two_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .modules section.module_two_columns {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.modules section.module_two_columns .col {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .modules section.module_two_columns .col {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.modules section.module_cta {
  background: #2c282a;
  clip-path: polygon(5% 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0 10%);
  color: white;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modules section.module_cta {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.modules section.module_cta .module_cta_inner {
  max-width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .modules section.module_cta .module_cta_inner {
    max-width: none;
  }
}
.modules section.module_text_and_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image {
    display: block;
    padding: 20px;
  }
}
.modules section.module_text_and_image .module_text_and_image_image {
  width: 46%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image .module_text_and_image_image {
    width: auto;
    margin-left: 0;
    min-height: 250px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.modules section.module_text_and_image.contain .module_text_and_image_image {
  clip-path: none;
  background-size: contain;
}
.modules section.module_text_and_image .module_text_and_image_text {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image .module_text_and_image_text {
    width: auto;
    padding: 20px 0;
  }
}
.modules section.module_text_and_image.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.modules section.module_boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .modules section.module_boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.modules section.module_boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (max-width: 767px) {
  .modules section.module_boxes .box {
    margin: 20px 0;
  }
}
.modules section.module_boxes .box .box_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.modules section.module_boxes .box .box_text p {
  margin: 0;
}
.modules section.module_boxes .box img {
  width: 100%;
  aspect-ratio: 20/14;
  -o-object-fit: cover;
     object-fit: cover;
}
.modules section.module_boxes .box:first-child img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}
.modules section.module_boxes .box:last-child img {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}
.modules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .modules ul {
    text-align: left;
  }
}
.modules ul li {
  position: relative;
  padding-left: 1.5em; /* enough space for image + gap */
  margin-bottom: 1em;
}
.modules ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1em;
  height: 1em;
  background: url("../images/bullet.png") no-repeat left top;
  background-size: contain;
}

/* ------------------------------------
HOMEPAGE
------------------------------------ */
/* ------------------------------------
FOOTER
------------------------------------ */
.footer_cta {
  padding: 40px 0 0 0;
  margin: 0 0 -60px 0;
}
@media screen and (max-width: 767px) {
  .footer_cta {
    background: #F37222;
    color: white;
    padding: 20px;
  }
  .footer_cta h1, .footer_cta h2 {
    color: white;
  }
  .footer_cta input[type=submit], .footer_cta button, .footer_cta .button {
    border: 1px solid white;
    margin-top: 8px;
  }
}
.footer_cta .footer_cta_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .footer_cta .footer_cta_inner {
    display: block;
    padding: 0;
  }
}
.footer_cta .footer_cta_inner .footer_cta_text {
  max-width: 60%;
  margin: 0 0 0 auto;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 767px) {
  .footer_cta .footer_cta_inner .footer_cta_text {
    max-width: none;
    padding: 0;
  }
}
.footer_cta .footer_cta_inner img.footer_bg {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .footer_cta .footer_cta_inner img.footer_bg {
    display: none;
  }
}

footer {
  padding: 70px 0;
  background: #2c282a;
  color: white;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 30px;
  }
}
footer a {
  color: white;
}
footer p.fineprint {
  font-size: 60%;
}
footer p.fineprint a {
  text-decoration: underline;
}
footer ul.menu {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  footer ul.menu {
    display: none;
  }
}
footer ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
}
footer ul.menu li a {
  font: normal normal 16px/normal "PPTelegraf", Helvetica, Arial, sans-serif;
  text-decoration: none;
  display: block;
  padding: 16px;
  overflow: hidden;
  text-align: center;
}
footer ul.menu li.phone {
  display: none;
}
footer ul.menu ul.sub-menu {
  display: none;
}

/* ------------------------------------
FORMS
------------------------------------ */
input[type=text], input[type=email], input[type=number], select, textarea {
  font: 16px "PPTelegraf", Helvetica, Arial, sans-serif;
  padding: 12px;
  border-radius: 0;
  border: 1px solid black;
  width: 100%;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=submit], button, .button {
  font-size: 13px;
  line-height: 13px;
  display: inline-block;
  padding: 14px 50px 14px 20px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  background: #F37222 url(../images/button.svg) no-repeat calc(100% - 16px) center;
  color: white;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
input[type=submit]:hover, button:hover, .button:hover {
  background-color: #D95807;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gform_ajax_spinner {
  vertical-align: middle;
  margin: 0 8px;
}

.gform_wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.gform_wrapper ul, .gform_wrapper li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gform_wrapper ul.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gform_wrapper ul.gform_fields li.gfield {
  width: 100%;
}
.gform_wrapper ul.gform_fields li.gfield > label {
  display: none;
}
.gform_wrapper ul.gform_fields li.gfield .ginput_container {
  padding: 10px;
}
.gform_wrapper ul.gform_fields li.gfield.half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .gform_wrapper ul.gform_fields li.gfield.half {
    width: 100%;
  }
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .validation_error {
  display: none;
}
.gform_wrapper .validation_message {
  color: red;
  font-size: 13px;
  text-align: center;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
  margin: 6px 0 0 0;
  padding-top: 0;
  font-size: 75%;
  line-height: 1.3em;
}

.gform_wrapper.gravity-theme .field_description_above .gfield_description {
  margin: 0 !important;
}

.ginput_preview_list {
  font-size: 75%;
  line-height: 1.1em;
}

.gform_wrapper.gravity-theme .gfield_label {
  margin-bottom: 2px;
}

.gform_wrapper.gravity-theme .ginput_preview {
  margin: 0;
}

.gform_wrapper.gravity-theme .gform_delete_file {
  padding: 5px;
  color: black;
}

span.gfield_fileupload_filename {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  display: inline-block;
  font-style: italic;
}

p.small {
  font-size: 14px;
  margin: 0;
}

button.gform_button_select_files {
  background-color: #888;
}

/* ------------------------------------
EVERYTHING ELSE, MISCELLANEOUS STUFF
------------------------------------ */
.alignright {
  clear: right;
  float: right;
  margin: 0px 0px 20px 20px;
}

.alignleft {
  clear: left;
  float: left;
  margin: 0px 20px 20px 0px;
}

.wp-caption-text {
  font-style: italic;
  font-size: 11px;
  line-height: 16px;
  margin-top: 3px;
}

.oldie [data-aos] {
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.wp-caption {
  width: auto !important;
}

button.mfp-close, button.mfp-close:hover {
  background: transparent !important;
}

a {
  -webkit-tap-highlight-color: #9ce2ff;
}

::-moz-selection {
  background: #9ce2ff !important;
}

::selection {
  background: #9ce2ff !important;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

@font-face {
  font-family: "Fixture-ExpandedSemiBold";
  src: url("../fonts/fixture-expanded-semibold.eot");
  src: url("../fonts/fixture-expanded-semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/fixture-expanded-semibold.woff2") format("woff2"), url("../fonts/fixture-expanded-semibold.woff") format("woff"), url("../fonts/fixture-expanded-semibold.ttf") format("truetype"), url("../fonts/fixture-expanded-semibold.svg#youworkforthem") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPTelegraf";
  src: url("../fonts/PPTelegraf-Regular.woff2") format("woff2"), url("../fonts/PPTelegraf-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "PPTelegraf";
  src: url("../fonts/PPTelegraf-Bold.woff2") format("woff2"), url("../fonts/PPTelegraf-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}