/* ---------------------------------------------- *	Big Mama Styles!	Here we collate all of our partials into one file ready to be processed and generate that	beautiful CSS.\* ---------------------------------------------- *//* - Index-------------------------------------------------	- Susy ...................................... 1.0.	- Breakpoint ................................ 2.0.	- Modular Scale ............................. 3.0.	- Mixins .................................... 4.0.	- Variables ................................. 5.0.	- Reset ..................................... 6.0.	- Base ...................................... 7.0.	- Grid ...................................... 8.0.	- Typography ................................ 9.0.	- Nav ...................................... 10.0.	- Header ................................... 11.0.	- Content .................................. 12.0.	- Footer ................................... 13.0.*//* -----------------------------------------	1.0. Susy----------------------------------------- *//* -----------------------------------------	2.0. Breakpoint----------------------------------------- *//* -----------------------------------------	3.0. Modular Scale----------------------------------------- *//* -----------------------------------------	4.0. Mixins----------------------------------------- *//* -----------------------------------------	5.0. Variables----------------------------------------- *//* -----------------------------------------	6.0. Reset----------------------------------------- *//* ---------------------------------------------- *  Partial: reset  Reset the fuck out of everything. Phwouah!\* ---------------------------------------------- */* {  box-sizing: border-box; }html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {  margin: 0;  padding: 0;  border: 0;  font-size: 100%;  font: inherit;  vertical-align: baseline; }article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {  display: block; }html, body {  height: 100%; }a img {  border: none; }blockquote {  quotes: none; }blockquote:before, blockquote:after {  content: '';  content: none; }table {  border-collapse: collapse;  border-spacing: 0; }caption, th, td {  text-align: left;  font-weight: normal;  vertical-align: middle; }/* -----------------------------------------	8.0. Grid----------------------------------------- *//* ---------------------------------------------- *  Partial: grid  We're using Susy. Please visit http://susy.readthedocs.org/en/latest/install/  Due to using Susy, we're going to need the Ruby gems installed. Please a see a guide here: [TBD].  Usage  =====\* ---------------------------------------------- *//* - Index-------------------------------------------------  - Global defaults     ............................. 1.0.  - Grid makeup         ............................. 2.0.*//* ---------------------------------------------- *  1.0 Global defaults\* ---------------------------------------------- *//* ---------------------------------------------- *  1.0 Grid makeup\* ---------------------------------------------- */.contain {  max-width: 1080px;  margin-left: auto;  margin-right: auto;  min-width: 1080px; }  .contain:after {    content: " ";    display: block;    clear: both; }  .contain--table {    display: table;    width: 100%;    max-width: 1080px;    min-width: 1080px;    margin: 0 auto; }/* -----------------------------------------	7.0. Base----------------------------------------- */@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }@keyframes fade-in-up {  0% {    transform: translateY(20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-down {  0% {    transform: translateY(-20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-up-big {  0% {    transform: translateY(100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-down-big {  0% {    transform: translateY(-100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-left {  0% {    transform: translateX(-20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-left-big {  0% {    transform: translateX(-100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-right {  0% {    transform: translateX(20px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes fade-in-right-big {  0% {    transform: translateX(100px);    opacity: 0; }  100% {    transform: translate(0);    opacity: 1; } }@keyframes grow {  0% {    transform: scale(0);    opacity: 0; }  100% {    transform: scale(1);    opacity: 1; } }@keyframes element-overlay {  0% {    width: 0;    left: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  30% {    width: 100%;    left: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  50% {    width: 100%;    right: 0;    left: auto;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); }  100% {    width: 0%;    right: 0;    animation-timing-function: cubic-bezier(0.72, 0.11, 0.61, 0.89); } }@keyframes clip-path-in {  0% {    -webkit-clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    clip-path: polygon(0 86%, 0 100%, 14% 100%, 0 100%);    opacity: 0; }  100% {    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);    opacity: 1; } }/*! * animsition v4.0.2 * A simple and easy jQuery plugin for CSS animated page transitions. * http://blivesta.github.io/animsition * License : MIT * Author : blivesta (http://blivesta.com/) */.animsition,.animsition-overlay {  position: relative;  opacity: 0;  animation-fill-mode: both; }/** * overlay option */.animsition-overlay-slide {  position: fixed;  z-index: 1;  width: 100%;  height: 100%;  background-color: #ddd; }/* loading option */.animsition-loading,.animsition-loading:after {  width: 32px;  height: 32px;  position: fixed;  top: 50%;  left: 50%;  margin-top: -16px;  margin-left: -16px;  border-radius: 50%;  z-index: 100; }.animsition-loading {  background-color: transparent;  border-top: 5px solid rgba(0, 0, 0, 0.2);  border-right: 5px solid rgba(0, 0, 0, 0.2);  border-bottom: 5px solid rgba(0, 0, 0, 0.2);  border-left: 5px solid #eee;  transform: translateZ(0);  animation-iteration-count: infinite;  animation-timing-function: linear;  animation-duration: .8s;  animation-name: animsition-loading; }@keyframes animsition-loading {  0% {    transform: rotate(0deg); }  100% {    transform: rotate(360deg); } }@keyframes fade-in {  0% {    opacity: 0; }  100% {    opacity: 1; } }.fade-in {  animation-name: fade-in; }@keyframes fade-out-up {  0% {    transform: translateY(0);    opacity: 1; }  100% {    transform: translateY(-500px);    opacity: 0; } }.fade-out-up {  animation-name: fade-out-up; }/* ---------------------------------------------- *  Partial: base  Here you place the base defaults to any project\* ---------------------------------------------- */*, *:before, *:after {  box-sizing: border-box; }html {  font-size: 100%;  -webkit-text-size-adjust: 100%;      -ms-text-size-adjust: 100%;          text-size-adjust: 100%; }body {  color: #050505;  font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 14px;  line-height: 1.6;  margin: 0;  font-size: 14px; }  @media (min-width: 600px) {    body {      font-size: calc(14px + 2 * (100vw - 600px) / 430); } }  @media (min-width: 1030px) {    body {      font-size: 16px; } }  body.show-menu {    overflow: hidden; }.page-wrapper {  overflow-x: hidden; }html, body {  height: 100%;  min-height: 100%; }small {  font-size: 0.85em; }ul li {  list-style: none; }ol li {  list-style: none; }img, object, embed {  height: auto;  max-width: 100%; }blockquote {  color: #FFFFFF;  font-size: 1.1em;  font-style: italic;  margin: 0 0 1.250em 1.250em;  padding: 0.625em 1.250em 1.250em; }  blockquote p:last-child {    margin-bottom: 0; }/*********************************************	- 2.0 -  LINKS*********************************************//* - 2.1. - BASE LINK STYLES	------------------------------------------ */a {  color: #f9b874;  cursor: pointer;  text-decoration: none;  /* Improve readability when focused and hovered in all browsers: h5bp.com/h */ }  a:hover {    color: #050505; }  a:focus {    color: #050505; }  a:focus, a:active {    outline: none; }/* - 2.2. - HEADER LINKS 	------------------------------------------ */h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {  color: #f9b874; }/*********************************************	- 3.0 -  Helpers*********************************************/.hide {  display: none; }.center-align {  text-align: center; }.container {  width: 88%;  margin: 0 auto;  max-width: 1900px; }  .container:before, .container:after {    content: "";    display: table; }  .container:after {    clear: both; }section {  padding: 3em 0;  background-color: #fff; }  section:before, section:after {    content: "";    display: table; }  section:after {    clear: both; }  @media (min-width: 37.5em) {    section {      padding: 6em 0; } }.previewFrame .bg-img {  position: relative;  overflow: hidden; }  .previewFrame .bg-img img {    display: block !important;    position: absolute;    width: 100%;    top: 0;    left: 0; }/* -----------------------------------------	9.0. Typography----------------------------------------- *//* ---------------------------------------------- *  Partial: typography  I set all typographic styles here. First we list our variables such as fonts (maybe we're using some @font-face) and  additionally and maps we might want to use. Then we specificy the typographic scales we want.\* ---------------------------------------------- */@font-face {  font-family: 'font-name';  src: url("/mulgrew-com/_img/fonts/font-name.eot");  src: url("/mulgrew-com/_img/fonts/font-name.eot?#iefix") format("embedded-opentype"), url("/mulgrew-com/_img/fonts/font-name.woff") format("woff"), url("/mulgrew-com/_img/fonts/font-name.ttf") format("truetype"); }h1, h2, h3, h4, h5, h6 {  font-family: "GlacialIndifferenceRegular", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-style: normal;  color: inherit;  text-rendering: optimizeLegibility;  margin: 1.5em 0 0.5em;  line-height: 1.3; }  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {    margin-top: 0; }h1, h2, h3 {  letter-spacing: 1px; }h1, .h1 {  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 2.98598em;  text-transform: uppercase; }  @media (min-width: 40em) {    h1, .h1 {      font-size: 3.58318em; } }  @media (min-width: 75em) {    h1, .h1 {      font-size: 4.29982em; } }h2, .h2 {  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 2.48832em;  text-transform: uppercase; }  @media (min-width: 40em) {    h2, .h2 {      font-size: 2.98598em; } }  @media (min-width: 75em) {    h2, .h2 {      font-size: 3.58318em; } }h3, .h3 {  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 2.0736em;  text-transform: uppercase; }  @media (min-width: 40em) {    h3, .h3 {      font-size: 2.48832em; } }  @media (min-width: 75em) {    h3, .h3 {      font-size: 2.98598em; } }h4, .h4 {  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 1.44em; }  @media (min-width: 40em) {    h4, .h4 {      font-size: 2.0736em; } }h5, .h5 {  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 1.44em; }h6, .h6 {  font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 1.2em;  line-height: 1.6; }p, .p {  font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-size: 1em;  line-height: 1.9;  text-rendering: optimizeLegibility;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale; }  p:not(:last-child), .p:not(:last-child) {    margin-bottom: 1.4em; }strong, b {  font-weight: 600; }em {  font-style: italic; }/* -----------------------------------------	10.0. Nav----------------------------------------- *//* ---------------------------------------------- *  Partial: nav  All navigation styles here. This is sort that we can try keep things seperated and easy to maintain. You can  include all global navigation styles here.\* ---------------------------------------------- */.main-nav {  display: none; }  @media (min-width: 59.375em) {    .main-nav {      display: table-cell; } }  .main-nav .nav {    float: right; }    .main-nav .nav > ul > li {      float: left;      position: relative;      list-style: none;      padding: 0;      -ms-transform: translateY(-20px);          transform: translateY(-20px);      opacity: 0; }      .page-loaded .main-nav .nav > ul > li {        animation: fade-in-down 300ms ease-out forwards; }      .main-nav .nav > ul > li > a {        text-decoration: none;        color: #050505;        display: block;        padding: 1.75em 1em;        font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;        text-transform: uppercase;        font-weight: normal;        font-size: 0.75em; }        @media (min-width: 57.5em) {          .main-nav .nav > ul > li > a {            font-size: 0.835em; } }        @media (min-width: 68.75em) {          .main-nav .nav > ul > li > a {            padding: 1.75em 1.5em; } }        @media (min-width: 78.125em) {          .main-nav .nav > ul > li > a {            font-size: 1em; } }      .main-nav .nav > ul > li.liLinkActive {        background-color: #f0892c; }        .main-nav .nav > ul > li.liLinkActive:hover {          background-color: #f0892c; }      .main-nav .nav > ul > li:hover {        background-color: #e03908; }        .no-cssanimations .main-nav .nav > ul > li:hover > ul {          display: block; }        .cssanimations .main-nav .nav > ul > li:hover > ul {          visibility: visible;          animation: fade-in-down 300ms ease-out forwards; }      .main-nav .nav > ul > li > ul {        position: absolute;        top: 100%;        padding: 1rem 0.5rem;        min-width: 10em;        background-color: rgba(224, 57, 8, 0.95);        box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.1);        left: 0;        text-align: left; }        .no-cssanimations .main-nav .nav > ul > li > ul {          display: none; }        .cssanimations .main-nav .nav > ul > li > ul {          opacity: 0;          visibility: hidden;          -ms-transform: translateY(-100%);              transform: translateY(-100%); }        .main-nav .nav > ul > li > ul > li {          display: block; }          .main-nav .nav > ul > li > ul > li a {            display: block;            white-space: nowrap;            padding: 0.5em 1em;            font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;            color: #fff;            font-size: 14px; }          .main-nav .nav > ul > li > ul > li:hover a {            color: #f9b874; }.mobile-nav {  opacity: 0;  visibility: hidden;  z-index: -1;  position: fixed;  top: 0;  left: 0;  width: 100%;  min-height: 100vh;  height: 100%;  background-color: #050505;  padding: 6em 0 4em;  display: -ms-flexbox;  display: flex;  -ms-flex-align: center;      align-items: center;  -ms-flex-pack: center;      justify-content: center;  overflow-y: scroll;  -ms-transform: scale(0.5);      transform: scale(0.5);  -ms-overflow-style: -ms-autohiding-scrollbar;  transition: opacity 250ms ease-out, transform 400ms ease-out; }  .mobile-nav::-webkit-scrollbar {    width: 0 !important; }  .show-menu .mobile-nav {    opacity: 1;    visibility: visible;    z-index: 1000;    -ms-transform: scale(1);        transform: scale(1); }  @media (min-width: 59.375em) {    .mobile-nav {      opacity: 0;      visibility: hidden;      z-index: -1; } }  .mobile-nav__buttons {    margin-top: 2em; }    .mobile-nav__buttons .button {      display: block;      margin-bottom: 5px;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }      .show-menu .mobile-nav__buttons .button {        animation: fade-in-up 300ms ease-out forwards 600ms; }  .mobile-nav .nav {    overflow: hidden;    text-align: center;    margin: auto;    -webkit-backface-visibility: hidden;            backface-visibility: hidden;    width: 100%;    text-align: center;    padding: 0 8%; }    .mobile-nav .nav > ul {      height: 100%;      -webkit-backface-visibility: hidden;              backface-visibility: hidden; }    .mobile-nav .nav li {      display: block; }      .cssanimations .mobile-nav .nav li {        opacity: 0;        -ms-transform: translateY(20px);            transform: translateY(20px); }      .show-menu .mobile-nav .nav li {        animation: fade-in-up 300ms ease-out forwards; }      .mobile-nav .nav li.parent > a {        display: inline-block;        vertical-align: middle; }        .mobile-nav .nav li.parent > a:after {          content: "";          background-image: url(/mulgrew-com/_img/images/svg/cross.svg);          background-position: 50% 50%;          background-size: contain;          background-repeat: no-repeat;          color: #222;          display: inline-block;          height: 0.75em;          width: 0.75em;          position: relative;          left: 1rem;          line-height: 1;          font-size: 16px;          -ms-transform: rotate(0deg);          transform: rotate(0deg);          transition: transform 300ms ease-out; }        .mobile-nav .nav li.parent > a:hover:after {          color: #f0892c; }      .mobile-nav .nav li.parent.open > a:after {        -ms-transform: rotate(225deg);            transform: rotate(225deg); }      .mobile-nav .nav li a {        padding: 0.5em 2em;        display: block;        font-size: 15px;        line-height: 1.75;        text-transform: uppercase;        color: #fff;        font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif; }        @media (min-width: 30em) {          .mobile-nav .nav li a {            line-height: 2.5; } }        .mobile-nav .nav li a:hover {          color: #f0892c;          text-decoration: none; }      .mobile-nav .nav li.open > ul {        display: block; }      .mobile-nav .nav li > ul {        padding-bottom: 1em;        display: none; }        .mobile-nav .nav li > ul li a {          font-size: 13px;          font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;          line-height: 1.5;          font-weight: 300;          color: rgba(255, 255, 255, 0.7); }          .mobile-nav .nav li > ul li a:hover {            color: #fff; }/* -----------------------------------------	11.0. Header----------------------------------------- */header {  position: relative;  width: 100%;  z-index: 1005; }  .scrolled header {    position: fixed;    animation: fade-in-down 300ms ease-out forwards;    box-shadow: 0 4px 12px 0 rgba(158, 36, 2, 0.85);    top: 0;    left: 0; }  .show-menu header {    box-shadow: none !important; }.nav-bar {  padding: 1em;  background-color: #f75424;  transition: all 300ms ease-out;  display: -ms-flexbox;  display: flex;  -ms-flex-pack: justify;      justify-content: space-between;  -ms-flex-align: center;      align-items: center; }  @media (min-width: 59.375em) {    .nav-bar {      padding: 0 1em; } }  .show-menu .nav-bar {    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);    background-color: transparent; }.main-logo {  width: 18em;  display: inline-block;  vertical-align: middle;  line-height: 0;  opacity: 0;  -ms-transform: translateX(-20px);      transform: translateX(-20px); }  @media (min-width: 30em) {    .main-logo {      width: 16em; } }  @media (min-width: 59.375em) {    .main-logo {      width: 16%; } }  .page-loaded .main-logo {    animation: fade-in-left 300ms ease-out 200ms forwards; }  .main-logo img {    line-height: 0; width: 170px; }.main-nav {  display: none;  vertical-align: middle;  transition: width 300ms ease-out; }  @media (min-width: 59.375em) {    .main-nav {      display: inline-block; } }.top-social {  display: none;  width: 8em;  vertical-align: middle;  text-align: right; }  @media (min-width: 57.5em) {    .top-social {      display: inline-block; } }  .top-social__inner {    display: inline-block; }.social__icon {  height: 2em;  width: 2em;  margin-left: 0.35em;  display: inline-block;  vertical-align: middle;  transition: transform 200ms ease-out; }  .social__icon svg {    height: 2em;    width: 2em;    fill: #fff; }  .social__icon:hover {    -ms-transform: scale(1.2);        transform: scale(1.2); }.header-buttons {  display: none; }  @media (min-width: 59.375em) {    .header-buttons {      display: block; } }  .header-buttons .button {    opacity: 0;    -ms-transform: translateX(20px);        transform: translateX(20px); }    .header-buttons .button:first-child {      margin-right: 5px; }    .page-loaded .header-buttons .button {      animation: fade-in-right 300ms ease-out 200ms forwards; }    .header-buttons .button:first-child {      animation-delay: 400ms; }    .header-buttons .button:last-child {      animation-delay: 600ms; }    .header-buttons .button a {      font-size: 14px;      padding: 0.6em 1.75em; }.nav-button {  display: inline-block;  width: calc(100% - 7em);  text-align: right;  vertical-align: middle;  padding-top: 6px; }  @media (min-width: 30em) {    .nav-button {      width: calc(100% - 10em); } }  @media (min-width: 59.375em) {    .nav-button {      display: none; } }  .scrolled .nav-button, .show-menu .nav-button {    width: calc(100% - 5em); }/* -----------------------------------------	12.0. Content----------------------------------------- *//*Gallery*/.gallery-page {  background-color: #f1f1f1; }  .gallery-page__wrap {    background-color: #f1f1f1; }  .gallery-page .image-gallery-summary {    margin: auto;    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap; }    .gallery-page .image-gallery-summary:before, .gallery-page .image-gallery-summary:after {      content: "";      display: table; }    .gallery-page .image-gallery-summary:after {      clear: both; }    .gallery-page .image-gallery-summary .image-gallery-item {      transition: box-shadow 200ms ease-out; }    .gallery-page .image-gallery-summary form {      position: relative;      width: calc(100% - 1em);      margin: 0.5em;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px);      box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }      @media (min-width: 26.25em) {        .gallery-page .image-gallery-summary form {          width: calc(50% - 1em);          margin: 0.5em; } }      @media (min-width: 48em) {        .gallery-page .image-gallery-summary form {          width: calc(49.5% - 2em);          margin: 1em; } }      @media (min-width: 61.25em) {        .gallery-page .image-gallery-summary form {          width: calc(33% - 1em);          margin: 0.5em; } }      @media (min-width: 78.125em) {        .gallery-page .image-gallery-summary form {          width: calc(33% - 2em);          margin: 1em; } }      .gallery-page .image-gallery-summary form:hover {        box-shadow: 0 0 0 3px #f75424, 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1); }        .gallery-page .image-gallery-summary form:hover .image-gallery-summary-item-title {          color: #f75424; }      .page-loaded .gallery-page .image-gallery-summary form {        animation: fade-in-up 500ms ease-out 100ms forwards; }  .gallery-page .image-gallery-item {    display: block;    position: relative; }  .gallery-page .image-gallery-summary-item-image-side, .gallery-page .image-gallery-summary-item-category, .gallery-page .image-gallery-summary-item-created, .gallery-page .image-gallery-summary-item-updated, .gallery-page .image-gallery-summary-item-description, .gallery-page .image-gallery-item-title, .gallery-page .image-gallery-item-created, .gallery-page .image-gallery-item-updated, .gallery-page .image-gallery-item-description {    display: none; }  .gallery-page .image-gallery-summary-item-image-top {    position: relative;    padding-bottom: 100%;    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat; }    .gallery-page .image-gallery-summary-item-image-top:after {      background-image: linear-gradient(to top right, rgba(0, 0, 0, 0.6), transparent);      display: block;      content: "";      position: absolute;      top: 0;      left: 0;      height: 100%;      width: 100%;      background-color: transparent;      transition: background 300ms ease-out; }  .gallery-page .image-gallery-summary-item-title {    font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;    font-weight: 500;    padding: 0.5em 1em;    text-transform: uppercase;    position: relative;    text-align: left;    font-size: 1.44em;    color: #fff;    position: absolute;    bottom: 0;    left: 0;    width: 100%;    line-height: 1.2; }    @media (min-width: 43.75em) {      .gallery-page .image-gallery-summary-item-title {        padding: 1em 1.15em; } }    @media (min-width: 75em) {      .gallery-page .image-gallery-summary-item-title {        font-size: 1.728em;        padding: 1em 1.25em; } }  .gallery-page .image-gallery-summary-item-link a {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    z-index: 3;    font-size: 0; }  .gallery-page .image-gallery-item-image {    line-height: 0; }.gallery-page__inner .image-gallery {  width: 100%; }  .gallery-page__inner .image-gallery:before, .gallery-page__inner .image-gallery:after {    content: "";    display: table; }  .gallery-page__inner .image-gallery:after {    clear: both; }  .gallery-page__inner .image-gallery .image-gallery-item {    display: block;    position: relative;    float: left;    width: 100%;    margin: 3% 0%;    background-color: #fff;    box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1);    transition: box-shadow 200ms ease-out; }    @media (min-width: 23.75em) {      .gallery-page__inner .image-gallery .image-gallery-item {        margin: 6px;        width: calc(50% - 12px); } }    @media (min-width: 48em) {      .gallery-page__inner .image-gallery .image-gallery-item {        width: calc(33% - 12px); } }    @media (min-width: 75em) {      .gallery-page__inner .image-gallery .image-gallery-item {        width: calc(25% - 12px); } }    .gallery-page__inner .image-gallery .image-gallery-item:hover {      box-shadow: 0 0 0 5px #f75424; }.gallery-page__inner .image-gallery-title {  font-size: 1.728em;  margin-bottom: 1rem;  color: #050505;  font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;  margin-bottom: 1em;  font-weight: 500;  line-height: 1.1;  letter-spacing: 1px;  text-transform: uppercase; }  @media (min-width: 57.5em) {    .gallery-page__inner .image-gallery-title {      font-size: 2.0736em; } }.gallery-page__inner .button {  margin-top: 2em; }/* Magnific Popup CSS */.mfp-bg {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1042;  overflow: hidden;  position: fixed;  background: #0b0b0b;  opacity: 0.8; }.mfp-wrap {  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1043;  position: fixed;  outline: none !important;  -webkit-backface-visibility: hidden; }.mfp-container {  text-align: center;  position: absolute;  width: 100%;  height: 100%;  left: 0;  top: 0;  padding: 0 8px;  box-sizing: border-box; }.mfp-container:before {  content: '';  display: inline-block;  height: 100%;  vertical-align: middle; }.mfp-align-top .mfp-container:before {  display: none; }.mfp-content {  position: relative;  display: inline-block;  vertical-align: middle;  margin: 0 auto;  text-align: left;  z-index: 1045; }.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content {  width: 100%;  cursor: auto; }.mfp-ajax-cur {  cursor: progress; }.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {  cursor: zoom-out; }.mfp-zoom {  cursor: pointer;  cursor: zoom-in; }.mfp-auto-cursor .mfp-content {  cursor: auto; }.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter {  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;      user-select: none; }.mfp-loading.mfp-figure {  display: none; }.mfp-hide {  display: none !important; }.mfp-preloader {  color: #CCC;  position: absolute;  top: 50%;  width: auto;  text-align: center;  margin-top: -0.8em;  left: 8px;  right: 8px;  z-index: 1044; }.mfp-preloader a {  color: #CCC; }.mfp-preloader a:hover {  color: #FFF; }.mfp-s-ready .mfp-preloader {  display: none; }.mfp-s-error .mfp-content {  display: none; }button.mfp-close,button.mfp-arrow {  overflow: visible;  cursor: pointer;  background: transparent;  border: 0;  -webkit-appearance: none;  display: block;  outline: none;  padding: 0;  z-index: 1046;  box-shadow: none;  -ms-touch-action: manipulation;      touch-action: manipulation; }button::-moz-focus-inner {  padding: 0;  border: 0; }.mfp-close {  width: 44px;  height: 44px;  line-height: 44px;  position: absolute;  right: 0;  top: 0;  text-decoration: none;  text-align: center;  opacity: 0.65;  padding: 0 0 18px 10px;  color: #FFF;  font-style: normal;  font-size: 28px;  font-family: Arial, Baskerville, monospace; }.mfp-close:hover,.mfp-close:focus {  opacity: 1; }.mfp-close:active {  top: 1px; }.mfp-close-btn-in .mfp-close {  color: #333; }.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close {  color: #FFF;  right: -6px;  text-align: right;  padding-right: 6px;  width: 100%; }.mfp-counter {  position: absolute;  top: 0;  right: 0;  color: #CCC;  font-size: 12px;  line-height: 18px;  white-space: nowrap; }.mfp-arrow {  position: absolute;  opacity: 0.65;  margin: 0;  top: 50%;  margin-top: -55px;  padding: 0;  width: 90px;  height: 110px;  -webkit-tap-highlight-color: transparent; }.mfp-arrow:active {  margin-top: -54px; }.mfp-arrow:hover,.mfp-arrow:focus {  opacity: 1; }.mfp-arrow:before,.mfp-arrow:after {  content: '';  display: block;  width: 0;  height: 0;  position: absolute;  left: 0;  top: 0;  margin-top: 35px;  margin-left: 35px;  border: medium inset transparent; }.mfp-arrow:after {  border-top-width: 13px;  border-bottom-width: 13px;  top: 8px; }.mfp-arrow:before {  border-top-width: 21px;  border-bottom-width: 21px;  opacity: 0.7; }.mfp-arrow-left {  left: 0; }.mfp-arrow-left:after {  border-right: 17px solid #FFF;  margin-left: 31px; }.mfp-arrow-left:before {  margin-left: 25px;  border-right: 27px solid #3F3F3F; }.mfp-arrow-right {  right: 0; }.mfp-arrow-right:after {  border-left: 17px solid #FFF;  margin-left: 39px; }.mfp-arrow-right:before {  border-left: 27px solid #3F3F3F; }.mfp-iframe-holder {  padding-top: 40px;  padding-bottom: 40px; }.mfp-iframe-holder .mfp-content {  line-height: 0;  width: 100%;  max-width: 900px; }.mfp-iframe-holder .mfp-close {  top: -40px; }.mfp-iframe-scaler {  width: 100%;  height: 0;  overflow: hidden;  padding-top: 56.25%; }.mfp-iframe-scaler iframe {  position: absolute;  display: block;  top: 0;  left: 0;  width: 100%;  height: 100%;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #000; }/* Main image in popup */img.mfp-img {  width: auto;  max-width: 100%;  height: auto;  display: block;  line-height: 0;  box-sizing: border-box;  padding: 40px 0 40px;  margin: 0 auto; }/* The shadow behind the image */.mfp-figure {  line-height: 0; }.mfp-figure:after {  content: '';  position: absolute;  left: 0;  top: 40px;  bottom: 40px;  display: block;  right: 0;  width: auto;  height: auto;  z-index: -1;  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);  background: #444; }.mfp-figure small {  color: #BDBDBD;  display: block;  font-size: 12px;  line-height: 14px; }.mfp-figure figure {  margin: 0; }.mfp-bottom-bar {  margin-top: -36px;  position: absolute;  top: 100%;  left: 0;  width: 100%;  cursor: auto; }.mfp-title {  text-align: left;  line-height: 18px;  color: #F3F3F3;  word-wrap: break-word;  padding-right: 36px; }.mfp-image-holder .mfp-content {  max-width: 100%; }.mfp-gallery .mfp-image-holder .mfp-figure {  cursor: pointer; }@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {  /**       * Remove all paddings around the image on small screen       */  .mfp-img-mobile .mfp-image-holder {    padding-left: 0;    padding-right: 0; }  .mfp-img-mobile img.mfp-img {    padding: 0; }  .mfp-img-mobile .mfp-figure:after {    top: 0;    bottom: 0; }  .mfp-img-mobile .mfp-figure small {    display: inline;    margin-left: 5px; }  .mfp-img-mobile .mfp-bottom-bar {    background: rgba(0, 0, 0, 0.6);    bottom: 0;    margin: 0;    top: auto;    padding: 3px 5px;    position: fixed;    box-sizing: border-box; }  .mfp-img-mobile .mfp-bottom-bar:empty {    padding: 0; }  .mfp-img-mobile .mfp-counter {    right: 5px;    top: 3px; }  .mfp-img-mobile .mfp-close {    top: 0;    right: 0;    width: 35px;    height: 35px;    line-height: 35px;    background: rgba(0, 0, 0, 0.6);    position: fixed;    text-align: center;    padding: 0; } }@media all and (max-width: 900px) {  .mfp-arrow {    -ms-transform: scale(0.75);        transform: scale(0.75); }  .mfp-arrow-left {    -ms-transform-origin: 0;        transform-origin: 0; }  .mfp-arrow-right {    -ms-transform-origin: 100%;        transform-origin: 100%; }  .mfp-container {    padding-left: 6px;    padding-right: 6px; } }/* Slider */.slick-slider {  position: relative;  display: block;  box-sizing: border-box;  -webkit-touch-callout: none;  -webkit-user-select: none;  -moz-user-select: none;  -ms-user-select: none;  user-select: none;  -ms-touch-action: pan-y;  touch-action: pan-y;  -webkit-tap-highlight-color: transparent; }.slick-list {  position: relative;  overflow: hidden;  display: block;  margin: 0;  padding: 0; }  .slick-list:focus {    outline: none; }  .slick-list.dragging {    cursor: pointer;    cursor: hand; }.slick-slider .slick-track,.slick-slider .slick-list {  -ms-transform: translate3d(0, 0, 0);  transform: translate3d(0, 0, 0); }.slick-track {  position: relative;  left: 0;  top: 0;  display: block;  margin-left: auto;  margin-right: auto; }  .slick-track:before, .slick-track:after {    content: "";    display: table; }  .slick-track:after {    clear: both; }  .slick-loading .slick-track {    visibility: hidden; }.slick-slide {  float: left;  height: 100%;  min-height: 1px;  display: none; }  [dir="rtl"] .slick-slide {    float: right; }  .slick-slide img {    display: block; }  .slick-slide.slick-loading img {    display: none; }  .slick-slide.dragging img {    pointer-events: none; }  .slick-loading .slick-slide {    visibility: hidden; }  .slick-vertical .slick-slide {    display: block;    height: auto;    border: 1px solid transparent; }.slick-arrow.slick-hidden {  display: none; }/*! * Hamburgers * @description Tasty CSS-animated hamburgers * @author Jonathan Suh @jonsuh * @site https://jonsuh.com/hamburgers * @link https://github.com/jonsuh/hamburgers */.hamburger {  display: inline-block;  cursor: pointer;  transition-property: opacity, -webkit-filter;  transition-property: opacity, filter;  transition-property: opacity, filter, -webkit-filter;  transition-duration: 0.15s;  transition-timing-function: linear;  font: inherit;  color: inherit;  text-transform: none;  background-color: transparent;  border: 0;  margin: 0;  outline: none;  overflow: visible; }.hamburger:hover {  opacity: 0.7; }.hamburger-box {  width: 40px;  height: 24px;  display: inline-block;  position: relative; }.hamburger-inner {  display: block;  top: 50%;  margin-top: -2px; }.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {  width: 40px;  height: 4px;  background-color: #000;  box-shadow: 0 0 0 1.5px #f9b874;  border-radius: 4px;  position: absolute;  transition-property: all;  transition-duration: 0.2s;  transition-timing-function: ease; }  .show-menu .hamburger-inner, .show-menu .hamburger-inner::before, .show-menu .hamburger-inner::after {    background-color: #fff;    box-shadow: none; }.hamburger-inner::before, .hamburger-inner::after {  content: "";  display: block; }.hamburger-inner::before {  top: -10px; }.hamburger-inner::after {  bottom: -10px; }/* * 3DX *//* * Elastic */.hamburger--elastic .hamburger-inner {  top: 2px;  transition-duration: 0.4s;  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }.hamburger--elastic .hamburger-inner::before {  top: 10px;  transition: opacity 0.15s 0.4s ease; }.hamburger--elastic .hamburger-inner::after {  top: 20px;  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }.hamburger--elastic.is-active .hamburger-inner {  transform: translate3d(0, 10px, 0) rotate(135deg);  transition-delay: 0.1s; }.hamburger--elastic.is-active .hamburger-inner::before {  transition-delay: 0s;  opacity: 0; }.hamburger--elastic.is-active .hamburger-inner::after {  transform: translate3d(0, -20px, 0) rotate(-270deg);  transition-delay: 0.1s; }/* ---------------------------------------------- *  Partial: buttons  This is a work-in-progress. Please deploy your own method or use my exaple below.   Namespace structure  [interaction][-Button][-Variant]\* ---------------------------------------------- */.button, .form_submit {  display: inline-block;  margin-top: 0.25em;  position: relative; }  .button a, .button input[type="submit"], .form_submit a, .form_submit input[type="submit"] {    position: relative;    padding: 0.9em 1.75em;    border-radius: 2em;    text-transform: uppercase;    font-size: 1em;    color: #050505;    background-color: #FFFFFF;    transition: all 300ms ease-out;    display: inline-block;    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.15);    text-align: center;    white-space: nowrap;    font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif; }    .button a:hover, .button input[type="submit"]:hover, .form_submit a:hover, .form_submit input[type="submit"]:hover {      background-color: #050505;      color: #FFFFFF;      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 5px 12px rgba(0, 0, 0, 0.2); }  .button:hover, .form_submit:hover {    top: 1px; }@keyframes button-arrow {  0% {    transform: translateX(0); }  10% {    transform: translateX(-200%); }  100% {    transform: translateX(0); } }.arrow a {  text-align: left;  padding-right: 6em;  position: relative; }  .arrow a:after {    content: "";    position: absolute;    right: 1.5em;    top: 50%;    margin-top: -0.3em;    width: 1.2em;    height: 0.6em;    background-size: contain;    background-repeat: no-repeat;    background-image: url("/mulgrew-com/_img/images/right-arrow.svg"); }.arrow:hover a:after {  animation: button-arrow 800ms cubic-bezier(0.24, 1.63, 0.86, 1.02) forwards; }.border-button a {  border: 2px solid currentColor;  background-color: transparent; }.border-button.base a {  border-color: #f75424;  color: #FFFFFF; }  .border-button.base a:hover {    background-color: #f75424; }.border-button.comp a {  border-color: #f9b874;  color: #FFFFFF; }  .border-button.comp a:hover {    background-color: #f9b874;    color: #FFFFFF;    text-shadow: none; }.border-button.white a {  border-color: #FFFFFF;  color: #FFFFFF; }  .border-button.white a:hover {    background-color: #FFFFFF;    color: #050505;    text-shadow: none; }.solid-button a {  border: none; }.solid-button.base a {  background-color: #f75424;  color: #050505; }  .solid-button.base a:hover {    background-color: #d03003; }.solid-button.comp a {  background-color: #f9b874;  color: #FFFFFF; }  .solid-button.comp a:hover {    background-color: #f79f43;    color: #FFFFFF;    text-shadow: none; }.solid-button.white a {  background-color: #FFFFFF;  color: #f75424;  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1), 0 5px 8px rgba(0, 0, 0, 0.1); }  .solid-button.white a:hover {    background-color: #d03003;    color: #FFFFFF;    text-shadow: none;    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.15), 0 6px 12px rgba(0, 0, 0, 0.15); }.solid-button.black a {  background-color: #050505;  color: #FFFFFF;  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.25); }  .solid-button.black a:hover {    background-color: #d03003;    color: #FFFFFF;    text-shadow: none;    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35), 0 5px 12px rgba(0, 0, 0, 0.35); }.solid-button.grad::before {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 0;  transition: opacity 400ms ease-out;  background-color: #f0892c;  background-image: linear-gradient(to right, #f75424, #f0892c); }.solid-button.grad::after {  content: "";  display: block;  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  z-index: 1;  opacity: 1;  transition: opacity 400ms ease-out;  background-color: #f75424;  background-image: linear-gradient(to right, #f0892c, #f75424); }.solid-button.grad a {  background-color: transparent;  color: #fff;  position: relative;  z-index: 3; }  .solid-button.grad a:hover {    color: #fff;    text-shadow: none; }.solid-button.grad:hover::before {  opacity: 1; }.solid-button.grad:hover::after {  opacity: 0; }.solid-button.grad.grad-dark::before {  background-color: #f75424;  background-image: linear-gradient(to right, #005865, #00808c); }.solid-button.grad.grad-dark::after {  background-color: #d03003;  background-image: linear-gradient(to right, #00808c, #005865); }input {  line-height: normal; }input, textarea, keygen, select, button {  text-rendering: auto;  color: initial;  letter-spacing: normal;  word-spacing: normal;  text-transform: none;  text-indent: 0px;  text-shadow: none;  display: inline-block;  text-align: start;  margin: 0em 0em 0em 0em;  font: 13.3333px Arial; }[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {  display: block;  box-sizing: border-box;  width: 100%;  padding: 0.75rem;  border: 1px solid #cacaca;  margin: 0 0 1rem;  font-family: inherit;  font-size: 1rem;  color: #0a0a0a;  background-color: #fefefe;  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);  border-radius: 0;  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;  -webkit-appearance: none;  -moz-appearance: none; }  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {    outline: none; }  [type='text']:focus, [type='text']:hover, [type='password']:focus, [type='password']:hover, [type='date']:focus, [type='date']:hover, [type='datetime']:focus, [type='datetime']:hover, [type='datetime-local']:focus, [type='datetime-local']:hover, [type='month']:focus, [type='month']:hover, [type='week']:focus, [type='week']:hover, [type='email']:focus, [type='email']:hover, [type='number']:focus, [type='number']:hover, [type='search']:focus, [type='search']:hover, [type='tel']:focus, [type='tel']:hover, [type='time']:focus, [type='time']:hover, [type='url']:focus, [type='url']:hover, [type='color']:focus, [type='color']:hover, textarea:focus, textarea:hover {    border-color: #f0892c; }  @media (min-width: 30em) {    [type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {      padding: 1rem; } }textarea {  border-radius: 0;  max-width: 100%;  height: auto;  min-height: 8em;  max-height: 8em;  border-radius: 0;  overflow: auto; }label {  display: block;  margin: 0;  font-size: 0.875rem;  font-weight: normal;  line-height: 1.8;  color: #0a0a0a; }input[type="submit"] {  padding: 0.8em 3em;  text-transform: uppercase;  font-size: 18px;  color: #FFFFFF;  border: none;  background-color: #f0892c;  transition: all 300ms ease-out;  display: inline-block;  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);  text-align: center;  min-width: 150px;  border-radius: 0;  white-space: nowrap;  font-family: "GlacialIndifferenceRegular", Arial, "Helvetica Neue", Helvetica, sans-serif;  font-weight: 600;  cursor: pointer;  -webkit-appearance: none;  -moz-appearance: none; }  input[type="submit"]:hover {    background-color: #d03003;    color: #FFFFFF;    text-decoration: none; }input[type="file"] {  width: 100%;  padding: 1rem;  border: 1px solid #cacaca;  margin-bottom: 2em;  border-radius: 0; }.inputset {  position: relative; }.form_error_wrap {  display: none; }.form_error_specific {  color: red;  position: absolute;  top: 3px;  right: 2px; }.error {  background-color: #fcbca6;  padding: 1em;  border: 1px solid firebrick;  font-size: 0.875rem;  color: firebrick; }  @media (min-width: 40em) {    .error {      padding: 2rem 3rem; } }.errorTitle {  font-weight: 700;  margin-bottom: 5px; }.errorItem {  padding: 2px 0; }.alert {  padding: 1em;  color: #d68f15;  background-color: #fbf5db;  border: 1px solid #d68f15;  font-size: 0.875rem;  font-weight: 700; }  @media (min-width: 40em) {    .alert {      padding: 2rem 3rem; } }.success {  padding: 1em;  color: green;  background-color: MintCream;  border: 1px solid green;  font-size: 0.875rem;  font-weight: 700;  margin-bottom: 1em; }  @media (min-width: 40em) {    .success {      padding: 2rem 3rem; } }/*Blog*/.story-page .inner-hero.small {  background-color: #f43e09;  background-color: #f1f1f1; }  .story-page .inner-hero.small .hero__content h1 {    padding: 4em 0 1em;    font-size: 1.2em;    color: #050505;    text-shadow: none; }.blog-page .latest-tweets {  padding: 0 0 4em; }.blog-page__header {  background-color: #f75424;  padding: 0; }  .blog-page__header header {    border-bottom: 1px solid rgba(255, 255, 255, 0.2);    -ms-transform: translateY(-20px);        transform: translateY(-20px);    background-color: #f75424; }    .page-loaded .blog-page__header header {      animation: fade-in-down 500ms ease-out 300ms forwards; }.blog-page__title {  color: #fff;  text-align: center; }  .blog-page__title h1 {    -ms-transform: translateX(-20px);        transform: translateX(-20px);    opacity: 0;    margin: 0.75em 0; }    .page-loaded .blog-page__title h1 {      animation: fade-in-left 500ms ease-out 500ms forwards; }  .story-page .blog-page__title {    background-color: #fff; }    .story-page .blog-page__title h1 {      margin-top: 3em;      margin-bottom: 0;      color: #999;      font-size: 1.2em;      letter-spacing: 0; }.blog-page__articles {  padding: 3em 0;  background-color: #f1f1f1;  background-image: linear-gradient(to bottom right, #f1f1f1, #e1e1e1); }  @media (min-width: 37.5em) {    .blog-page__articles {      padding: 4em 0; } }  .story-page .blog-page__articles {    padding-top: 0;    background-image: none;    background-color: #f1f1f1; }.blog-page {  padding: 0; }  .blog-page #listNews {    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap;    -ms-flex-pack: start;        justify-content: flex-start;    width: 100%; }  .blog-page .newsItem {    cursor: pointer; }  .blog-page .listNewsItem {    width: 97%;    -ms-flex-preferred-size: 100%;        flex-basis: 100%;    margin: 4% 1.5%;    text-align: left;    -ms-transform: scale(1);        transform: scale(1);    transition: transform 250ms ease-out;    position: relative;    padding-bottom: 0.8em;    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column; }    .no-flexbox .blog-page .listNewsItem {      display: inline-block;      vertical-align: top; }    @media (min-width: 30em) {      .blog-page .listNewsItem {        width: calc(47% - 5px);        -ms-flex-preferred-size: 47%;            flex-basis: 47%; } }    @media (min-width: 37.5em) {      .blog-page .listNewsItem {        width: calc(31.333% - 5px);        -ms-flex-preferred-size: 31.333%;            flex-basis: 31.333%;        margin: 1.5% 1%; } }    @media (min-width: 68.75em) {      .blog-page .listNewsItem {        margin: 1.5% 0.5%;        width: calc(24% - 5px);        -ms-flex-preferred-size: 24%;            flex-basis: 24%; } }    .blog-page .listNewsItem:hover .newsTitle {      text-decoration: underline; }    .blog-page .listNewsItem .newsImageTop {      line-height: 0;      display: inline-block;      width: 100%;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px);      background-size: cover;      background-position: 50% 50%;      background-repeat: no-repeat;      transition: box-shadow 250ms ease-out; }      .blog-page .listNewsItem .newsImageTop:after {        content: "";        display: block;        padding: 33%; }      .blog-page .listNewsItem .newsImageTop a {        display: block;        line-height: 0; }    .blog-page .listNewsItem .newsTitle {      font-size: 1.2em;      color: #050505;      margin-top: 0.5em;      margin-bottom: 2em;      text-transform: none;      font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;      font-weight: 600;      padding-right: 5px;      line-height: 1.25;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px);      text-shadow: none; }      @media (min-width: 64.375em) {        .blog-page .listNewsItem .newsTitle {          font-size: 1.44em; } }      .blog-page .listNewsItem .newsTitle a {        color: #050505; }    .blog-page .listNewsItem .newsSummaryLink, .blog-page .listNewsItem .newsImageBottom, .blog-page .listNewsItem .newsSummary, .blog-page .listNewsItem .newsImageBottom, .blog-page .listNewsItem .newsDateFull, .blog-page .listNewsItem .newsCategory, .blog-page .listNewsItem .newsAuthor {      display: none; }    .blog-page .listNewsItem .newsDate {      font-size: 0.83333em;      font-family: "GlacialIndifferenceRegular", Arial, "Helvetica Neue", Helvetica, sans-serif;      font-weight: 600;      color: #f75424;      margin-bottom: 1em;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }    .blog-page .listNewsItem .newsSummaryLink {      margin-top: 0.5em; }      .blog-page .listNewsItem .newsSummaryLink a {        font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;        padding: 0.5em 0em 0.5em 0;        position: relative;        color: #f75424; }        .blog-page .listNewsItem .newsSummaryLink a:after {          content: "";          display: block;          width: 100%;          height: 2px;          background-color: #f75424;          position: absolute;          bottom: 0;          left: 0;          transition: width 350ms ease-out, color 200ms linear; }        .blog-page .listNewsItem .newsSummaryLink a:hover {          color: #f0892c; }          .blog-page .listNewsItem .newsSummaryLink a:hover:after {            width: 125%;            background-color: #f0892c; }  .blog-page .inviewport .newsDate, .previewFrame .blog-page .newsDate {    animation: fade-in-up 500ms ease-out forwards 850ms; }  .blog-page .inviewport .newsTitle, .previewFrame .blog-page .newsTitle {    animation: fade-in-up 500ms ease-out forwards 700ms; }  .blog-page .inviewport .newsImageTop, .previewFrame .blog-page .newsImageTop {    animation: fade-in-up 500ms ease-out forwards 550ms; }  .blog-page .back {    width: 90%;    margin: auto;    max-width: 48em;    margin-top: 2em;    text-decoration: underline;    font-weight: 500;    font-size: 18px; }    .blog-page .back a {      color: #f75424; }#displayBlogStory {  width: 90%;  margin: auto;  max-width: 48em; }  @media (min-width: 75em) {    #displayBlogStory {      font-size: 18px; } }  #displayBlogStory h1 {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    color: #050505;    font-size: 2.0736em;    line-height: 1.2;    margin-bottom: 1rem;    text-align: center; }    @media (min-width: 30em) {      #displayBlogStory h1 {        margin-bottom: 1.5rem; } }    @media (min-width: 30em) {      #displayBlogStory h1 {        font-size: 2.98598em; } }    @media (min-width: 57.5em) {      #displayBlogStory h1 {        font-size: 3.58318em; } }    @media (min-width: 78.75em) {      #displayBlogStory h1 {        margin-left: -1rem;        margin-right: -1rem;        margin-bottom: 1.5rem; } }    .page-loaded #displayBlogStory h1 {      animation: fade-in-up 400ms ease-out forwards 100ms; }  #displayBlogStory p {    color: #050505;    -ms-transform: translateY(20px);        transform: translateY(20px);    opacity: 0; }  #displayBlogStory ul {    list-style-type: disc;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    #displayBlogStory ul li {      display: list-item;      list-style-type: disc; }  #displayBlogStory ol {    list-style-type: decimal;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    #displayBlogStory ol li {      display: list-item;      list-style-type: decimal; }  #displayBlogStory .newsDateFull, #displayBlogStory .newsCategory, #displayBlogStory .newsAuthor {    display: none; }  #displayBlogStory .newsDate {    animation-delay: 600ms;    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    font-family: "GlacialIndifferenceRegular", Arial, "Helvetica Neue", Helvetica, sans-serif;    font-weight: 600;    color: #f75424;    margin-bottom: 1.5rem;    text-align: center; }    @media (min-width: 30em) {      #displayBlogStory .newsDate {        margin-bottom: 2rem; } }    .page-loaded #displayBlogStory .newsDate {      animation: fade-in-up 400ms ease-out forwards 800ms; }  .inviewport #displayBlogStory p, .previewFrame #displayBlogStory p {    animation: fade-in-up 500ms ease-out forwards 900ms; }.blogSummaryImageStory {  margin: 0rem -1em 1.5rem;  position: relative;  line-height: 0;  -ms-transform: scaleY(20px);      transform: scaleY(20px);  opacity: 0;  -ms-transform-origin: left;      transform-origin: left; }  @media (min-width: 30em) {    .blogSummaryImageStory {      margin: 0rem -1.5em 2rem; } }  @media (min-width: 48em) {    .blogSummaryImageStory {      margin: 0rem -2em 2rem; } }  @media (min-width: 64.375em) {    .blogSummaryImageStory {      margin: 0rem -3em 2rem; } }  @media (min-width: 78.75em) {    .blogSummaryImageStory {      margin: 0rem -4em 3rem; } }  .blogSummaryImageStory img {    position: relative;    z-index: 5;    width: 100%;    line-height: 0;    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);    box-shadow: 0 8px 25px 0 rgba(5, 5, 5, 0.1), 0 2px 6px rgba(5, 5, 5, 0.1); }  .page-loaded .blogSummaryImageStory {    animation: fade-in-up 600ms ease-out 600ms forwards; }.blogSocialLinks {  margin-top: 3em; }.inner-hero {  padding: 0;  min-height: 70vh;  display: -ms-flexbox;  display: flex;  -ms-flex-align: end;      align-items: flex-end;  -ms-flex-pack: center;      justify-content: center;  background-size: cover;  background-position: center;  background-repeat: no-repeat; }  @media (min-width: 57.5em) {    .inner-hero {      min-height: 80vh; } }  .d16521 .inner-hero {    background-position: right center; }  .previewFrame .inner-hero {    min-height: 45em; }  .inner-hero.small {    padding: 0;    background-color: #fff;    min-height: 0; }    .inner-hero.small .hero__content {      padding: 0 8%;      text-align: center; }      .inner-hero.small .hero__content h1 {        margin: 0;        line-height: 1;        padding: 0.75em 0;        color: #f75424; }  .inner-hero.full-hero {    padding: 0;    background-color: #e1e1e1;    background-image: linear-gradient(to bottom right, #f1f1f1, #e1e1e1);    min-height: 70vh;    display: -ms-flexbox;    display: flex;    -ms-flex-align: center;        align-items: center;    -ms-flex-pack: center;        justify-content: center; }    .inner-hero.full-hero .hero__content {      padding: 0 8%;      text-align: center; }      .inner-hero.full-hero .hero__content h1 {        margin: 0;        line-height: 1;        color: #050505; }      .inner-hero.full-hero .hero__content h5 {        font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;        font-weight: 600;        opacity: 0;        -ms-transform: translateY(20px);            transform: translateY(20px); }        .page-loaded .inner-hero.full-hero .hero__content h5 {          animation: fade-in-up 400ms ease-out 400ms forwards; }      .inner-hero.full-hero .hero__content .button {        opacity: 0;        -ms-transform: translateY(20px);            transform: translateY(20px); }        .page-loaded .inner-hero.full-hero .hero__content .button {          animation: fade-in-up 400ms ease-out 700ms forwards; }  .inner-hero .hero__content {    padding: 7em 8% 7em; }    .inner-hero .hero__content h1 {      font-size: calc(1.5em + 3vw);      margin-bottom: 0;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }      .page-loaded .inner-hero .hero__content h1 {        animation: fade-in-up 400ms ease-out 100ms forwards; }.d16519 h1 {  font-size: 2.48832em; }  @media (min-width: 40em) {    .d16519 h1 {      font-size: 2.98598em; } }  @media (min-width: 75em) {    .d16519 h1 {      font-size: 3.58318em; } }.main-content {  max-width: 1000px;  margin: auto; }  .main-content ul {    list-style-type: disc;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-content ul li {      display: list-item; }  .main-content ul {    list-style-type: decimal;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-content ul li {      display: list-item; }.main-section {  background-color: #f1f1f1;  background-repeat: no-repeat;  background-position: left top; }  #s4242260 .main-section {    background-image: url(/mulgrew-com/_img/images/history-bg.png); }  .main-section#storage {    background-image: url(/mulgrew-com/_img/images/storage-bg.png);    background-position: right top; }  .main-section.job-list {    background-color: #fff; }  .main-section.documents a {    text-decoration: underline;    color: #f75424; }    .main-section.documents a:hover {      color: #f0892c; }  .main-section ul {    list-style-type: disc;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-section ul li {      display: list-item;      list-style-type: disc; }  .main-section ol {    list-style-type: decimal;    margin-left: 1.25rem;    line-height: 1.6;    margin-bottom: 1rem; }    .main-section ol li {      display: list-item;      list-style-type: decimal; }  .main-section .intro {    max-width: 74em;    margin: 3% auto 4em;    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px); }    .page-loaded .main-section .intro {      animation: fade-in-up 400ms ease-out 600ms forwards; }.split-section {  padding: 0.5em 0; }  @media (min-width: 37.5em) {    .split-section {      padding: 1em 0; } }  @media (min-width: 51.25em) {    .split-section {      padding: 3em 0; } }  @media (min-width: 87.5em) {    .split-section {      padding: 4em 0; } }  .split-section .container {    max-width: 1555px; }  @media (min-width: 51.25em) {    .split-section__image, .split-section__content {      float: left; } }  .split-section__image {    text-align: center;    -ms-transform: translateX(-20px);        transform: translateX(-20px);    opacity: 0; }    @media (min-width: 51.25em) {      .split-section__image {        width: 52%;        padding-right: 2.5%; } }    .split-section__image img {      box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1), 0 3px 12px 0 rgba(0, 0, 0, 0.1); }  .split-section__content {    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    width: 90%;    padding: 2em 0em 3em;    max-width: 40em;    margin: 0 auto;    line-height: 1.8; }    @media (min-width: 37.5em) {      .split-section__content {        padding: 2em 0em 2.5em; } }    @media (min-width: 51.25em) {      .split-section__content {        width: 48%;        margin: 0;        padding: 0 2.5%; } }    @media (min-width: 78.75em) {      .split-section__content {        padding: 0 3%; } }    .split-section__content h2 + h4 {      margin-top: 0.5em; }    .split-section__content p {      font-size: 1.2em; }      @media (min-width: 51.25em) {        .split-section__content p {          font-size: 1em; } }      @media (min-width: 75em) {        .split-section__content p {          font-size: 1.2em; } }  .split-section .image-border img {    border: solid 3px #f9b874; }  .split-section.inviewport .split-section__content, .previewFrame .split-section .split-section__content {    animation: fade-in-up 400ms ease-out forwards; }  .split-section.inviewport .split-section__image, .previewFrame .split-section .split-section__image {    animation: fade-in-left 400ms ease-out forwards; }  .split-section.reverse .split-section__image {    -ms-transform: translateX(20px);        transform: translateX(20px); }    @media (min-width: 51.25em) {      .split-section.reverse .split-section__image {        float: right;        padding-right: 0;        padding-left: 5%; } }  .split-section.reverse.inviewport .split-section__image, .previewFrame .split-section.reverse .split-section__image {    animation: fade-in-right 400ms ease-out forwards; }  @media (min-width: 51.25em) {    .flexbox .split-section {      display: -ms-flexbox;      display: flex;      -ms-flex-align: center;          align-items: center; }      .flexbox .split-section.reverse {        -ms-flex-direction: row-reverse;            flex-direction: row-reverse; } }.map-section {  min-height: 60vh;  position: relative; }  .previewFrame .map-section {    min-height: 600px; }  .map-section .map {    position: absolute;    width: 100%;    height: 100%;    top: 0;    left: 0; }.depots {  background-color: #f1f1f1; }  .depots-inner {    padding: 0 8%;    text-align: center; }    @media (min-width: 30em) {      .depots-inner {        text-align: left; } }  .depots-list {    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap; }    .depots-list__item {      width: 100%;      padding: 1.5rem;      border-bottom: 1px solid rgba(5, 5, 5, 0.5);      display: inline-block; }      @media (min-width: 30em) {        .depots-list__item {          width: 50%;          border: none; } }      @media (min-width: 78.125em) {        .depots-list__item {          width: 20%; } }      .depots-list__item-location {        margin-bottom: 0.5rem;        text-transform: uppercase;        font-size: 1.728em;        font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;        font-weight: 600; }      .depots-list__item-address {        margin-bottom: 0.75rem; }        .depots-list__item-address p {          line-height: 1.5; }      .depots-list__item-phone {        margin-bottom: 0.5rem; }      .depots-list__item-phone, .depots-list__item-email {        font-weight: 600; }      .depots-list__item-email a {        color: #050505;        text-decoration: underline; }        .depots-list__item-email a:hover {          color: #f0892c; }.contact-form {  background-color: #e1e1e1; }  .contact-form h1 {    margin-bottom: 0;    color: #f75424; }  .contact-form__inner {    padding: 0 6%;    text-align: center;    max-width: 54em;    margin: auto; }  .contact-form .defaultForm {    text-align: left;    margin-top: 2.5em; }  .contact-form label {    font-size: 0.83333em;    font-weight: 600;    color: rgba(5, 5, 5, 0.8); }  .contact-form textarea, .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {    background-color: transparent;    box-shadow: none;    color: #fff;    border: 2px solid transparent;    border-left-color: rgba(5, 5, 5, 0.7);    border-bottom-color: rgba(5, 5, 5, 0.7);    transition: border 300ms ease-out; }    .contact-form textarea:hover, .contact-form textarea:focus, .contact-form input[type="text"]:hover, .contact-form input[type="text"]:focus, .contact-form input[type="email"]:hover, .contact-form input[type="email"]:focus, .contact-form input[type="tel"]:hover, .contact-form input[type="tel"]:focus {      border: 2px solid #fff; }  .contact-form .form_submit {    margin-top: 2rem;    display: block;    text-align: center; }  .contact-form input[type="submit"] {    background-color: #050505;    min-width: 300px;    color: #FFFFFF;    font-size: 1.2em;    padding: 1.25em 1.75em; }    .contact-form input[type="submit"]:hover {      background-color: #f75424;      color: #050505; }.factory-banner {  padding: 0;  background-color: #f1f1f1; }  .factory-banner .slick-track {    display: -ms-flexbox;    display: flex; }  .factory-banner .slick-list {    width: 90%;    overflow: visible; }  .factory-banner .slick-slide {    opacity: 0.5; }    .factory-banner .slick-slide.slick-active {      opacity: 1; }.factory-slider {  opacity: 0;  -ms-transform: translateY(20px);      transform: translateY(20px); }  .inviewport .factory-slider, .previewFrame .factory-slider {    animation: fade-in-up 500ms ease-out forwards 200ms; }.banner-image {  width: 100%;  min-height: 50vh;  padding: 1em;  display: -ms-flexbox;  display: flex;  height: auto;  background-size: cover;  background-position: center center;  background-repeat: no-repeat; }  @media (min-width: 37.5em) {    .banner-image {      padding: 2em 0;      min-height: 60vh; } }  @media (min-width: 78.125em) {    .banner-image {      padding: 3em 0;      min-height: 80vh; } }  .banner-image .container {    display: -ms-flexbox;    display: flex;    -ms-flex-align: end;        align-items: flex-end;    margin: 0;    padding-left: 0; }    @media (min-width: 37.5em) {      .banner-image .container {        padding-left: 2em; } }    @media (min-width: 78.125em) {      .banner-image .container {        padding-left: 3em; } }  .banner-image.history-banner {    background-position: center top; }  .previewFrame .banner-image {    min-height: 30em; }.banner-box {  padding: 1em 1.5em;  margin-top: 10em;  width: 95%;  max-width: 41em;  font-size: 12px;  background-color: #f1f1f1;  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.5);  transition: background-color 600ms ease-out, padding 600ms ease-out; }  @media (min-width: 30em) {    .banner-box {      width: 85%; } }  @media (min-width: 34.375em) {    .banner-box {      font-size: 14px;      padding: 2em; } }  .banner-box h4 {    margin-bottom: 0; }.truck-slider .slick-track {  display: -ms-flexbox;  display: flex; }.truck-slider .slick-slide {  display: block;  position: relative;  border: solid 3px #f9b874; }  .truck-slider .slick-slide:before {    display: block;    content: "";    width: 100%;    padding-top: 67%; }.service-section {  background-color: #fff; }  .service-section:nth-child(odd) {    background-color: #f1f1f1; }  .service-section__title {    padding-left: 7vw; }    .service-section__title h1 {      display: inline-block;      border-bottom: 2px solid #f9b874;      margin-top: 0; }  .service-section__content {    margin: auto;    padding: 2em 0 4em;    width: 90%;    max-width: 40em; }    @media (min-width: 51.25em) {      .service-section__content {        max-width: 60em; } }.careers-list {  padding: 1em 0 0;  display: -ms-flexbox;  display: flex;  -ms-flex-wrap: wrap;      flex-wrap: wrap; }  .careers-list li {    font-size: 1.2em;    width: 100%;    padding: 0.35em 0; }    @media (min-width: 20em) {      .careers-list li {        width: 50%; } }    @media (min-width: 40em) {      .careers-list li {        font-size: 1.44em; } }    @media (min-width: 43.75em) {      .careers-list li {        width: 33.333%; } }.apply-form {  background-color: #e1e1e1; }  .apply-form__inner {    padding: 0 6%;    text-align: center;    max-width: 54em;    margin: auto; }  .apply-form .defaultForm {    text-align: left;    margin-top: 2.5em; }  .apply-form label {    font-size: 1em;    font-weight: 600;    margin-bottom: 3px; }  .apply-form textarea, .apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="file"] {    background-color: transparent;    border: 2px solid transparent;    border-left-color: rgba(5, 5, 5, 0.7);    border-bottom-color: rgba(5, 5, 5, 0.7);    box-shadow: none;    transition: border 300ms ease-out; }    .apply-form textarea:hover, .apply-form textarea:focus, .apply-form input[type="text"]:hover, .apply-form input[type="text"]:focus, .apply-form input[type="email"]:hover, .apply-form input[type="email"]:focus, .apply-form input[type="file"]:hover, .apply-form input[type="file"]:focus {      border: 2px solid #050505; }  .apply-form .form_submit {    margin-top: 2rem;    display: block;    text-align: center; }  .apply-form input[type="submit"] {    background-color: #050505;    min-width: 300px;    color: #FFFFFF;    font-size: 1.2em;    padding: 1.25em 1.75em; }    .apply-form input[type="submit"]:hover {      background-color: #f75424;      color: #050505; }  .apply-form .form_error_specific {    color: #fff; }.job-listing {  padding: 0 5%;  max-width: 60em;  margin: auto;  padding-top: 2em; }  .job-listing__item {    position: relative;    padding: 0 0.5em 1.5em 0.5em; }    .job-listing__item:not(:last-child) {      margin-bottom: 1.5em;      border-bottom: 1px solid #ccc; }    @media (min-width: 34.375em) {      .job-listing__item {        padding: 0 1em 1em 1em; } }    .job-listing__item > div:empty {      display: none;      height: 0; }  .job-listing h2 {    text-shadow: none;    margin-bottom: 5px;    font-size: 1.3125em;    text-transform: none;    letter-spacing: 0;    color: #f75424; }  .job-listing > p {    padding: 0 0.5em; }    @media (min-width: 34.375em) {      .job-listing > p {        padding: 0 1em; } }  .job-listing__location {    font-weight: 600; }  .job-listing__details {    font-size: 10px;    margin-top: 1em; }    @media (min-width: 34.375em) {      .job-listing__details {        position: absolute;        bottom: 1rem;        right: 1rem;        font-size: 13px; } }    .job-listing__details a {      padding: 0.7em 6em 0.7em 1.5em;      letter-spacing: 0.5px; }  .job-listing__salary:empty, .job-listing__details:empty {    display: none;    height: 0; }.hero-text {  background-color: #f0892c;  text-align: center;  padding: 0.9em;  font-size: 0.75em; }  @media (min-width: 37.5em) {    .hero-text {      padding: 1em 0;      font-size: 0.825em; } }  .hero-text h1 {    margin: 0;    line-height: 1.1; }.hero-slider {  width: 100%;  min-height: calc(95vh - 13em);  position: relative;  display: -ms-flexbox;  display: flex;  -ms-flex-align: center;      align-items: center; }  @media (min-width: 37.5em) {    .hero-slider {      min-height: calc(95vh - 10em); } }  .previewFrame .hero-slider {    background-color: #050505;    min-height: 50em; }    @media (min-width: 30em) {      .previewFrame .hero-slider {        min-height: 50em; } }  .hero-slider__wrapper, .hero-slider .slick-list, .hero-slider .slick-track {    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%; }  .hero-slider .slick-initialized .hero-slide {    display: block; }  .hero-slider .hero-slide {    width: 100%;    height: 100%;    background-size: cover;    background-position: center bottom;    background-repeat: no-repeat; }    .hero-slider .hero-slide:after {      content: "";      position: absolute;      left: 0;      top: 0;      height: 100%;      width: 100%;      background-color: rgba(5, 5, 5, 0.1); }  .hero-slider .hero__content {    max-width: 70em;    width: 88%;    position: relative;    z-index: 5;    margin: auto;    text-align: center;    text-transform: uppercase;    font-size: 0.7em; }    @media (min-width: 51.25em) {      .hero-slider .hero__content {        font-size: 0.875em; } }    @media (min-width: 51.25em) {      .hero-slider .hero__content {        font-size: 1em;        width: calc(100% - 18em); } }    .hero-slider .hero__content h1 {      color: #fff;      text-shadow: 1px 1px rgba(0, 0, 0, 0.8);      line-height: 1.2;      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px);      font-size: calc(3em + 1vw); }      @media (min-width: 40em) {        .hero-slider .hero__content h1 {          font-size: calc(3.6em + 1vw); } }      @media (min-width: 75em) {        .hero-slider .hero__content h1 {          font-size: calc(4.3em + 1vw); } }      .page-loaded .hero-slider .hero__content h1 {        animation: fade-in-up 400ms ease-out 100ms forwards; }  .hero-slider .slick-arrow {    position: absolute;    top: 100%;    z-index: 10;    width: 6em;    height: 4em;    box-shadow: 0 0px 10px transparent;    transition: width 300ms ease-out,box-shadow 300ms ease-out;    cursor: pointer;    opacity: 0;    right: -7em;    transition: all 500ms ease-out; }    @media (min-width: 51.25em) {      .hero-slider .slick-arrow {        top: 50%; } }    .hero-slider .slick-arrow:hover {      width: 8em;      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); }      .hero-slider .slick-arrow:hover:after {        left: 3em; }    .hero-slider .slick-arrow:after {      content: "";      position: absolute;      left: 1em;      right: 1em;      bottom: 1em;      top: 1em;      display: block;      transition: left 500ms ease-out;      background-position: center center;      background-repeat: no-repeat;      background-image: url("/mulgrew-com/images/left-chevron.svg");      background-size: contain; }    .page-loaded .hero-slider .slick-arrow {      opacity: 1;      right: 0; }    .hero-slider .slick-arrow.slick-next {      -ms-transform: translateY(-110%);          transform: translateY(-110%);      background-color: #d03003; }      @media (min-width: 51.25em) {        .hero-slider .slick-arrow.slick-next {          -ms-transform: translateY(50%);              transform: translateY(50%); } }      .hero-slider .slick-arrow.slick-next:after {        background-image: url("/mulgrew-com/_img/images/right-chevron.svg");        background-position: 60% 50%; }    .hero-slider .slick-arrow.slick-prev {      -ms-transform: translateY(-210%);          transform: translateY(-210%);      background-color: #f0892c; }      @media (min-width: 51.25em) {        .hero-slider .slick-arrow.slick-prev {          -ms-transform: translateY(-50%);              transform: translateY(-50%); } }      .hero-slider .slick-arrow.slick-prev:after {        background-image: url("/mulgrew-com/_img/images/left-chevron.svg"); }.welcome {  background-color: #f1f1f1; }  .welcome-inner {    display: -ms-flexbox;    display: flex;    -ms-flex-direction: column;        flex-direction: column; }    @media (min-width: 51.25em) {      .welcome-inner {        -ms-flex-direction: row;            flex-direction: row; } }  .welcome-image {    width: 90%;    background-size: cover;    background-position: left center;    background-repeat: no-repeat;    position: relative;    -ms-transform: translateX(-100%);        transform: translateX(-100%);    opacity: 0; }    @media (min-width: 51.25em) {      .welcome-image {        width: 55%; } }    .welcome-image:before {      display: block;      content: "";      width: 100%;      padding-top: 65%; }  .welcome-text {    width: 90%;    padding: 3em 1em;    max-width: 45em;    margin: auto;    line-height: 1.8; }    @media (min-width: 26.25em) {      .welcome-text {        padding: 3em 3em 3em 2.5em; } }    @media (min-width: 51.25em) {      .welcome-text {        width: 45%;        max-width: 35em; } }    .welcome-text h2 {      -ms-transform: translateY(20px);          transform: translateY(20px);      opacity: 0; }    .welcome-text p {      font-size: 1.2em;      -ms-transform: translateY(20px);          transform: translateY(20px);      opacity: 0; }    .welcome-text .button {      -ms-transform: translateY(20px);          transform: translateY(20px);      opacity: 0; }  .welcome.inviewport .welcome-image, .previewFrame .welcome .welcome-image, .previewFrame .welcome .welcome-image {    animation: fade-in-left 600ms ease-out 100ms forwards; }  .welcome.inviewport h2, .previewFrame .welcome h2, .previewFrame .welcome h2 {    animation: fade-in-up 400ms ease-out 300ms forwards; }  .welcome.inviewport p, .previewFrame .welcome p, .previewFrame .welcome p {    animation: fade-in-up 600ms ease-out 500ms forwards; }  .welcome.inviewport .button, .previewFrame .welcome .button, .previewFrame .welcome .button {    animation: fade-in-up 400ms ease-out 700ms forwards; }.service-tiles {  background-color: #f1f1f1;  padding: 0; }  @media (min-width: 51.25em) {    .service-tiles__wrap {      display: -ms-flexbox;      display: flex; } }  @media (min-width: 51.25em) {    .service-tiles__wrap .col1 {      width: 58%;      min-height: 80vh; }      .previewFrame .service-tiles__wrap .col1 {        min-height: 50em; } }  .service-tiles__wrap .col1 .service-tile {    position: relative;    height: 100%;    opacity: 0;    -ms-transform: translateX(-100%);        transform: translateX(-100%); }  @media (min-width: 51.25em) {    .service-tiles__wrap .col2 {      width: 42%; }      .service-tiles__wrap .col2 .service-tile {        height: 50%; } }  @media (min-width: 51.25em) {    .service-tiles__wrap .col2 .service-tile__content p {      font-size: 1em; } }  @media (min-width: 75em) {    .service-tiles__wrap .col2 .service-tile__content p {      font-size: 1.2em; } }  .service-tiles__wrap .col2 .service-tile:nth-child(1) {    display: none; }  .service-tiles__wrap .col2 .service-tile:nth-child(2) {    opacity: 0;    -ms-transform: translateX(100%);        transform: translateX(100%); }  .service-tiles__wrap .col2 .service-tile:nth-child(3) {    opacity: 0;    -ms-transform: translateX(100%);        transform: translateX(100%); }  .service-tiles__wrap .service-tile {    width: 100%;    position: relative;    box-shadow: inset 0 0 0 0 rgba(5, 5, 5, 0.5);    transition: box-shadow 300ms ease-out 150ms;    background-size: cover;    background-position: center center;    background-repeat: no-repeat; }    .service-tiles__wrap .service-tile:after {      content: "";      background-color: rgba(0, 0, 0, 0.3);      position: absolute;      width: 100%;      height: 100%;      left: 0;      top: 0;      transition: background-color 300ms ease-out 150ms; }    .service-tiles__wrap .service-tile__content {      position: relative;      z-index: 2;      padding: 6%;      display: -ms-flexbox;      display: flex;      -ms-flex-direction: column;          flex-direction: column;      height: 100%;      color: #fff; }      .ie .service-tiles__wrap .service-tile__content {        display: block; }      .service-tiles__wrap .service-tile__content p {        font-size: 1.2em;        -ms-flex: 2;            flex: 2;        line-height: 1.6; }    .service-tiles__wrap .service-tile__title h1 {      border-bottom: 0px solid #f75424;      text-shadow: none;      transition: border-width 300ms ease-out 150ms; }    .service-tiles__wrap .service-tile__desc {      -ms-transform: translateY(20px);          transform: translateY(20px);      opacity: 0;      transition: all 300ms ease-out 50ms;      padding-bottom: 5em; }      @media (min-width: 51.25em) {        .service-tiles__wrap .service-tile__desc {          padding-bottom: 0em; } }    .service-tiles__wrap .service-tile__desc, .service-tiles__wrap .service-tile__title {      -ms-flex: 0;          flex: 0; }    .service-tiles__wrap .service-tile__button {      display: -ms-flexbox;      display: flex;      -ms-flex: 3;          flex: 3;      -ms-flex-align: end;          align-items: flex-end; }      .service-tiles__wrap .service-tile__button .button {        -ms-transform: translateY(20px);            transform: translateY(20px);        opacity: 0;        transition: all 300ms ease-out 150ms; }    .service-tiles__wrap .service-tile:hover, .service-tiles__wrap .service-tile.active {      box-shadow: inset 0 0 0 6px rgba(5, 5, 5, 0.95); }      .service-tiles__wrap .service-tile:hover:after, .service-tiles__wrap .service-tile.active:after {        background-color: rgba(5, 5, 5, 0.8); }      .service-tiles__wrap .service-tile:hover .button h1, .service-tiles__wrap .service-tile:hover .service-tile__title h1, .service-tiles__wrap .service-tile.active .button h1, .service-tiles__wrap .service-tile.active .service-tile__title h1 {        border-width: 2px; }      .service-tiles__wrap .service-tile:hover .button, .service-tiles__wrap .service-tile:hover .service-tile__desc, .service-tiles__wrap .service-tile.active .button, .service-tiles__wrap .service-tile.active .service-tile__desc {        -ms-transform: translateY(0);            transform: translateY(0);        opacity: 1; }      .service-tiles__wrap .service-tile:hover h1, .service-tiles__wrap .service-tile.active h1 {        color: #f75424; }  .service-tiles.inviewport .col1 .service-tile, .previewFrame .service-tiles .col1 .service-tile {    animation: fade-in-left-big 900ms ease-out forwards 100ms; }  .service-tiles.inviewport .col2 .service-tile:nth-child(2), .previewFrame .service-tiles .col2 .service-tile:nth-child(2) {    animation: fade-in-up 600ms ease-out forwards 300ms; }  .service-tiles.inviewport .col2 .service-tile:nth-child(3), .previewFrame .service-tiles .col2 .service-tile:nth-child(3) {    animation: fade-in-right-big 600ms ease-out forwards 500ms; }.latest-news {  background-color: #f1f1f1; }  .latest-news__wrap {    padding: 0 8%; }    .latest-news__wrap > h2 {      margin-bottom: 0; }    .latest-news__wrap h6 {      margin-top: 0; }  .latest-news .news-feed {    width: 100%;    padding-top: 2em;    position: relative; }    @media (min-width: 30em) {      .latest-news .news-feed .button {        position: absolute;        right: 0;        bottom: 0; } }    @media (min-width: 51.25em) {      .latest-news .news-feed .button {        position: relative; } }    @media (min-width: 81.25em) {      .latest-news .news-feed {        padding-right: 10%; }        .latest-news .news-feed > .button {          position: absolute;          top: 2em;          left: 100%;          -ms-transform: rotate(90deg);              transform: rotate(90deg);          -ms-transform-origin: left top;              transform-origin: left top;          margin-top: 0; }          .latest-news .news-feed > .button a {            width: 100%;            display: block;            font-size: 1.2em;            padding: 1.25em 1.75em; } }  .latest-news #listNews {    position: relative;    z-index: 2; }    @media (min-width: 30em) {      .latest-news #listNews {        display: -ms-flexbox;        display: flex;        -ms-flex-wrap: wrap;            flex-wrap: wrap;        width: 100%; } }    @media (min-width: 51.25em) {      .latest-news #listNews {        -ms-flex-wrap: nowrap;            flex-wrap: nowrap; } }  .latest-news .listNewsItem {    cursor: pointer;    width: 100%;    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px); }    .latest-news .listNewsItem:not(:last-child) {      margin-bottom: 35px; }    @media (min-width: 30em) {      .latest-news .listNewsItem {        width: calc(50% - 15px);        margin-right: 15px; } }    @media (min-width: 51.25em) {      .latest-news .listNewsItem {        width: calc(33.333% - 5px); }        .latest-news .listNewsItem:last-child {          margin-right: 0; }        .latest-news .listNewsItem:not(:last-child) {          margin-right: 15px;          margin-bottom: 0; } }    @media (min-width: 64.375em) {      .latest-news .listNewsItem {        width: calc(33.333% - 8px); }        .latest-news .listNewsItem:not(:last-child) {          margin-right: 24px; } }    .latest-news .listNewsItem:hover .newsImageTop {      box-shadow: 0 10px 35px 0 rgba(148, 52, 0, 0.5); }    .latest-news .listNewsItem:hover .newsSummaryLink a:after {      width: 100%; }  .latest-news .newsImageTop {    position: relative;    display: block;    padding-bottom: 70%;    width: 100%;    box-shadow: 0 0px 0px 0 rgba(148, 52, 0, 0);    transition: box-shadow 300ms ease-out;    background-size: cover;    background-position: 50% 50%;    background-repeat: no-repeat; }  .latest-news .newsTitle {    font-size: 1.2em;    color: #050505;    margin-top: 1em;    margin-bottom: 2em;    text-transform: none;    font-family: "Barlow", Arial, "Helvetica Neue", Helvetica, sans-serif;    font-weight: 600;    padding-right: 5px;    transition: padding 300ms ease-out;    text-shadow: none; }    @media (min-width: 64.375em) {      .latest-news .newsTitle {        font-size: 1.44em; } }    .latest-news .newsTitle a {      color: #050505; }  .latest-news .newsInfoWrap, .latest-news .newsImageBottom, .latest-news .newsSummary {    display: none; }  .latest-news .newsSummaryLink a {    font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;    text-transform: uppercase;    position: relative;    color: #f75424; }    .latest-news .newsSummaryLink a:after {      content: "";      position: absolute;      left: 0;      bottom: -0.5em;      height: 2px;      width: 0;      display: block;      transition: width 400ms ease-out;      background-color: #fff; }  .latest-news .button {    margin-top: 2em; }    @media (min-width: 30em) {      .latest-news .button {        margin-top: 0em; } }    @media (min-width: 51.25em) {      .latest-news .button {        margin-top: 2em; } }    @media (min-width: 81.25em) {      .latest-news .button {        margin-top: 0; } }    .latest-news .button a {      opacity: 0;      -ms-transform: translateY(20px);          transform: translateY(20px); }  .latest-news.inviewport .listNewsItem, .previewFrame .latest-news .listNewsItem {    animation: fade-in-up 500ms ease-out forwards; }    .latest-news.inviewport .listNewsItem:nth-child(1), .previewFrame .latest-news .listNewsItem:nth-child(1) {      animation-delay: 200ms; }    .latest-news.inviewport .listNewsItem:nth-child(2), .previewFrame .latest-news .listNewsItem:nth-child(2) {      animation-delay: 400ms; }    .latest-news.inviewport .listNewsItem:nth-child(3), .previewFrame .latest-news .listNewsItem:nth-child(3) {      animation-delay: 600ms; }  .latest-news.inviewport .button a, .previewFrame .latest-news .button a {    animation: fade-in-up 500ms ease-out 800ms forwards; }.buckets {  background-color: #f75424;  background-color: #f1f1f1;  padding: 0; }  @media (min-width: 48em) {    .buckets__wrap {      display: -ms-flexbox;      display: flex; } }  .buckets .bucket {    width: 100%;    min-height: 60vh;    padding: 2em;    display: -ms-flexbox;    display: flex;    -ms-flex-align: end;        align-items: flex-end;    opacity: 0;    -ms-transform: translateY(20px);        transform: translateY(20px);    background-size: cover;    background-position: center center;    background-repeat: no-repeat; }    .previewFrame .buckets .bucket {      min-height: 30em; }    @media (min-width: 48em) {      .buckets .bucket {        width: 50%; } }    .buckets .bucket-content {      padding: 2em;      width: 95%;      max-width: 41em;      padding-bottom: 0;      background-color: #fff;      background-image: linear-gradient(to bottom right, #fff, #f1f1f1);      box-shadow: 0 10px 35px 0 rgba(255, 255, 255, 0.25);      transition: background-color 600ms ease-out, padding 600ms ease-out; }      @media (min-width: 30em) {        .buckets .bucket-content {          width: 85%; } }    .buckets .bucket h4 {      text-transform: uppercase;      color: #f75424;      margin-bottom: 0;      transition: color 600ms ease-out, text-shadow 600ms ease-out; }    .buckets .bucket p {      margin-bottom: 0; }    .buckets .bucket .button {      -ms-transform: translateY(20px);          transform: translateY(20px);      opacity: 0;      margin: 0;      max-height: 0;      transition: all 600ms ease-out; }    .buckets .bucket:hover .bucket-content, .previewFrame .buckets .bucket .bucket-content, .touchevents .buckets .bucket .bucket-content {      padding-bottom: 2em; }    .buckets .bucket:hover h4, .previewFrame .buckets .bucket h4, .touchevents .buckets .bucket h4 {      color: #050505; }    .buckets .bucket:hover .button, .previewFrame .buckets .bucket .button, .touchevents .buckets .bucket .button {      max-height: 5em;      margin-top: 1em;      -ms-transform: translateY(0);          transform: translateY(0);      opacity: 1;      display: block; }  .buckets.inviewport .bucket, .previewFrame .buckets .bucket {    animation: fade-in-up 500ms ease-out forwards; }    .buckets.inviewport .bucket:first-child, .previewFrame .buckets .bucket:first-child {      animation-delay: 200ms; }    .buckets.inviewport .bucket:last-child, .previewFrame .buckets .bucket:last-child {      animation-delay: 500ms; }/* -----------------------------------------	13.0. Footer----------------------------------------- */.footer {  background-color: #f75424;  padding: 4em 2em;  padding-bottom: 1em;  border-top: 1px solid #050505; }  @media (min-width: 26.25em) {    .footer {      padding: 4em 4em 1.5em; } }  .footer-top {    display: -ms-flexbox;    display: flex;    -ms-flex-wrap: wrap;        flex-wrap: wrap;    padding-bottom: 1em;    margin-bottom: 1.5em;    border-bottom: 1px solid rgba(0, 0, 0, 0.3); }    @media (min-width: 43.75em) {      .footer-top {        -ms-flex-pack: justify;            justify-content: space-between; } }    .footer-top p {      line-height: 1.7; }  .footer-item {    padding-right: 2em;    margin-bottom: 2em;    width: 100%;    min-width: 10em; }    @media (min-width: 34.375em) {      .footer-item {        width: 50%; } }    @media (min-width: 43.75em) {      .footer-item {        width: auto;        -ms-flex: 1;            flex: 1; } }  .footer a {    color: #050505; }    .footer a:hover {      color: #f9b874; }  .footer h5 {    font-family: "GlacialIndifferenceBold", Arial, "Helvetica Neue", Helvetica, sans-serif;    text-transform: uppercase;    font-size: 1.2em;    margin-bottom: 1em; }  .footer p {    font-size: 0.9275em; }    .footer p:not(:last-child) {      margin-bottom: 1em; }  .footer-social__icon {    display: inline-block;    width: 3em;    margin: 2px; }    .footer-social__icon svg {      fill: #050505;      transition: fill 300ms ease-out; }    .footer-social__icon:hover svg {      fill: #f9b874; }  @media (min-width: 61.25em) {    .footer-bottom {      display: -ms-flexbox;      display: flex;      -ms-flex-wrap: wrap;          flex-wrap: wrap;      -ms-flex-pack: justify;          justify-content: space-between;      -ms-flex-align: center;          align-items: center; } }  @media (min-width: 61.25em) {    .footer-content {      text-align: right; } }  .footer-logo {    width: 100%;    line-height: 0;    margin-bottom: 1em; }    @media (min-width: 20em) {      .footer-logo {        width: 19em; } }    @media (min-width: 61.25em) {      .footer-logo {        margin-bottom: 0; } } .footer-logo img {width:  170px;}/* Values */.chart-wrapper {width: 100%; display: flex; flex-wrap: wrap;}.chart-wrapper-left {width: 25%;}.chart-wrapper-left-top {height: 50%; margin-bottom: 10px;}.chart-wrapper-left-bottom {height: 50%;}.chart-wrapper-middle {width: 50%; text-align: center; display: flex; align-items: center; justify-content: center; padding: 10px;}.chart-wrapper-right {width: 25%;}.chart-wrapper-right-top {height: 50%; margin-bottom: 10px;}.chart-wrapper-right-bottom {height: 50%;}@media all and (max-width: 650px) and (min-width: 0px) {.chart-wrapper-left {width: 100%;}.chart-wrapper-middle {width: 100%;}.chart-wrapper-right {width: 100%;}}
/* not required */
