/*
Theme Name: Miziker Entertainment Themes
Theme URI: http://underscores.me/
Author: Michael Suen
Author URI: http://www.whoismichaelsuen.com/
Description: Wordpress theme for Miziker Entertainment
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: miziker
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Miziker Entertainment Theme is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Navigation
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Theme Specific Styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* Small menu. */
.site-main .comment-nav,
.site-main .posts-nav,
.site-main .post-nav {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-nav .nav-previous,
.posts-nav .nav-previous,
.post-nav .nav-previous {
  float: left;
  width: 50%;
}

.comment-nav .nav-next,
.posts-nav .nav-next,
.post-nav .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-nav,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Theme Specific Styles
--------------------------------------------------------------*/
/* normalize 3.0.3 + h5bp 5.2 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
  margin: 0;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
} /* h5bp print */
@media print {
  *, *:before, *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.grid, .grid-12, .grid-11, .grid-10, .grid-9, .grid-8, .grid-7, .grid-6, .grid-5, .grid-4, .grid-3, .grid-2, .grid-1 {
  margin: 0;
  clear: none;
  float: left;
}

.grid-1 {
  width: 8.3333333333%;
}

.grid-2 {
  width: 16.6666666667%;
}

.grid-3 {
  width: 25%;
}

.grid-4 {
  width: 33.3333333333%;
}

.grid-5 {
  width: 41.6666666667%;
}

.grid-6 {
  width: 50%;
}

.grid-7 {
  width: 58.3333333333%;
}

.grid-8 {
  width: 66.6666666667%;
}

.grid-9 {
  width: 75%;
}

.grid-10 {
  width: 83.3333333333%;
}

.grid-11 {
  width: 91.6666666667%;
}

.grid-12 {
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.offset-12 {
  margin-left: 100%;
}

.pad-1 {
  padding: 8px;
}

.pad-1-left {
  padding-left: 8px;
}

.pad-1-right {
  padding-right: 8px;
}

.pad-1-top {
  padding-top: 8px;
}

.pad-1-bottom {
  padding-bottom: 8px;
}

.pad-1-sides {
  padding-left: 8px;
  padding-right: 8px;
}

.pad-1-vert {
  padding-top: 8px;
  padding-bottom: 8px;
}

.marg-1 {
  margin: 8px;
}

.marg-1-left {
  margin-left: 8px;
}

.marg-1-right {
  margin-right: 8px;
}

.marg-1-top {
  margin-top: 8px;
}

.marg-1-bottom {
  margin-bottom: 8px;
}

.marg-1-sides {
  margin-left: 8px;
  margin-right: 8px;
}

.marg-1-vert {
  margin-top: 8px;
  margin-bottom: 8px;
}

.pad-2 {
  padding: 16px;
}

.pad-2-left {
  padding-left: 16px;
}

.pad-2-right {
  padding-right: 16px;
}

.pad-2-top {
  padding-top: 16px;
}

.pad-2-bottom {
  padding-bottom: 16px;
}

.pad-2-sides {
  padding-left: 16px;
  padding-right: 16px;
}

.pad-2-vert {
  padding-top: 16px;
  padding-bottom: 16px;
}

.marg-2 {
  margin: 16px;
}

.marg-2-left {
  margin-left: 16px;
}

.marg-2-right {
  margin-right: 16px;
}

.marg-2-top {
  margin-top: 16px;
}

.marg-2-bottom {
  margin-bottom: 16px;
}

.marg-2-sides {
  margin-left: 16px;
  margin-right: 16px;
}

.marg-2-vert {
  margin-top: 16px;
  margin-bottom: 16px;
}

.pad-3 {
  padding: 32px;
}

.pad-3-left {
  padding-left: 32px;
}

.pad-3-right {
  padding-right: 32px;
}

.pad-3-top {
  padding-top: 32px;
}

.pad-3-bottom {
  padding-bottom: 32px;
}

.pad-3-sides {
  padding-left: 32px;
  padding-right: 32px;
}

.pad-3-vert {
  padding-top: 32px;
  padding-bottom: 32px;
}

.marg-3 {
  margin: 32px;
}

.marg-3-left {
  margin-left: 32px;
}

.marg-3-right {
  margin-right: 32px;
}

.marg-3-top {
  margin-top: 32px;
}

.marg-3-bottom {
  margin-bottom: 32px;
}

.marg-3-sides {
  margin-left: 32px;
  margin-right: 32px;
}

.marg-3-vert {
  margin-top: 32px;
  margin-bottom: 32px;
}

.pad-4 {
  padding: 48px;
}

.pad-4-left {
  padding-left: 48px;
}

.pad-4-right {
  padding-right: 48px;
}

.pad-4-top {
  padding-top: 48px;
}

.pad-4-bottom {
  padding-bottom: 48px;
}

.pad-4-sides {
  padding-left: 48px;
  padding-right: 48px;
}

.pad-4-vert {
  padding-top: 48px;
  padding-bottom: 48px;
}

.marg-4 {
  margin: 48px;
}

.marg-4-left {
  margin-left: 48px;
}

.marg-4-right {
  margin-right: 48px;
}

.marg-4-top {
  margin-top: 48px;
}

.marg-4-bottom {
  margin-bottom: 48px;
}

.marg-4-sides {
  margin-left: 48px;
  margin-right: 48px;
}

.marg-4-vert {
  margin-top: 48px;
  margin-bottom: 48px;
}

.pad-5 {
  padding: 54px;
}

.pad-5-left {
  padding-left: 54px;
}

.pad-5-right {
  padding-right: 54px;
}

.pad-5-top {
  padding-top: 54px;
}

.pad-5-bottom {
  padding-bottom: 54px;
}

.pad-5-sides {
  padding-left: 54px;
  padding-right: 54px;
}

.pad-5-vert {
  padding-top: 54px;
  padding-bottom: 54px;
}

.marg-5 {
  margin: 54px;
}

.marg-5-left {
  margin-left: 54px;
}

.marg-5-right {
  margin-right: 54px;
}

.marg-5-top {
  margin-top: 54px;
}

.marg-5-bottom {
  margin-bottom: 54px;
}

.marg-5-sides {
  margin-left: 54px;
  margin-right: 54px;
}

.marg-5-vert {
  margin-top: 54px;
  margin-bottom: 54px;
}

.pad-0 {
  padding: 0;
}

.pad-0-left {
  padding-left: 0;
}

.pad-0-right {
  padding-right: 0;
}

.pad-0-top {
  padding-top: 0;
}

.pad-0-bottom {
  padding-bottom: 0;
}

.pad-0-sides {
  padding-left: 0;
  padding-right: 0;
}

.pad-0-vert {
  padding-top: 0;
  padding-bottom: 0;
}

.marg-0 {
  margin: 0;
}

.marg-0-left {
  margin-left: 0;
}

.marg-0-right {
  margin-right: 0;
}

.marg-0-top {
  margin-top: 0;
}

.marg-0-bottom {
  margin-bottom: 0;
}

.marg-0-sides {
  margin-left: 0;
  margin-right: 0;
}

.marg-0-vert {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .s-grid, .s-grid-12, .s-grid-11, .s-grid-10, .s-grid-9, .s-grid-8, .s-grid-7, .s-grid-6, .s-grid-5, .s-grid-4, .s-grid-3, .s-grid-2, .s-grid-1 {
    margin: 0;
    clear: none;
    float: left;
  }
  .s-grid-1 {
    width: 8.3333333333%;
  }
  .s-grid-2 {
    width: 16.6666666667%;
  }
  .s-grid-3 {
    width: 25%;
  }
  .s-grid-4 {
    width: 33.3333333333%;
  }
  .s-grid-5 {
    width: 41.6666666667%;
  }
  .s-grid-6 {
    width: 50%;
  }
  .s-grid-7 {
    width: 58.3333333333%;
  }
  .s-grid-8 {
    width: 66.6666666667%;
  }
  .s-grid-9 {
    width: 75%;
  }
  .s-grid-10 {
    width: 83.3333333333%;
  }
  .s-grid-11 {
    width: 91.6666666667%;
  }
  .s-grid-12 {
    width: 100%;
  }
  .s-offset-0 {
    margin-left: 0;
  }
  .s-offset-1 {
    margin-left: 8.3333333333%;
  }
  .s-offset-2 {
    margin-left: 16.6666666667%;
  }
  .s-offset-3 {
    margin-left: 25%;
  }
  .s-offset-4 {
    margin-left: 33.3333333333%;
  }
  .s-offset-5 {
    margin-left: 41.6666666667%;
  }
  .s-offset-6 {
    margin-left: 50%;
  }
  .s-offset-7 {
    margin-left: 58.3333333333%;
  }
  .s-offset-8 {
    margin-left: 66.6666666667%;
  }
  .s-offset-9 {
    margin-left: 75%;
  }
  .s-offset-10 {
    margin-left: 83.3333333333%;
  }
  .s-offset-11 {
    margin-left: 91.6666666667%;
  }
  .s-offset-12 {
    margin-left: 100%;
  }
  .s-pad-1 {
    padding: 8px;
  }
  .s-pad-1-left {
    padding-left: 8px;
  }
  .s-pad-1-right {
    padding-right: 8px;
  }
  .s-pad-1-top {
    padding-top: 8px;
  }
  .s-pad-1-bottom {
    padding-bottom: 8px;
  }
  .s-pad-1-sides {
    padding-left: 8px;
    padding-right: 8px;
  }
  .s-pad-1-vert {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .s-marg-1 {
    margin: 8px;
  }
  .s-marg-1-left {
    margin-left: 8px;
  }
  .s-marg-1-right {
    margin-right: 8px;
  }
  .s-marg-1-top {
    margin-top: 8px;
  }
  .s-marg-1-bottom {
    margin-bottom: 8px;
  }
  .s-marg-1-sides {
    margin-left: 8px;
    margin-right: 8px;
  }
  .s-marg-1-vert {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .s-pad-2 {
    padding: 16px;
  }
  .s-pad-2-left {
    padding-left: 16px;
  }
  .s-pad-2-right {
    padding-right: 16px;
  }
  .s-pad-2-top {
    padding-top: 16px;
  }
  .s-pad-2-bottom {
    padding-bottom: 16px;
  }
  .s-pad-2-sides {
    padding-left: 16px;
    padding-right: 16px;
  }
  .s-pad-2-vert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .s-marg-2 {
    margin: 16px;
  }
  .s-marg-2-left {
    margin-left: 16px;
  }
  .s-marg-2-right {
    margin-right: 16px;
  }
  .s-marg-2-top {
    margin-top: 16px;
  }
  .s-marg-2-bottom {
    margin-bottom: 16px;
  }
  .s-marg-2-sides {
    margin-left: 16px;
    margin-right: 16px;
  }
  .s-marg-2-vert {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .s-pad-3 {
    padding: 32px;
  }
  .s-pad-3-left {
    padding-left: 32px;
  }
  .s-pad-3-right {
    padding-right: 32px;
  }
  .s-pad-3-top {
    padding-top: 32px;
  }
  .s-pad-3-bottom {
    padding-bottom: 32px;
  }
  .s-pad-3-sides {
    padding-left: 32px;
    padding-right: 32px;
  }
  .s-pad-3-vert {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .s-marg-3 {
    margin: 32px;
  }
  .s-marg-3-left {
    margin-left: 32px;
  }
  .s-marg-3-right {
    margin-right: 32px;
  }
  .s-marg-3-top {
    margin-top: 32px;
  }
  .s-marg-3-bottom {
    margin-bottom: 32px;
  }
  .s-marg-3-sides {
    margin-left: 32px;
    margin-right: 32px;
  }
  .s-marg-3-vert {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .s-pad-4 {
    padding: 48px;
  }
  .s-pad-4-left {
    padding-left: 48px;
  }
  .s-pad-4-right {
    padding-right: 48px;
  }
  .s-pad-4-top {
    padding-top: 48px;
  }
  .s-pad-4-bottom {
    padding-bottom: 48px;
  }
  .s-pad-4-sides {
    padding-left: 48px;
    padding-right: 48px;
  }
  .s-pad-4-vert {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .s-marg-4 {
    margin: 48px;
  }
  .s-marg-4-left {
    margin-left: 48px;
  }
  .s-marg-4-right {
    margin-right: 48px;
  }
  .s-marg-4-top {
    margin-top: 48px;
  }
  .s-marg-4-bottom {
    margin-bottom: 48px;
  }
  .s-marg-4-sides {
    margin-left: 48px;
    margin-right: 48px;
  }
  .s-marg-4-vert {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .s-pad-5 {
    padding: 54px;
  }
  .s-pad-5-left {
    padding-left: 54px;
  }
  .s-pad-5-right {
    padding-right: 54px;
  }
  .s-pad-5-top {
    padding-top: 54px;
  }
  .s-pad-5-bottom {
    padding-bottom: 54px;
  }
  .s-pad-5-sides {
    padding-left: 54px;
    padding-right: 54px;
  }
  .s-pad-5-vert {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .s-marg-5 {
    margin: 54px;
  }
  .s-marg-5-left {
    margin-left: 54px;
  }
  .s-marg-5-right {
    margin-right: 54px;
  }
  .s-marg-5-top {
    margin-top: 54px;
  }
  .s-marg-5-bottom {
    margin-bottom: 54px;
  }
  .s-marg-5-sides {
    margin-left: 54px;
    margin-right: 54px;
  }
  .s-marg-5-vert {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .s-pad-0 {
    padding: 0;
  }
  .s-pad-0-left {
    padding-left: 0;
  }
  .s-pad-0-right {
    padding-right: 0;
  }
  .s-pad-0-top {
    padding-top: 0;
  }
  .s-pad-0-bottom {
    padding-bottom: 0;
  }
  .s-pad-0-sides {
    padding-left: 0;
    padding-right: 0;
  }
  .s-pad-0-vert {
    padding-top: 0;
    padding-bottom: 0;
  }
  .s-marg-0 {
    margin: 0;
  }
  .s-marg-0-left {
    margin-left: 0;
  }
  .s-marg-0-right {
    margin-right: 0;
  }
  .s-marg-0-top {
    margin-top: 0;
  }
  .s-marg-0-bottom {
    margin-bottom: 0;
  }
  .s-marg-0-sides {
    margin-left: 0;
    margin-right: 0;
  }
  .s-marg-0-vert {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 481px) and (max-width: 800px) {
  .m-grid, .m-grid-12, .m-grid-11, .m-grid-10, .m-grid-9, .m-grid-8, .m-grid-7, .m-grid-6, .m-grid-5, .m-grid-4, .m-grid-3, .m-grid-2, .m-grid-1 {
    margin: 0;
    clear: none;
    float: left;
  }
  .m-grid-1 {
    width: 8.3333333333%;
  }
  .m-grid-2 {
    width: 16.6666666667%;
  }
  .m-grid-3 {
    width: 25%;
  }
  .m-grid-4 {
    width: 33.3333333333%;
  }
  .m-grid-5 {
    width: 41.6666666667%;
  }
  .m-grid-6 {
    width: 50%;
  }
  .m-grid-7 {
    width: 58.3333333333%;
  }
  .m-grid-8 {
    width: 66.6666666667%;
  }
  .m-grid-9 {
    width: 75%;
  }
  .m-grid-10 {
    width: 83.3333333333%;
  }
  .m-grid-11 {
    width: 91.6666666667%;
  }
  .m-grid-12 {
    width: 100%;
  }
  .m-offset-0 {
    margin-left: 0;
  }
  .m-offset-1 {
    margin-left: 8.3333333333%;
  }
  .m-offset-2 {
    margin-left: 16.6666666667%;
  }
  .m-offset-3 {
    margin-left: 25%;
  }
  .m-offset-4 {
    margin-left: 33.3333333333%;
  }
  .m-offset-5 {
    margin-left: 41.6666666667%;
  }
  .m-offset-6 {
    margin-left: 50%;
  }
  .m-offset-7 {
    margin-left: 58.3333333333%;
  }
  .m-offset-8 {
    margin-left: 66.6666666667%;
  }
  .m-offset-9 {
    margin-left: 75%;
  }
  .m-offset-10 {
    margin-left: 83.3333333333%;
  }
  .m-offset-11 {
    margin-left: 91.6666666667%;
  }
  .m-offset-12 {
    margin-left: 100%;
  }
  .m-pad-1 {
    padding: 8px;
  }
  .m-pad-1-left {
    padding-left: 8px;
  }
  .m-pad-1-right {
    padding-right: 8px;
  }
  .m-pad-1-top {
    padding-top: 8px;
  }
  .m-pad-1-bottom {
    padding-bottom: 8px;
  }
  .m-pad-1-sides {
    padding-left: 8px;
    padding-right: 8px;
  }
  .m-pad-1-vert {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .m-marg-1 {
    margin: 8px;
  }
  .m-marg-1-left {
    margin-left: 8px;
  }
  .m-marg-1-right {
    margin-right: 8px;
  }
  .m-marg-1-top {
    margin-top: 8px;
  }
  .m-marg-1-bottom {
    margin-bottom: 8px;
  }
  .m-marg-1-sides {
    margin-left: 8px;
    margin-right: 8px;
  }
  .m-marg-1-vert {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .m-pad-2 {
    padding: 16px;
  }
  .m-pad-2-left {
    padding-left: 16px;
  }
  .m-pad-2-right {
    padding-right: 16px;
  }
  .m-pad-2-top {
    padding-top: 16px;
  }
  .m-pad-2-bottom {
    padding-bottom: 16px;
  }
  .m-pad-2-sides {
    padding-left: 16px;
    padding-right: 16px;
  }
  .m-pad-2-vert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .m-marg-2 {
    margin: 16px;
  }
  .m-marg-2-left {
    margin-left: 16px;
  }
  .m-marg-2-right {
    margin-right: 16px;
  }
  .m-marg-2-top {
    margin-top: 16px;
  }
  .m-marg-2-bottom {
    margin-bottom: 16px;
  }
  .m-marg-2-sides {
    margin-left: 16px;
    margin-right: 16px;
  }
  .m-marg-2-vert {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .m-pad-3 {
    padding: 32px;
  }
  .m-pad-3-left {
    padding-left: 32px;
  }
  .m-pad-3-right {
    padding-right: 32px;
  }
  .m-pad-3-top {
    padding-top: 32px;
  }
  .m-pad-3-bottom {
    padding-bottom: 32px;
  }
  .m-pad-3-sides {
    padding-left: 32px;
    padding-right: 32px;
  }
  .m-pad-3-vert {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .m-marg-3 {
    margin: 32px;
  }
  .m-marg-3-left {
    margin-left: 32px;
  }
  .m-marg-3-right {
    margin-right: 32px;
  }
  .m-marg-3-top {
    margin-top: 32px;
  }
  .m-marg-3-bottom {
    margin-bottom: 32px;
  }
  .m-marg-3-sides {
    margin-left: 32px;
    margin-right: 32px;
  }
  .m-marg-3-vert {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .m-pad-4 {
    padding: 48px;
  }
  .m-pad-4-left {
    padding-left: 48px;
  }
  .m-pad-4-right {
    padding-right: 48px;
  }
  .m-pad-4-top {
    padding-top: 48px;
  }
  .m-pad-4-bottom {
    padding-bottom: 48px;
  }
  .m-pad-4-sides {
    padding-left: 48px;
    padding-right: 48px;
  }
  .m-pad-4-vert {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .m-marg-4 {
    margin: 48px;
  }
  .m-marg-4-left {
    margin-left: 48px;
  }
  .m-marg-4-right {
    margin-right: 48px;
  }
  .m-marg-4-top {
    margin-top: 48px;
  }
  .m-marg-4-bottom {
    margin-bottom: 48px;
  }
  .m-marg-4-sides {
    margin-left: 48px;
    margin-right: 48px;
  }
  .m-marg-4-vert {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .m-pad-5 {
    padding: 54px;
  }
  .m-pad-5-left {
    padding-left: 54px;
  }
  .m-pad-5-right {
    padding-right: 54px;
  }
  .m-pad-5-top {
    padding-top: 54px;
  }
  .m-pad-5-bottom {
    padding-bottom: 54px;
  }
  .m-pad-5-sides {
    padding-left: 54px;
    padding-right: 54px;
  }
  .m-pad-5-vert {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .m-marg-5 {
    margin: 54px;
  }
  .m-marg-5-left {
    margin-left: 54px;
  }
  .m-marg-5-right {
    margin-right: 54px;
  }
  .m-marg-5-top {
    margin-top: 54px;
  }
  .m-marg-5-bottom {
    margin-bottom: 54px;
  }
  .m-marg-5-sides {
    margin-left: 54px;
    margin-right: 54px;
  }
  .m-marg-5-vert {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .m-pad-0 {
    padding: 0;
  }
  .m-pad-0-left {
    padding-left: 0;
  }
  .m-pad-0-right {
    padding-right: 0;
  }
  .m-pad-0-top {
    padding-top: 0;
  }
  .m-pad-0-bottom {
    padding-bottom: 0;
  }
  .m-pad-0-sides {
    padding-left: 0;
    padding-right: 0;
  }
  .m-pad-0-vert {
    padding-top: 0;
    padding-bottom: 0;
  }
  .m-marg-0 {
    margin: 0;
  }
  .m-marg-0-left {
    margin-left: 0;
  }
  .m-marg-0-right {
    margin-right: 0;
  }
  .m-marg-0-top {
    margin-top: 0;
  }
  .m-marg-0-bottom {
    margin-bottom: 0;
  }
  .m-marg-0-sides {
    margin-left: 0;
    margin-right: 0;
  }
  .m-marg-0-vert {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 801px) and (max-width: 1024px) {
  .l-grid, .l-grid-12, .l-grid-11, .l-grid-10, .l-grid-9, .l-grid-8, .l-grid-7, .l-grid-6, .l-grid-5, .l-grid-4, .l-grid-3, .l-grid-2, .l-grid-1 {
    margin: 0;
    clear: none;
    float: left;
  }
  .l-grid-1 {
    width: 8.3333333333%;
  }
  .l-grid-2 {
    width: 16.6666666667%;
  }
  .l-grid-3 {
    width: 25%;
  }
  .l-grid-4 {
    width: 33.3333333333%;
  }
  .l-grid-5 {
    width: 41.6666666667%;
  }
  .l-grid-6 {
    width: 50%;
  }
  .l-grid-7 {
    width: 58.3333333333%;
  }
  .l-grid-8 {
    width: 66.6666666667%;
  }
  .l-grid-9 {
    width: 75%;
  }
  .l-grid-10 {
    width: 83.3333333333%;
  }
  .l-grid-11 {
    width: 91.6666666667%;
  }
  .l-grid-12 {
    width: 100%;
  }
  .l-offset-0 {
    margin-left: 0;
  }
  .l-offset-1 {
    margin-left: 8.3333333333%;
  }
  .l-offset-2 {
    margin-left: 16.6666666667%;
  }
  .l-offset-3 {
    margin-left: 25%;
  }
  .l-offset-4 {
    margin-left: 33.3333333333%;
  }
  .l-offset-5 {
    margin-left: 41.6666666667%;
  }
  .l-offset-6 {
    margin-left: 50%;
  }
  .l-offset-7 {
    margin-left: 58.3333333333%;
  }
  .l-offset-8 {
    margin-left: 66.6666666667%;
  }
  .l-offset-9 {
    margin-left: 75%;
  }
  .l-offset-10 {
    margin-left: 83.3333333333%;
  }
  .l-offset-11 {
    margin-left: 91.6666666667%;
  }
  .l-offset-12 {
    margin-left: 100%;
  }
  .l-pad-1 {
    padding: 8px;
  }
  .l-pad-1-left {
    padding-left: 8px;
  }
  .l-pad-1-right {
    padding-right: 8px;
  }
  .l-pad-1-top {
    padding-top: 8px;
  }
  .l-pad-1-bottom {
    padding-bottom: 8px;
  }
  .l-pad-1-sides {
    padding-left: 8px;
    padding-right: 8px;
  }
  .l-pad-1-vert {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .l-marg-1 {
    margin: 8px;
  }
  .l-marg-1-left {
    margin-left: 8px;
  }
  .l-marg-1-right {
    margin-right: 8px;
  }
  .l-marg-1-top {
    margin-top: 8px;
  }
  .l-marg-1-bottom {
    margin-bottom: 8px;
  }
  .l-marg-1-sides {
    margin-left: 8px;
    margin-right: 8px;
  }
  .l-marg-1-vert {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .l-pad-2 {
    padding: 16px;
  }
  .l-pad-2-left {
    padding-left: 16px;
  }
  .l-pad-2-right {
    padding-right: 16px;
  }
  .l-pad-2-top {
    padding-top: 16px;
  }
  .l-pad-2-bottom {
    padding-bottom: 16px;
  }
  .l-pad-2-sides {
    padding-left: 16px;
    padding-right: 16px;
  }
  .l-pad-2-vert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .l-marg-2 {
    margin: 16px;
  }
  .l-marg-2-left {
    margin-left: 16px;
  }
  .l-marg-2-right {
    margin-right: 16px;
  }
  .l-marg-2-top {
    margin-top: 16px;
  }
  .l-marg-2-bottom {
    margin-bottom: 16px;
  }
  .l-marg-2-sides {
    margin-left: 16px;
    margin-right: 16px;
  }
  .l-marg-2-vert {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .l-pad-3 {
    padding: 32px;
  }
  .l-pad-3-left {
    padding-left: 32px;
  }
  .l-pad-3-right {
    padding-right: 32px;
  }
  .l-pad-3-top {
    padding-top: 32px;
  }
  .l-pad-3-bottom {
    padding-bottom: 32px;
  }
  .l-pad-3-sides {
    padding-left: 32px;
    padding-right: 32px;
  }
  .l-pad-3-vert {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .l-marg-3 {
    margin: 32px;
  }
  .l-marg-3-left {
    margin-left: 32px;
  }
  .l-marg-3-right {
    margin-right: 32px;
  }
  .l-marg-3-top {
    margin-top: 32px;
  }
  .l-marg-3-bottom {
    margin-bottom: 32px;
  }
  .l-marg-3-sides {
    margin-left: 32px;
    margin-right: 32px;
  }
  .l-marg-3-vert {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .l-pad-4 {
    padding: 48px;
  }
  .l-pad-4-left {
    padding-left: 48px;
  }
  .l-pad-4-right {
    padding-right: 48px;
  }
  .l-pad-4-top {
    padding-top: 48px;
  }
  .l-pad-4-bottom {
    padding-bottom: 48px;
  }
  .l-pad-4-sides {
    padding-left: 48px;
    padding-right: 48px;
  }
  .l-pad-4-vert {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .l-marg-4 {
    margin: 48px;
  }
  .l-marg-4-left {
    margin-left: 48px;
  }
  .l-marg-4-right {
    margin-right: 48px;
  }
  .l-marg-4-top {
    margin-top: 48px;
  }
  .l-marg-4-bottom {
    margin-bottom: 48px;
  }
  .l-marg-4-sides {
    margin-left: 48px;
    margin-right: 48px;
  }
  .l-marg-4-vert {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .l-pad-5 {
    padding: 54px;
  }
  .l-pad-5-left {
    padding-left: 54px;
  }
  .l-pad-5-right {
    padding-right: 54px;
  }
  .l-pad-5-top {
    padding-top: 54px;
  }
  .l-pad-5-bottom {
    padding-bottom: 54px;
  }
  .l-pad-5-sides {
    padding-left: 54px;
    padding-right: 54px;
  }
  .l-pad-5-vert {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .l-marg-5 {
    margin: 54px;
  }
  .l-marg-5-left {
    margin-left: 54px;
  }
  .l-marg-5-right {
    margin-right: 54px;
  }
  .l-marg-5-top {
    margin-top: 54px;
  }
  .l-marg-5-bottom {
    margin-bottom: 54px;
  }
  .l-marg-5-sides {
    margin-left: 54px;
    margin-right: 54px;
  }
  .l-marg-5-vert {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .l-pad-0 {
    padding: 0;
  }
  .l-pad-0-left {
    padding-left: 0;
  }
  .l-pad-0-right {
    padding-right: 0;
  }
  .l-pad-0-top {
    padding-top: 0;
  }
  .l-pad-0-bottom {
    padding-bottom: 0;
  }
  .l-pad-0-sides {
    padding-left: 0;
    padding-right: 0;
  }
  .l-pad-0-vert {
    padding-top: 0;
    padding-bottom: 0;
  }
  .l-marg-0 {
    margin: 0;
  }
  .l-marg-0-left {
    margin-left: 0;
  }
  .l-marg-0-right {
    margin-right: 0;
  }
  .l-marg-0-top {
    margin-top: 0;
  }
  .l-marg-0-bottom {
    margin-bottom: 0;
  }
  .l-marg-0-sides {
    margin-left: 0;
    margin-right: 0;
  }
  .l-marg-0-vert {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .xl-grid, .xl-grid-12, .xl-grid-11, .xl-grid-10, .xl-grid-9, .xl-grid-8, .xl-grid-7, .xl-grid-6, .xl-grid-5, .xl-grid-4, .xl-grid-3, .xl-grid-2, .xl-grid-1 {
    margin: 0;
    clear: none;
    float: left;
  }
  .xl-grid-1 {
    width: 8.3333333333%;
  }
  .xl-grid-2 {
    width: 16.6666666667%;
  }
  .xl-grid-3 {
    width: 25%;
  }
  .xl-grid-4 {
    width: 33.3333333333%;
  }
  .xl-grid-5 {
    width: 41.6666666667%;
  }
  .xl-grid-6 {
    width: 50%;
  }
  .xl-grid-7 {
    width: 58.3333333333%;
  }
  .xl-grid-8 {
    width: 66.6666666667%;
  }
  .xl-grid-9 {
    width: 75%;
  }
  .xl-grid-10 {
    width: 83.3333333333%;
  }
  .xl-grid-11 {
    width: 91.6666666667%;
  }
  .xl-grid-12 {
    width: 100%;
  }
  .xl-offset-0 {
    margin-left: 0;
  }
  .xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xl-offset-3 {
    margin-left: 25%;
  }
  .xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xl-offset-6 {
    margin-left: 50%;
  }
  .xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xl-offset-9 {
    margin-left: 75%;
  }
  .xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xl-offset-12 {
    margin-left: 100%;
  }
  .xl-pad-1 {
    padding: 8px;
  }
  .xl-pad-1-left {
    padding-left: 8px;
  }
  .xl-pad-1-right {
    padding-right: 8px;
  }
  .xl-pad-1-top {
    padding-top: 8px;
  }
  .xl-pad-1-bottom {
    padding-bottom: 8px;
  }
  .xl-pad-1-sides {
    padding-left: 8px;
    padding-right: 8px;
  }
  .xl-pad-1-vert {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .xl-marg-1 {
    margin: 8px;
  }
  .xl-marg-1-left {
    margin-left: 8px;
  }
  .xl-marg-1-right {
    margin-right: 8px;
  }
  .xl-marg-1-top {
    margin-top: 8px;
  }
  .xl-marg-1-bottom {
    margin-bottom: 8px;
  }
  .xl-marg-1-sides {
    margin-left: 8px;
    margin-right: 8px;
  }
  .xl-marg-1-vert {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .xl-pad-2 {
    padding: 16px;
  }
  .xl-pad-2-left {
    padding-left: 16px;
  }
  .xl-pad-2-right {
    padding-right: 16px;
  }
  .xl-pad-2-top {
    padding-top: 16px;
  }
  .xl-pad-2-bottom {
    padding-bottom: 16px;
  }
  .xl-pad-2-sides {
    padding-left: 16px;
    padding-right: 16px;
  }
  .xl-pad-2-vert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .xl-marg-2 {
    margin: 16px;
  }
  .xl-marg-2-left {
    margin-left: 16px;
  }
  .xl-marg-2-right {
    margin-right: 16px;
  }
  .xl-marg-2-top {
    margin-top: 16px;
  }
  .xl-marg-2-bottom {
    margin-bottom: 16px;
  }
  .xl-marg-2-sides {
    margin-left: 16px;
    margin-right: 16px;
  }
  .xl-marg-2-vert {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .xl-pad-3 {
    padding: 32px;
  }
  .xl-pad-3-left {
    padding-left: 32px;
  }
  .xl-pad-3-right {
    padding-right: 32px;
  }
  .xl-pad-3-top {
    padding-top: 32px;
  }
  .xl-pad-3-bottom {
    padding-bottom: 32px;
  }
  .xl-pad-3-sides {
    padding-left: 32px;
    padding-right: 32px;
  }
  .xl-pad-3-vert {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .xl-marg-3 {
    margin: 32px;
  }
  .xl-marg-3-left {
    margin-left: 32px;
  }
  .xl-marg-3-right {
    margin-right: 32px;
  }
  .xl-marg-3-top {
    margin-top: 32px;
  }
  .xl-marg-3-bottom {
    margin-bottom: 32px;
  }
  .xl-marg-3-sides {
    margin-left: 32px;
    margin-right: 32px;
  }
  .xl-marg-3-vert {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .xl-pad-4 {
    padding: 48px;
  }
  .xl-pad-4-left {
    padding-left: 48px;
  }
  .xl-pad-4-right {
    padding-right: 48px;
  }
  .xl-pad-4-top {
    padding-top: 48px;
  }
  .xl-pad-4-bottom {
    padding-bottom: 48px;
  }
  .xl-pad-4-sides {
    padding-left: 48px;
    padding-right: 48px;
  }
  .xl-pad-4-vert {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .xl-marg-4 {
    margin: 48px;
  }
  .xl-marg-4-left {
    margin-left: 48px;
  }
  .xl-marg-4-right {
    margin-right: 48px;
  }
  .xl-marg-4-top {
    margin-top: 48px;
  }
  .xl-marg-4-bottom {
    margin-bottom: 48px;
  }
  .xl-marg-4-sides {
    margin-left: 48px;
    margin-right: 48px;
  }
  .xl-marg-4-vert {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .xl-pad-5 {
    padding: 54px;
  }
  .xl-pad-5-left {
    padding-left: 54px;
  }
  .xl-pad-5-right {
    padding-right: 54px;
  }
  .xl-pad-5-top {
    padding-top: 54px;
  }
  .xl-pad-5-bottom {
    padding-bottom: 54px;
  }
  .xl-pad-5-sides {
    padding-left: 54px;
    padding-right: 54px;
  }
  .xl-pad-5-vert {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .xl-marg-5 {
    margin: 54px;
  }
  .xl-marg-5-left {
    margin-left: 54px;
  }
  .xl-marg-5-right {
    margin-right: 54px;
  }
  .xl-marg-5-top {
    margin-top: 54px;
  }
  .xl-marg-5-bottom {
    margin-bottom: 54px;
  }
  .xl-marg-5-sides {
    margin-left: 54px;
    margin-right: 54px;
  }
  .xl-marg-5-vert {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .xl-pad-0 {
    padding: 0;
  }
  .xl-pad-0-left {
    padding-left: 0;
  }
  .xl-pad-0-right {
    padding-right: 0;
  }
  .xl-pad-0-top {
    padding-top: 0;
  }
  .xl-pad-0-bottom {
    padding-bottom: 0;
  }
  .xl-pad-0-sides {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-pad-0-vert {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xl-marg-0 {
    margin: 0;
  }
  .xl-marg-0-left {
    margin-left: 0;
  }
  .xl-marg-0-right {
    margin-right: 0;
  }
  .xl-marg-0-top {
    margin-top: 0;
  }
  .xl-marg-0-bottom {
    margin-bottom: 0;
  }
  .xl-marg-0-sides {
    margin-left: 0;
    margin-right: 0;
  }
  .xl-marg-0-vert {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1201px) {
  .xxl-grid, .xxl-grid-12, .xxl-grid-11, .xxl-grid-10, .xxl-grid-9, .xxl-grid-8, .xxl-grid-7, .xxl-grid-6, .xxl-grid-5, .xxl-grid-4, .xxl-grid-3, .xxl-grid-2, .xxl-grid-1 {
    margin: 0;
    clear: none;
    float: left;
  }
  .xxl-grid-1 {
    width: 8.3333333333%;
  }
  .xxl-grid-2 {
    width: 16.6666666667%;
  }
  .xxl-grid-3 {
    width: 25%;
  }
  .xxl-grid-4 {
    width: 33.3333333333%;
  }
  .xxl-grid-5 {
    width: 41.6666666667%;
  }
  .xxl-grid-6 {
    width: 50%;
  }
  .xxl-grid-7 {
    width: 58.3333333333%;
  }
  .xxl-grid-8 {
    width: 66.6666666667%;
  }
  .xxl-grid-9 {
    width: 75%;
  }
  .xxl-grid-10 {
    width: 83.3333333333%;
  }
  .xxl-grid-11 {
    width: 91.6666666667%;
  }
  .xxl-grid-12 {
    width: 100%;
  }
  .xxl-offset-0 {
    margin-left: 0;
  }
  .xxl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxl-offset-3 {
    margin-left: 25%;
  }
  .xxl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxl-offset-6 {
    margin-left: 50%;
  }
  .xxl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxl-offset-9 {
    margin-left: 75%;
  }
  .xxl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxl-offset-12 {
    margin-left: 100%;
  }
  .xxl-pad-1 {
    padding: 8px;
  }
  .xxl-pad-1-left {
    padding-left: 8px;
  }
  .xxl-pad-1-right {
    padding-right: 8px;
  }
  .xxl-pad-1-top {
    padding-top: 8px;
  }
  .xxl-pad-1-bottom {
    padding-bottom: 8px;
  }
  .xxl-pad-1-sides {
    padding-left: 8px;
    padding-right: 8px;
  }
  .xxl-pad-1-vert {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .xxl-marg-1 {
    margin: 8px;
  }
  .xxl-marg-1-left {
    margin-left: 8px;
  }
  .xxl-marg-1-right {
    margin-right: 8px;
  }
  .xxl-marg-1-top {
    margin-top: 8px;
  }
  .xxl-marg-1-bottom {
    margin-bottom: 8px;
  }
  .xxl-marg-1-sides {
    margin-left: 8px;
    margin-right: 8px;
  }
  .xxl-marg-1-vert {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .xxl-pad-2 {
    padding: 16px;
  }
  .xxl-pad-2-left {
    padding-left: 16px;
  }
  .xxl-pad-2-right {
    padding-right: 16px;
  }
  .xxl-pad-2-top {
    padding-top: 16px;
  }
  .xxl-pad-2-bottom {
    padding-bottom: 16px;
  }
  .xxl-pad-2-sides {
    padding-left: 16px;
    padding-right: 16px;
  }
  .xxl-pad-2-vert {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .xxl-marg-2 {
    margin: 16px;
  }
  .xxl-marg-2-left {
    margin-left: 16px;
  }
  .xxl-marg-2-right {
    margin-right: 16px;
  }
  .xxl-marg-2-top {
    margin-top: 16px;
  }
  .xxl-marg-2-bottom {
    margin-bottom: 16px;
  }
  .xxl-marg-2-sides {
    margin-left: 16px;
    margin-right: 16px;
  }
  .xxl-marg-2-vert {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .xxl-pad-3 {
    padding: 32px;
  }
  .xxl-pad-3-left {
    padding-left: 32px;
  }
  .xxl-pad-3-right {
    padding-right: 32px;
  }
  .xxl-pad-3-top {
    padding-top: 32px;
  }
  .xxl-pad-3-bottom {
    padding-bottom: 32px;
  }
  .xxl-pad-3-sides {
    padding-left: 32px;
    padding-right: 32px;
  }
  .xxl-pad-3-vert {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .xxl-marg-3 {
    margin: 32px;
  }
  .xxl-marg-3-left {
    margin-left: 32px;
  }
  .xxl-marg-3-right {
    margin-right: 32px;
  }
  .xxl-marg-3-top {
    margin-top: 32px;
  }
  .xxl-marg-3-bottom {
    margin-bottom: 32px;
  }
  .xxl-marg-3-sides {
    margin-left: 32px;
    margin-right: 32px;
  }
  .xxl-marg-3-vert {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .xxl-pad-4 {
    padding: 48px;
  }
  .xxl-pad-4-left {
    padding-left: 48px;
  }
  .xxl-pad-4-right {
    padding-right: 48px;
  }
  .xxl-pad-4-top {
    padding-top: 48px;
  }
  .xxl-pad-4-bottom {
    padding-bottom: 48px;
  }
  .xxl-pad-4-sides {
    padding-left: 48px;
    padding-right: 48px;
  }
  .xxl-pad-4-vert {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .xxl-marg-4 {
    margin: 48px;
  }
  .xxl-marg-4-left {
    margin-left: 48px;
  }
  .xxl-marg-4-right {
    margin-right: 48px;
  }
  .xxl-marg-4-top {
    margin-top: 48px;
  }
  .xxl-marg-4-bottom {
    margin-bottom: 48px;
  }
  .xxl-marg-4-sides {
    margin-left: 48px;
    margin-right: 48px;
  }
  .xxl-marg-4-vert {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .xxl-pad-5 {
    padding: 54px;
  }
  .xxl-pad-5-left {
    padding-left: 54px;
  }
  .xxl-pad-5-right {
    padding-right: 54px;
  }
  .xxl-pad-5-top {
    padding-top: 54px;
  }
  .xxl-pad-5-bottom {
    padding-bottom: 54px;
  }
  .xxl-pad-5-sides {
    padding-left: 54px;
    padding-right: 54px;
  }
  .xxl-pad-5-vert {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .xxl-marg-5 {
    margin: 54px;
  }
  .xxl-marg-5-left {
    margin-left: 54px;
  }
  .xxl-marg-5-right {
    margin-right: 54px;
  }
  .xxl-marg-5-top {
    margin-top: 54px;
  }
  .xxl-marg-5-bottom {
    margin-bottom: 54px;
  }
  .xxl-marg-5-sides {
    margin-left: 54px;
    margin-right: 54px;
  }
  .xxl-marg-5-vert {
    margin-top: 54px;
    margin-bottom: 54px;
  }
  .xxl-pad-0 {
    padding: 0;
  }
  .xxl-pad-0-left {
    padding-left: 0;
  }
  .xxl-pad-0-right {
    padding-right: 0;
  }
  .xxl-pad-0-top {
    padding-top: 0;
  }
  .xxl-pad-0-bottom {
    padding-bottom: 0;
  }
  .xxl-pad-0-sides {
    padding-left: 0;
    padding-right: 0;
  }
  .xxl-pad-0-vert {
    padding-top: 0;
    padding-bottom: 0;
  }
  .xxl-marg-0 {
    margin: 0;
  }
  .xxl-marg-0-left {
    margin-left: 0;
  }
  .xxl-marg-0-right {
    margin-right: 0;
  }
  .xxl-marg-0-top {
    margin-top: 0;
  }
  .xxl-marg-0-bottom {
    margin-bottom: 0;
  }
  .xxl-marg-0-sides {
    margin-left: 0;
    margin-right: 0;
  }
  .xxl-marg-0-vert {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.pad-half {
  padding: 4px;
}

.pad-half-left {
  padding-left: 4px;
}

.pad-half-right {
  padding-right: 4px;
}

.pad-half-top {
  padding-top: 4px;
}

.pad-half-bottom {
  padding-bottom: 4px;
}

.pad-half-sides {
  padding-left: 4px;
  padding-right: 4px;
}

.pad-half-vert {
  padding-top: 4px;
  padding-bottom: 4px;
}

.marg-half {
  margin: 4px;
}

.marg-half-left {
  margin-left: 4px;
}

.marg-half-right {
  margin-right: 4px;
}

.marg-half-top {
  margin-top: 4px;
}

.marg-half-bottom {
  margin-bottom: 4px;
}

.marg-half-sides {
  margin-left: 4px;
  margin-right: 4px;
}

.marg-half-vert {
  margin-top: 4px;
  margin-bottom: 4px;
}

.grid-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*  Expressive CSS

	Author & copyright (c) 2015: John Polacek
	Follow on Twitter: @johnpolacek
	Dual MIT & GPL license

	Project Page: http://johnpolacek.github.com/expressive-css
	Project Repo: https://github.com/johnpolacek/expressive-css
*/
html {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #fef7e9;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.8;
}

header, footer {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, blockquote {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

h1, .h1 {
  font-size: clamp(2.75rem, 2.062rem + 3.442vw, 5rem);
  line-height: 1.1;
}

h2, .h2 {
  font-size: clamp(1.75rem, 1.521rem + 1.147vw, 2.5rem);
  line-height: 1.1;
}

h3, .h3 {
  font-size: clamp(1.33rem, 1.202rem + 0.642vw, 1.75rem);
  line-height: 1.3;
}

h4, .h4, legend {
  font-size: clamp(1.25rem, 1.212rem + 0.191vw, 1.375rem);
}

h5, .h5 {
  font-size: clamp(1rem, 0.924rem + 0.382vw, 1.25rem);
}

h6, .h6, .p {
  font-size: 1em;
}

p, pre, blockquote {
  margin: 0;
  padding: 0 0 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(0.875rem, 0.837rem + 0.191vw, 1rem);
  font-style: normal;
  font-weight: 300;
}

code {
  font-family: Monaco, monospace;
  font-size: 0.9em;
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 4em;
  }
}
ul {
  padding-left: 1.5em;
}

ul ul {
  padding-top: 8px;
}

li {
  padding-bottom: 8px;
}

/* Positioning Fix */
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* Components */
fieldset {
  margin-bottom: 16px;
}

select {
  width: 100%;
}

input, textarea {
  width: 100%;
  padding: 4px 8px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

input[type=checkbox], input[type=radio] {
  width: auto;
  height: auto;
  margin: 0 8px 0 0;
}

label {
  width: 100%;
  display: block;
}

input.error, select.error, textarea.error {
  border: dotted 1px #cd242a;
}

input[disabled], select[disabled], input[readonly], select[readonly] {
  background-color: #eee;
  color: #888;
}

input[readonly] {
  cursor: text;
}

.tooltip {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #9fc74d;
  color: white;
  transform: translateY(-100%);
  border: solid 2px #fff;
}

.tooltip:after {
  top: 100%;
  right: 16px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #9fc74d;
  border-width: 6px;
}

.tooltip-hover {
  visibility: hidden;
}

div:hover > .tooltip-hover {
  visibility: visible;
}

.tooltip.error:after {
  border-top-color: #cd242a;
}

button, .btn, .nav ul li:last-child {
  display: inline-block;
  background: #9fc74d;
  width: auto;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  border: none;
  text-decoration: none;
  outline: none;
  margin-bottom: 4px;
}
button:hover, .btn:hover, .nav ul li:hover:last-child {
  background: #5bb12f;
}

.pad-btn {
  padding: 4px 8px;
}

.btn-ucla-gold, .nav ul li:last-child {
  background-color: #FFB600;
}
.btn-ucla-gold:hover, .nav ul li:hover:last-child {
  background-color: #b37f00;
}

.btn-wide {
  width: 100%;
}

.btn-wide {
  width: 100%;
}

.btn-small {
  padding: 3px 6px;
  font-size: 80%;
}

.btn-large, .nav ul li:last-child {
  padding: 8px 16px;
  font-size: 1.2em;
}

.btn-huge {
  padding: 16px 24px;
  font-size: 1.375em;
}

p a, li a, blockquote a, cite a, figcaption a, .link-text {
  color: #287dbe;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

p a:hover, li a:hover, blockquote a:hover, cite a:hover, figcaption a:hover, .link-text:hover {
  border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

table {
  margin-bottom: 16px;
}

th, td, caption {
  padding: 8px;
  text-align: left;
  border-bottom: solid 1px #ddd;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(66, 66, 66, 0.8);
  visibility: hidden;
  z-index: 9999999;
}

.modal {
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  color: #777;
  line-height: 0.5;
  font-size: 24px;
}

.slide-show-container {
  background-color: #000;
  width: 100%;
  overflow: hidden;
}

.slide-show {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
}

.slide-text-container {
  width: 100%;
  height: 100%;
  position: absolute;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.slide-text {
  position: absolute;
  max-width: 100%;
  margin: 0 auto;
  padding: 2vw 0 3vw;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}
.slide-text .slide-text-inner {
  color: #fff;
  font-weight: 500;
  font-size: clamp(2rem, 0.654rem + 6.73vw, 6.4rem);
}

.slide-text.left {
  left: 5vw;
  text-align: left;
}

.slide-text.right {
  right: 5vw;
  text-align: right;
}

.slide-text.top {
  top: 0.33em;
}

.slide-text.bottom {
  bottom: 0.33em;
}

.slide-text.middle {
  top: 50%;
  transform: translateY(-60%);
}

.slide-text .btn, .slide-text .nav ul li:last-child, .nav ul .slide-text li:last-child {
  display: inline-block;
  font-size: 1.15vw;
  text-transform: uppercase;
  font-weight: bold;
  margin: 2vw 0 0;
  padding: 0.5em 1em;
}

.slide--clickable {
  cursor: pointer;
}
.slide--clickable .slide__link img {
  transition: transform 0.6s ease-in-out;
}
.slide--clickable .slide-text-container .slide-text-inner {
  transition: text-shadow 0.6s ease-in-out;
}
.slide--clickable:hover .slide__link img {
  transform: scale(1.025);
}
.slide--clickable:hover .slide-text-container .slide-text-inner {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.slide__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.slide__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide__link:hover {
  text-decoration: none;
}
.slide__link .slide-text-container {
  pointer-events: none;
}

/*From customizer*/
.slide-show {
  clear: both;
}

.slide-show a {
  display: block;
}

.slide-show img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-show .slide {
  min-height: 25vh;
  width: 100%;
  height: 100%;
  max-height: 853px;
}

/* Containers */
.box-320 {
  max-width: 320px;
}

.box-400 {
  max-width: 400px;
}

.box-480 {
  max-width: 480px;
}

.box-560 {
  max-width: 560px;
}

.box-640 {
  max-width: 640px;
}

.box-720 {
  max-width: 720px;
}

.box-800 {
  max-width: 800px;
}

.box-960 {
  max-width: 960px;
}

.box-1100 {
  max-width: 1100px;
}

.box-1200 {
  max-width: 1200px;
}

.box-1366 {
  max-width: 1366px;
}

.box-1440 {
  max-width: 1440px;
}

.box-1600 {
  max-width: 1600px;
}

.box-1920 {
  max-width: 1920px;
}

.box-2560 {
  max-width: 2560px;
}

.box-center {
  margin-left: auto;
  margin-right: auto;
}

.box-gradient-overlay {
  display: block;
  position: relative;
}
.box-gradient-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  background: linear-gradient(to bottom, transparent 50%, #000 100%);
}

.box-gradient-overlay img {
  width: 100%;
}

dt, strong, .bold {
  font-weight: bold;
}

em, .italic {
  font-style: italic;
}

small, .text-smaller {
  font-size: 80%;
}

.text-small {
  font-size: 0.8em;
}

.text-small-2 {
  font-size: 0.7em;
}

.text-reg {
  font-weight: normal;
}

.text-light {
  font-weight: 200;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.letter-space-1 {
  letter-spacing: 1px;
}

/* Color Utils */
.bgr-cod-gray {
  background-color: #4d4d4d;
}

.bgr-pink-lady {
  background-color: #f6f6f6;
}

.bgr-new-blue {
  background-color: #005493;
}

.bgr-buff-cream {
  background-color: #fef7e9;
}

.bgr-nile-blue {
  background-color: #1C354B;
}

.bgr-coral-red {
  background-color: #F74350;
}

.bgr-ucla-gold {
  background-color: #FFB600;
}

.bgr-brand-gold {
  background-color: #d2b46b;
}

.bgr-blue-lt {
  background-color: #75c5df;
}

.bgr-blue {
  background-color: #287dbe;
}

.bgr-blue-dk {
  background-color: #384992;
}

.bgr-green {
  background-color: #9fc74d;
}

.bgr-green-dk {
  background-color: #5bb12f;
}

.bgr-white {
  background-color: #fff;
}

.bgr-dark {
  background-color: #234;
}

.bgr-grey-lt {
  background-color: #ececec;
}

.bgr-grey {
  background-color: #999;
}

.bgr-pink {
  background-color: #ec66a2;
}

.bgr-ultra-pink {
  background-color: #ff2f92;
}

.bgr-purple {
  background-color: #9e579e;
}

.bgr-red {
  background-color: #cd242a;
}

.text-cod-gray {
  color: #4d4d4d;
}

.text-pink-lady {
  color: #f6f6f6;
}

.text-new-blue {
  color: #005493;
}

.text-buff-cream {
  color: #fef7e9;
}

.text-nile-blue {
  color: #1C354B;
}

.text-coral-red {
  color: #F74350;
}

.text-ucla-gold {
  color: #FFB600;
}

.text-brand-gold {
  color: #d2b46b;
}

.text-blue-lt {
  color: #75c5df;
}

.text-blue {
  color: #287dbe;
}

.text-blue-dk {
  color: #384992;
}

.text-green {
  color: #9fc74d;
}

.text-green-dk {
  color: #5bb12f;
}

.text-white {
  color: #fff;
}

.text-dark {
  color: #234;
}

.text-grey-lt {
  color: #ececec;
}

.text-grey {
  color: #999;
}

.text-pink {
  color: #ec66a2;
}

.text-ultra-pink {
  color: #ff2f92;
}

.text-purple {
  color: #9e579e;
}

.text-red {
  color: #cd242a;
}

/* Utilities */
.show {
  display: block !important;
}

.hidden {
  display: none !important;
}

.transparent {
  opacity: 0;
}

.invisible {
  visibility: hidden;
}

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

.visually-hidden,
.sr-only {
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.base-padding {
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
}

.gutter-padding {
  padding: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
}

/* group = clearfix */
.group:before, .group:after {
  content: " ";
  display: table;
}

.group:after {
  clear: both;
}

.inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: auto;
}

.wide {
  width: 100%;
}

.pos-top {
  top: 0;
}

.pos-bottom {
  bottom: 0;
}

.pos-right {
  right: 0;
}

.pos-left {
  left: 0;
}

.z-999 {
  z-index: 999;
}

.z-9999 {
  z-index: 9999;
}

.z-99999 {
  z-index: 99999;
}

.rounded {
  border-radius: 4px;
}

.circle {
  border-radius: 50%;
}

.border {
  border: solid 1px rgba(0, 0, 0, 0.1);
}

.border-top {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.border-bottom {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.border-left {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.border-right {
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-cod-gray {
  border-color: #4d4d4d;
}

.border-pink-lady {
  border-color: #f6f6f6;
}

.border-new-blue {
  border-color: #005493;
}

.border-buff-cream {
  border-color: #fef7e9;
}

.border-nile-blue {
  border-color: #1C354B;
}

.border-coral-red {
  border-color: #F74350;
}

.border-ucla-gold {
  border-color: #FFB600;
}

.border-brand-gold {
  border-color: #d2b46b;
}

.border-blue-lt {
  border-color: #75c5df;
}

.border-blue {
  border-color: #287dbe;
}

.border-blue-dk {
  border-color: #384992;
}

.border-green {
  border-color: #9fc74d;
}

.border-green-dk {
  border-color: #5bb12f;
}

.border-white {
  border-color: #fff;
}

.border-dark {
  border-color: #234;
}

.border-grey-lt {
  border-color: #ececec;
}

.border-grey {
  border-color: #999;
}

.border-pink {
  border-color: #ec66a2;
}

.border-ultra-pink {
  border-color: #ff2f92;
}

.border-purple {
  border-color: #9e579e;
}

.border-red {
  border-color: #cd242a;
}

/* Responsive Utilities */
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.float-none {
  float: none;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

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

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

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

.text-dark {
  color: #234;
}

.hidden {
  display: none;
}

.border-0 {
  border: none;
}

.border-top {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.border-bottom {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.border-left {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.border-right {
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}

.border-top-0 {
  border-top: none;
}

.border-bottom-0 {
  border-bottom: none;
}

.border-left-0 {
  border-left: none;
}

.border-right-0 {
  border-right: none;
}

.before-hidden:before {
  display: none;
}

.after-hidden:after {
  display: none;
}

@media (max-width: 480px) {
  .s-rel {
    position: relative;
  }
  .s-abs {
    position: absolute;
  }
  .s-float-none {
    float: none;
  }
  .s-float-right {
    float: right;
  }
  .s-float-left {
    float: left;
  }
  .s-text-center {
    text-align: center;
  }
  .s-text-left {
    text-align: left;
  }
  .s-text-right {
    text-align: right;
  }
  .s-text-dark {
    color: #234;
  }
  .s-hidden {
    display: none;
  }
  .s-border-0 {
    border: none;
  }
  .s-border-top {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .s-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
  .s-border-left {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
  }
  .s-border-right {
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .s-border-top-0 {
    border-top: none;
  }
  .s-border-bottom-0 {
    border-bottom: none;
  }
  .s-border-left-0 {
    border-left: none;
  }
  .s-border-right-0 {
    border-right: none;
  }
  .s-before-hidden:before {
    display: none;
  }
  .s-after-hidden:after {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 800px) {
  .m-rel {
    position: relative;
  }
  .m-abs {
    position: absolute;
  }
  .m-float-none {
    float: none;
  }
  .m-float-right {
    float: right;
  }
  .m-float-left {
    float: left;
  }
  .m-text-center {
    text-align: center;
  }
  .m-text-left {
    text-align: left;
  }
  .m-text-right {
    text-align: right;
  }
  .m-text-dark {
    color: #234;
  }
  .m-hidden {
    display: none;
  }
  .m-border-0 {
    border: none;
  }
  .m-border-top {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .m-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
  .m-border-left {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
  }
  .m-border-right {
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .m-border-top-0 {
    border-top: none;
  }
  .m-border-bottom-0 {
    border-bottom: none;
  }
  .m-border-left-0 {
    border-left: none;
  }
  .m-border-right-0 {
    border-right: none;
  }
  .m-before-hidden:before {
    display: none;
  }
  .m-after-hidden:after {
    display: none;
  }
}
@media (min-width: 801px) and (max-width: 1024px) {
  .l-rel {
    position: relative;
  }
  .l-abs {
    position: absolute;
  }
  .l-float-none {
    float: none;
  }
  .l-float-right {
    float: right;
  }
  .l-float-left {
    float: left;
  }
  .l-text-center {
    text-align: center;
  }
  .l-text-left {
    text-align: left;
  }
  .l-text-right {
    text-align: right;
  }
  .l-text-dark {
    color: #234;
  }
  .l-hidden {
    display: none;
  }
  .l-border-0 {
    border: none;
  }
  .l-border-top {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .l-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
  .l-border-left {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
  }
  .l-border-right {
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .l-border-top-0 {
    border-top: none;
  }
  .l-border-bottom-0 {
    border-bottom: none;
  }
  .l-border-left-0 {
    border-left: none;
  }
  .l-border-right-0 {
    border-right: none;
  }
  .l-before-hidden:before {
    display: none;
  }
  .l-after-hidden:after {
    display: none;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .xl-rel {
    position: relative;
  }
  .xl-abs {
    position: absolute;
  }
  .xl-float-none {
    float: none;
  }
  .xl-float-right {
    float: right;
  }
  .xl-float-left {
    float: left;
  }
  .xl-text-center {
    text-align: center;
  }
  .xl-text-left {
    text-align: left;
  }
  .xl-text-right {
    text-align: right;
  }
  .xl-text-dark {
    color: #234;
  }
  .xl-hidden {
    display: none;
  }
  .xl-border-0 {
    border: none;
  }
  .xl-border-top {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xl-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xl-border-left {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xl-border-right {
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xl-border-top-0 {
    border-top: none;
  }
  .xl-border-bottom-0 {
    border-bottom: none;
  }
  .xl-border-left-0 {
    border-left: none;
  }
  .xl-border-right-0 {
    border-right: none;
  }
  .xl-before-hidden:before {
    display: none;
  }
  .xl-after-hidden:after {
    display: none;
  }
}
@media (min-width: 1201px) {
  .xxl-rel {
    position: relative;
  }
  .xxl-abs {
    position: absolute;
  }
  .xxl-float-none {
    float: none;
  }
  .xxl-float-right {
    float: right;
  }
  .xxl-float-left {
    float: left;
  }
  .xxl-text-center {
    text-align: center;
  }
  .xxl-text-left {
    text-align: left;
  }
  .xxl-text-right {
    text-align: right;
  }
  .xxl-text-dark {
    color: #234;
  }
  .xxl-hidden {
    display: none;
  }
  .xxl-border-0 {
    border: none;
  }
  .xxl-border-top {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xxl-border-bottom {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xxl-border-left {
    border-left: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xxl-border-right {
    border-right: solid 1px rgba(0, 0, 0, 0.1);
  }
  .xxl-border-top-0 {
    border-top: none;
  }
  .xxl-border-bottom-0 {
    border-bottom: none;
  }
  .xxl-border-left-0 {
    border-left: none;
  }
  .xxl-border-right-0 {
    border-right: none;
  }
  .xxl-before-hidden:before {
    display: none;
  }
  .xxl-after-hidden:after {
    display: none;
  }
}
.nav {
  overflow: hidden;
  margin: 0 auto;
  grid-column: 1/-1;
}
@media only screen and (min-width: 960px) {
  .nav {
    margin-right: 0;
    margin-left: auto;
    grid-column: 2/-1;
  }
}
.nav ul {
  padding: 40px 0;
}
@media only screen and (min-width: 960px) {
  .nav ul {
    padding: 0;
    background-color: #fef7e9;
  }
}
@media only screen and (min-width: 960px) {
  .nav ul {
    background-color: unset;
  }
}
.nav ul li {
  font-size: 16px;
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  position: relative;
}
.nav ul li a {
  border-bottom: 0;
  color: #4d4d4d;
}
.nav ul li a:hover {
  color: #343434;
}
.nav ul li:hover .sub-menu {
  display: block;
}
.nav ul li .sub-menu {
  display: none;
  position: absolute;
  background: #fef7e9;
  z-index: 999999999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.nav ul li .sub-menu li {
  display: block;
  margin: 0;
  background: none;
  padding: 0.5em 1em;
}
.nav ul li .sub-menu li:hover {
  background-color: white;
}
.nav ul li .sub-menu li a {
  font-weight: normal !important;
  font-family: Helvetica, Arial, sans-serif !important;
  white-space: nowrap !important;
  color: #4d4d4d !important;
}
.nav ul li .sub-menu li a:hover {
  color: #343434 !important;
}
.nav ul li:last-child {
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  flex-shrink: 0;
}
.nav ul li:last-child a {
  color: #4d4d4d;
  border-bottom: none;
  text-decoration: none;
}
.nav ul li:last-child a:hover {
  color: #4d4d4d;
  border-bottom: none;
}

.site-header {
  transition: background-color 0.3s, box-shadow 0.3s, position 0.3s, width 0.3s, top 0.3s;
}
.site-header.fixed {
  position: fixed;
  background-color: #fef7e9;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0.9;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header.fixed {
    background-color: rgba(254, 247, 233, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.site-header.fixed.slide-in {
  transform: translateY(0);
  opacity: 1;
}
.site-header .nav-container {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
  padding: clamp(0.25rem, 0.173rem + 0.383vw, 0.5rem) clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.site-header .branding {
  padding-bottom: 0;
}

.admin-bar .site-header.fixed {
  top: 32px;
}
.admin-bar .site-header.fixed.slide-in {
  transform: translateY(0);
}

.header-placeholder {
  width: 100%;
  transition: height 0.3s ease-in-out;
  background: transparent;
  pointer-events: none;
}

.branding {
  position: relative;
  transition: margin 0.3s;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.branding .logo {
  margin: 0 auto 0 0;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  width: 100%;
}
.branding .logo .logo-wrapper {
  width: 100%;
  max-width: 250px;
}
.branding .logo .anniversary-wrapper {
  width: 100%;
  max-width: 80px;
  margin-top: auto;
}
.branding .logo .logo-img, .branding .logo .anniversary-add-on {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  padding: 30px;
}
.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  width: 32px;
  height: 2px;
  background: #4d4d4d;
  transition: all 0.3s;
}
.menu-toggle .hamburger {
  position: relative;
}
.menu-toggle .hamburger:before, .menu-toggle .hamburger:after {
  position: absolute;
  content: "";
  display: block;
}
.menu-toggle .hamburger:before {
  top: -8px;
}
.menu-toggle .hamburger:after {
  top: 8px;
}

.no-js .menu-toggle {
  display: none;
}

.js .nav {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.js .nav ul {
  text-align: center;
  margin: 0;
}

.nav-open .menu-toggle .hamburger {
  background: transparent;
}
.nav-open .menu-toggle .hamburger:before, .nav-open .menu-toggle .hamburger:after {
  top: 0;
}
.nav-open .menu-toggle .hamburger:before {
  transform: rotate(45deg);
}
.nav-open .menu-toggle .hamburger:after {
  transform: rotate(-45deg);
}
.nav-open .nav {
  max-height: 1000px;
}

@media only screen and (min-width: 960px) {
  .menu-toggle {
    display: none;
    transition: all ease-in-out 0.2s;
  }
  .site-header .nav-container {
    flex-direction: row;
  }
  .site-header .branding {
    transition: all ease-in-out 0.2s;
  }
  .js .nav,
  .nav {
    max-height: 1000px;
  }
  .js .nav ul,
  .nav ul {
    transition: all ease-in-out 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  }
  .js .nav ul li,
  .nav ul li {
    display: inline-block;
  }
  .js .nav ul li:not(:last-child),
  .nav ul li:not(:last-child) {
    padding-bottom: 0;
  }
  .js .nav ul li:last-child,
  .nav ul li:last-child {
    margin-bottom: 0;
  }
}
.hero {
  background-color: #fef7e9;
}
.hero__project-type-wrapper {
  margin-top: 20px;
  padding: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.hero__project-type-title {
  font-size: clamp(1.33rem, 1.202rem + 0.642vw, 1.75rem);
  text-align: center;
  clear: both;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: clamp(2rem, 1.389rem + 3.06vw, 4rem) clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.hero__project-type-description p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.924rem + 0.382vw, 1.25rem);
  text-wrap: pretty;
  font-weight: 600;
  text-align: center;
}

.hero__title {
  font-size: clamp(1.75rem, 1.521rem + 1.147vw, 2.5rem);
  text-align: center;
  clear: both;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: clamp(2rem, 1.389rem + 3.06vw, 4rem) clamp(1rem, 0.694rem + 1.53vw, 2rem);
}

.hero__subtitle {
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: 40px;
}

.hero__hr {
  width: 90px;
  border: 1px #4d4d4d solid;
  margin-bottom: 55px;
}

.hero__title:empty, .hero__subtitle:empty {
  display: none;
}

.hero__title:empty ~ .hero__hr {
  display: none;
}

.skew {
  height: 0;
  overflow: hidden;
}
.skew:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.skew--start {
  width: 100%;
  margin-top: -40px;
  padding-bottom: 10%;
}
.skew--start:after {
  border-right: 5000px solid transparent;
  border-bottom: 500px solid #000;
}

.skew--end {
  position: absolute;
  top: 0;
  width: 0;
  padding-left: 100%;
  padding-top: 10%;
}
.skew--end:after {
  margin-left: -5000px;
  margin-top: -500px;
  border-left: 5000px solid transparent;
  border-top: 500px solid #fef7e9;
}

.skew-filler {
  width: 100%;
  height: 51px;
  background-color: #fef7e9;
}

.content {
  position: relative;
  padding-bottom: 117px;
}

.content__title {
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 0 0 26px 0;
}
.content__title + hr {
  width: 90px;
  border: 1px #f6f6f6 solid;
  margin-bottom: 55px;
}
@media only screen and (min-width: 801px) {
  .content__title {
    padding: 0 0 26px 0;
  }
}

.category {
  display: block !important;
}
@media only screen and (min-width: 440px) {
  .category {
    display: inline-block !important;
  }
}

.category .slash {
  display: none;
}

.category + .category .slash {
  display: none;
}
@media only screen and (min-width: 440px) {
  .category + .category .slash {
    display: inline-block;
    padding-left: 2px;
    padding-right: 6px;
  }
}

.thank-you-wrapper {
  width: 100%;
  clear: both;
}

.thank-you {
  background-color: #F74350;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.125em;
  color: #f6f6f6;
  padding: 20px;
  padding-left: 50px;
  min-width: 280px;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.thank-you #close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  font-family: Arial;
}
.thank-you #close:hover {
  cursor: pointer;
}

.content--home {
  padding-bottom: 0;
}
.content--home .home-content {
  padding: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.content--home .services__description {
  text-wrap: balance;
  font-weight: bold;
}
.content--home .services__year {
  font-weight: bold;
}
.content--home .services {
  display: grid;
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 1.389rem + 3.06vw, 4rem);
  justify-items: center;
}
@media only screen and (min-width: 1100px) {
  .content--home .services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.content--home .services__item {
  width: 100%;
}
.content--home .services a {
  color: #f6f6f6;
  text-decoration: none;
}
.content--home .services a:hover .services__title {
  color: #FFB600;
}
.content--home .services a:hover .services__img-container {
  color: #FFB600;
}
.content--home .services__title {
  color: #4d4d4d;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  transition: color 0.3s ease-in-out;
}
.content--home .services__img-container {
  position: relative;
  aspect-ratio: 2/1;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 1rem;
  color: #ff2f92;
  transition: color 0.3s ease-in-out;
}
.content--home .services__img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--home .services__img-container svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--home .services__about {
  margin-top: 50px;
}
@media only screen and (min-width: 801px) {
  .content--home .services__about {
    margin-top: 90px;
  }
}
.content--home .services__year {
  letter-spacing: 4px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.content--home .services__description {
  font-family: Helvetica, Arial, sans-serif;
}
.content--home .clients-section {
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem) 0;
}
.content--home .box-center.projects {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
@media only screen and (min-width: 481px) {
  .content--home .box-center.projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 801px) {
  .content--home .box-center.projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
.content--home .box-center.projects > a {
  display: block;
  color: #fff;
  aspect-ratio: 4/3;
}
.content--home .projects-section {
  padding: clamp(2rem, 1.389rem + 3.06vw, 4rem) 0;
  background-color: #005493;
}
.content--home .projects {
  padding: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.content--home .projects .project__icon--mini {
  width: 100%;
  max-width: 40px;
  color: #FFB600;
  aspect-ratio: 1.15/1;
}
.content--home .projects .project__icon--mini--container {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.content--home .projects .project__icon--mini svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--home .projects .project__icons-container {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.content--home .projects .overflow {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.content--home .projects .overflow img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.content--home .projects .project__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 2;
}
.content--home .projects .overflow:hover .project__caption {
  display: block;
}
.content--home .projects a:hover .overflow::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.content--home .projects .project__caption img {
  height: 20px;
  width: 20px;
}
.content--home .clients {
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
.content--home .clients .client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  justify-items: center;
  gap: clamp(2rem, 1.389rem + 3.06vw, 4rem);
}
@media only screen and (min-width: 960px) {
  .content--home .clients .client-logos {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.content--home .clients .client-logos .client-logo {
  text-align: center;
  aspect-ratio: 3/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content--home .clients .client-logos .client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--home .associations {
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: clamp(2rem, 1.389rem + 3.06vw, 4rem);
  margin-bottom: clamp(2rem, 1.389rem + 3.06vw, 4rem);
}
.content--home .associations .association-logos {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 1.389rem + 3.06vw, 4rem);
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(2rem, 1.389rem + 3.06vw, 4rem);
}
.content--home .associations .association-logo {
  text-align: center;
  aspect-ratio: 3/1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(45%, 300px);
  min-width: 120px;
}
@media only screen and (min-width: 768px) {
  .content--home .associations .association-logo {
    width: min(33%, 300px);
    aspect-ratio: 4/1;
  }
}
.content--home .associations .association-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}
.content--home .associations .association-logo--scale-up {
  transform: scale(1.5);
}
@media only screen and (min-width: 768px) {
  .content--home .associations .association-logo--scale-up {
    transform: scale(2);
  }
}

.content--work {
  overflow-x: hidden;
  width: 100%;
}
@media only screen and (min-width: 801px) and (max-width: 1023px) {
  .content--work {
    max-width: 800px;
  }
}
.content--work .services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  overflow: visible;
}
@media only screen and (min-width: 801px) {
  .content--work .services {
    grid-template-columns: repeat(5, 1fr);
  }
}
.content--work .services__img-container {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 2/1;
  color: #ff2f92;
  margin-bottom: 0.5rem;
}
.content--work .services__img-container svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--work .services__img-container img {
  opacity: 0.35;
}
.content--work .services__img-container img:hover {
  opacity: 0.5;
  cursor: pointer;
}
.content--work .services__img-container img.active {
  opacity: 1;
}
.content--work .services__img-container:hover {
  cursor: pointer;
  color: #FFB600;
}
.content--work .services__filter {
  position: absolute;
  z-index: -1000;
  overflow: visible;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.content--work .services__filter:checked ~ .services__img-container {
  color: #FFB600;
}
.content--work .services .project__type-title {
  font-size: clamp(1rem, 0.924rem + 0.382vw, 1.25rem);
  text-align: center;
}
.content--work .projects {
  margin-top: clamp(2rem, 1.389rem + 3.06vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  width: 1920px;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  min-height: auto;
  opacity: 0;
  animation: fadeInProjects 0.6s ease-in-out 0.1s forwards;
}
@media only screen and (min-width: 481px) {
  .content--work .projects {
    grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  }
}
@media only screen and (min-width: 1024px) {
  .content--work .projects {
    grid-template-columns: repeat(3, 1fr);
  }
}
.content--work .projects .project {
  position: relative;
  opacity: 0.8;
  transition: opacity 0.3s;
  aspect-ratio: 4/3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.content--work .projects .project:hover {
  opacity: 1;
}
.content--work .projects .project:hover .project__caption {
  opacity: 1;
}
.content--work .projects .project a {
  color: #f6f6f6;
}
.content--work .projects .project .overflow {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 4px;
}
.content--work .projects .project__caption {
  width: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000",GradientType=0 ); /* IE6-9 */
  position: absolute;
  transition: opacity 0.3s;
  left: 0;
  opacity: 0;
  z-index: 2;
  bottom: 0;
}
.content--work .projects .project__caption img {
  max-width: 27px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.content--work .projects .project__caption img:last-child {
  margin-right: 0;
}
.content--work .projects .project__caption img.adjusted {
  margin-right: 9px;
}
.content--work .projects .project__caption h3 {
  font-size: clamp(1rem, 0.924rem + 0.382vw, 1.25rem);
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.1;
  margin-bottom: 3px;
}
.content--work .projects .project__caption h4 {
  font-size: 0.875rem;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.content--work .projects .project__icon-container--mini {
  margin-bottom: 0.5rem;
  width: 100%;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.content--work .projects .project__icon--mini {
  width: 100%;
  max-width: 40px;
  color: #FFB600;
  aspect-ratio: 1.15/1;
}
.content--work .projects .project__icon--mini svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content--work .projects .project__type-title {
  font-size: clamp(1rem, 0.962rem + 0.191vw, 1.125rem);
}
.content--work .projects .project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content--work .single {
  margin-top: 40px;
  overflow: hidden;
}
.content--work .single__logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.content--work .single__logo img {
  max-width: 120px;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
  object-fit: contain;
}
.content--work .single img {
  width: 100%;
}
.content--work .single__back {
  letter-spacing: 2px;
  font-size: 0.875rem;
  color: #6a6a6a;
}
.content--work .single__back a {
  color: #aaaaaa;
  text-decoration: none;
}
.content--work .single__back a:hover {
  color: #f6f6f6;
}
.content--work .single__footer-wrapper a {
  text-decoration: none;
  color: #010101;
}
.content--work .single__footer-wrapper a:hover, .content--work .single__footer-wrapper a:hover .single__footer:before, .content--work .single__footer-wrapper a:hover .single__footer:after {
  color: #4d4d4d;
}
.content--work .single__footer {
  display: inline-block;
}
.content--work .single__footer:before, .content--work .single__footer:after {
  vertical-align: middle;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.875em;
  display: none;
  color: #010101;
}
@media only screen and (min-width: 801px) {
  .content--work .single__footer:before, .content--work .single__footer:after {
    display: inline-block;
  }
}
.content--work .single__footer a {
  text-decoration: none;
}
.content--work .single__footer--left:before {
  content: "<";
}
.content--work .single__footer--right:after {
  content: ">";
}
.content--work .single__prev, .content--work .single__next {
  display: inline-block;
  vertical-align: middle;
}
.content--work .single__prev h5, .content--work .single__next h5 {
  font-family: Helvetica, Arial, sans-serif;
}
.content--work .single__prev span, .content--work .single__next span {
  letter-spacing: 2px;
  font-size: 12px;
}
.content--work .single__title {
  font-family: Helvetica, Arial, sans-serif;
}
.content--work .single__desc {
  font-family: Helvetica, Arial, sans-serif;
}
.content--work .single__meta h4 {
  font-size: 1em;
}
.content--work .single__meta .single__logo {
  margin-top: 20px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .content--work .single__meta .single__logo {
    text-align: left;
  }
}
.content--work .clients {
  overflow: hidden;
}
.content--work .clients img {
  max-height: 110px;
  max-width: 110px;
}
@media only screen and (min-width: 481px) {
  .content--work .clients div:nth-of-type(2n+1) {
    clear: both;
  }
  .content--work .clients img {
    max-height: 100px;
  }
}
@media only screen and (min-width: 801px) {
  .content--work .clients div:nth-of-type(2n+1) {
    clear: none;
  }
  .content--work .clients div:nth-of-type(4n+1) {
    clear: both;
  }
  .content--work .clients img {
    transform: translate(-50%, -50%);
    margin-top: 50%;
    margin-left: 50%;
  }
}
@media only screen and (max-width: 800px) {
  .content--work .bio-wrapper {
    max-width: 399px;
  }
}
.content--work .bio__photo {
  position: relative;
}
@media only screen and (max-width: 800px) {
  .content--work .bio__photo {
    max-height: 300px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 801px) {
  .content--work .bio__photo {
    max-height: 260px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 801px) {
  .content--work .bio__photo {
    max-height: 320px;
    overflow: hidden;
  }
}
.content--work .bio__overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 800px) {
  .content--work .bio__overlay {
    background: #151515;
    height: 10px;
  }
}
@media only screen and (min-width: 801px) {
  .content--work .bio__overlay {
    background: #151515;
    height: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  .content--work .bio__overlay {
    background: #151515;
    height: 5px;
  }
}
.content--work .bio__p {
  margin-top: 16px;
}
.content--work .bio__container h2, .content--work .bio__container h3 {
  color: #FFB600;
  display: block;
}
@media only screen and (min-width: 801px) {
  .content--work .bio__container h2, .content--work .bio__container h3 {
    display: inline-block;
  }
}
.content--work .bio__container h2 {
  font-size: 2em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.content--work .bio__container h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1em;
  margin-top: 16px;
  margin-left: 0;
}
@media only screen and (min-width: 801px) {
  .content--work .bio__container h3 {
    margin-left: 16px;
    font-size: 0.8em;
  }
}
.content--work .bio__container p {
  line-height: 1.625;
}
.content--work .bio__container--no-image {
  transform: translateX(-50%);
  margin-left: 50%;
}
@media only screen and (min-width: 801px) {
  .content--work .bio__container p {
    font-size: 1.125em;
  }
}

.content--team .team {
  display: none;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.content--team .team.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
@media only screen and (min-width: 801px) {
  .content--team .team.active {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.content--team .collaborators {
  display: none;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.content--team .collaborators.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
@media only screen and (min-width: 801px) {
  .content--team .collaborators.active {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.team-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 600px) {
  .team-toggle {
    flex-direction: row;
  }
}

/*Yoast FAQ page styling*/
.schema-faq-section {
  margin-top: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}
.schema-faq-question {
  font-size: clamp(1.33rem, 1.202rem + 0.642vw, 1.75rem);
  font-weight: bold;
  margin-top: 1.75em;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-wrap: balance;
  display: block;
}

/*PWEP Template Make Icon Active*/
.page-template-template-pwep .services__img-container--active {
  color: #FFB600;
}

/*Archive Projects Template Make Icon Active*/
.content--work .services__img-container--active {
  color: #FFB600;
}

/* View All Projects Link */
.view-all-projects {
  display: inline-block;
  background-color: transparent;
  color: #4d4d4d;
  text-decoration: none;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.view-all-projects:hover {
  text-decoration: underline;
}

@keyframes fadeInProjects {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@supports (-webkit-touch-callout: none) {
  .projects {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: visible;
    overflow-x: hidden;
  }
  .projects .project {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.projects.loading {
  overflow: hidden;
}
.projects .project {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.projects .project .overflow {
  max-width: 100%;
}

footer {
  position: relative;
  clear: both;
}

.footer__email, .footer__address {
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .footer__email, .footer__address {
    min-height: 450px;
  }
}

.contact-form-container {
  position: relative;
  margin-top: 5%;
}

.mz-footer {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-items: center;
  min-height: 600px;
}
@media only screen and (min-width: 767px) {
  .mz-footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 960px) minmax(0, 960px) minmax(0, 1fr);
  }
}
.mz-footer h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.33rem, 1.202rem + 0.642vw, 1.75rem);
}
.mz-footer__left-filler {
  grid-column: 1;
  grid-row: 1;
  background-color: #005493;
  order: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 767px) {
  .mz-footer__left-filler {
    grid-column: 1/3;
  }
}
.mz-footer__right-filler {
  grid-column: 1;
  grid-row: 2;
  background-color: #d2b46b;
  order: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 767px) {
  .mz-footer__right-filler {
    grid-column: 3/5;
    grid-row: 1;
  }
}
.mz-footer__contact {
  grid-column: 1;
  grid-row: 1;
  order: 1;
  margin-top: 5vw;
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  z-index: 9999;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .mz-footer__contact {
    grid-column: 2/3;
  }
}
.mz-footer__contact-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: end;
}
.mz-footer__contact .wpcf7 {
  grid-column: 1;
  grid-row: 1;
}
.mz-footer__contact .socials-container {
  grid-column: 1;
  grid-row: 1;
}
.mz-footer__visit {
  padding: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  grid-column: 1;
  grid-row: 2;
  order: 1;
  margin-top: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
@media only screen and (min-width: 767px) {
  .mz-footer__visit {
    grid-column: 3/4;
    grid-row: 1;
  }
}
.mz-footer__visit p {
  margin: 0 auto;
  font-size: clamp(1rem, 0.924rem + 0.382vw, 1.25rem);
}
.mz-footer__visit a {
  color: #4d4d4d;
}
.mz-footer__item-container {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 0;
}
.mz-footer__copyright {
  grid-column: 1;
  grid-row: 3;
  order: 2;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
  height: 100%;
  background-color: #4d4d4d;
  padding: clamp(0.25rem, 0.173rem + 0.383vw, 0.5rem) clamp(1rem, 0.694rem + 1.53vw, 2rem);
}
@media only screen and (min-width: 767px) {
  .mz-footer__copyright {
    grid-column: 1/6;
    grid-row: 2;
  }
}
.mz-footer__copyright-container {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  .visit {
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
    max-width: 400px;
  }
}
.visit h5, .visit p {
  font-size: 18px;
  letter-spacing: 1px;
}
.visit h5 {
  margin-bottom: 25px;
}
@media only screen and (min-width: 801px) {
  .visit {
    top: 55%;
  }
}
@media only screen and (min-width: 1025px) {
  .visit h5, .visit p {
    font-size: 22px;
  }
}

.wpcf7-form {
  width: 100%;
  max-width: 400px;
}
@media only screen and (max-width: 1024px) {
  .wpcf7-form {
    top: 55%;
  }
}
.wpcf7-form h2 {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1025px) {
  .wpcf7-form h5 {
    font-size: 22px;
  }
}
.wpcf7-form input, .wpcf7-form textarea {
  border: none;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #4d4d4d;
}
.wpcf7-form input:focus, .wpcf7-form input:active, .wpcf7-form textarea:focus, .wpcf7-form textarea:active {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #FFB600;
  box-shadow: 0 0 0 2px #FFB600;
  color: #4d4d4d;
}
.wpcf7-form input:last-child {
  margin-bottom: 0;
}
.wpcf7-form textarea {
  margin-bottom: 0;
  resize: horizontal;
  max-height: 300px;
}
.wpcf7-form input.contact__submit {
  padding: 16px 34px;
  font-size: 16px;
  letter-spacing: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}

button[data-balloon] {
  overflow: visible;
}

[data-balloon] {
  position: relative;
}

[data-balloon]:before,
[data-balloon]:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.18s ease-out 0.18s;
  transition: all 0.18s ease-out 0.18s;
  bottom: 100%;
  left: 50%;
  position: absolute;
  z-index: 10;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}

[data-balloon]:after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(data-balloon);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5em 1em;
  white-space: nowrap;
  margin-bottom: 11px;
}

[data-balloon]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  content: "";
  margin-bottom: 5px;
}

[data-balloon]:hover:before,
[data-balloon][data-balloon-visible]:before,
[data-balloon]:hover:after,
[data-balloon][data-balloon-visible]:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[data-balloon].font-awesome:after {
  font-family: FontAwesome;
}

[data-balloon][data-balloon-break]:after {
  white-space: pre;
}

[data-balloon-pos=down]:before,
[data-balloon-pos=down]:after {
  bottom: auto;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -10px);
  -ms-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
}

[data-balloon-pos=down]:after {
  margin-top: 2px;
}

[data-balloon-pos=down]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[data-balloon-pos=down]:hover:before,
[data-balloon-pos=down][data-balloon-visible]:before,
[data-balloon-pos=down]:hover:after,
[data-balloon-pos=down][data-balloon-visible]:after {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

[data-balloon-pos=left]:before,
[data-balloon-pos=left]:after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translate(10px, -50%);
  -ms-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
}

[data-balloon-pos=left]:after {
  margin-right: 11px;
}

[data-balloon-pos=left]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[data-balloon-pos=left]:hover:before,
[data-balloon-pos=left][data-balloon-visible]:before,
[data-balloon-pos=left]:hover:after,
[data-balloon-pos=left][data-balloon-visible]:after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[data-balloon-pos=right]:before,
[data-balloon-pos=right]:after {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translate(-10px, -50%);
  -ms-transform: translate(-10px, -50%);
  transform: translate(-10px, -50%);
}

[data-balloon-pos=right]:after {
  margin-left: 11px;
}

[data-balloon-pos=right]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  background-size: 100% auto;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[data-balloon-pos=right]:hover:before,
[data-balloon-pos=right][data-balloon-visible]:before,
[data-balloon-pos=right]:hover:after,
[data-balloon-pos=right][data-balloon-visible]:after {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[data-balloon-length]:after {
  white-space: normal;
}

[data-balloon-length=small]:after {
  width: 80px;
}

[data-balloon-length=medium]:after {
  width: 150px;
}

[data-balloon-length=large]:after {
  width: 260px;
}

[data-balloon-length=xlarge]:after {
  width: 90vw;
}

@media screen and (min-width: 768px) {
  [data-balloon-length=xlarge]:after {
    width: 380px;
  }
}
[data-balloon-length=fit]:after {
  width: 100%;
}

@keyframes fade1 {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade3 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade4 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.s-home .hero__slider {
  clear: both;
  display: block;
  position: relative;
  max-width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0 auto 70px auto;
}
@media only screen and (min-width: 960px) {
  .s-home .hero__slider {
    min-height: 450px;
    height: 55vh;
  }
}

.s-home .hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.s-home .hero__slide--1 {
  background: url("/ng/wp-content/themes/miziker/img/hero--home--1.jpg");
  background-size: cover;
  background-position: center;
  animation: fade1 32s infinite;
}

.s-home .hero__slide--2 {
  background: url("/ng/wp-content/themes/miziker/img/hero--home--2.jpg");
  background-size: cover;
  background-position: center;
  animation: fade2 32s infinite;
}

.s-home .hero__slide--3 {
  background: url("/ng/wp-content/themes/miziker/img/hero--home--3.jpg");
  background-size: cover;
  background-position: top center;
  animation: fade3 32s infinite;
}

.s-home .hero__slide--4 {
  background: url("/ng/wp-content/themes/miziker/img/hero--home--4.jpg");
  background-size: cover;
  background-position: center;
  animation: fade4 32s infinite;
}

.s-13 h1, .s-13 h2, .s-13 h3 {
  font-family: "Butcherman", cursive;
}

.s-13 .hero__title {
  font-size: 80px;
  color: #FFB600;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(top, #C6652C, #FFB600); /* For pre-releases of IE 10*/
  background-image: -o-linear-gradient(top, #C6652C, #FFB600); /* For old Opera (11.1 to 12.0) */
  -webkit-background-clip: text;
}

.s-13 .branding .logo a {
  background: url("/ng/wp-content/themes/miziker/img/logo--13.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.s-13 .hero__divider {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 240px;
  height: 50px;
}

.s-13 .ellipse {
  position: absolute;
  background: radial-gradient(ellipse, transparent, transparent 7px, #fff 7px, #fff 10px, transparent 11px);
  background-size: 36px 40px;
  width: 240px;
  height: 20px;
}

.s-13 .ellipse--2 {
  top: 20px;
  left: 18px;
  background-position: 0px -20px;
}

.s-13 .hero__slider {
  clear: both;
  display: block;
  position: relative;
  max-width: 100%;
  min-height: 350px;
  height: calc(100vh - 62px);
  overflow: hidden;
  margin: 0 auto 70px auto;
}
@media only screen and (min-width: 960px) {
  .s-13 .hero__slider {
    min-height: 500px;
    height: calc(100vh - 94px);
  }
}

.s-13 .hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.s-13 .hero__slide--1 {
  background: url("/ng/wp-content/themes/miziker/img/hero--13--1.jpg");
  background-size: cover;
  background-position: center;
  animation: fade1 32s infinite;
}

.s-13 .hero__slide--2 {
  background: url("/ng/wp-content/themes/miziker/img/hero--13--2.jpg");
  background-size: cover;
  background-position: center;
  animation: fade2 32s infinite;
}

.s-13 .hero__slide--3 {
  background: url("/ng/wp-content/themes/miziker/img/hero--13--3.jpg");
  background-size: cover;
  background-position: center;
  animation: fade3 32s infinite;
}

.s-13 .hero__slide--4 {
  background: url("/ng/wp-content/themes/miziker/img/hero--13--4.jpg");
  background-size: cover;
  background-position: center;
  animation: fade4 32s infinite;
}

.s-13 .hero__timer {
  z-index: 9999;
  max-width: 1280px;
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.s-13 .simply-section {
  width: 25%;
  float: left;
  text-align: center;
}

.s-13 .simply-section div {
  display: inline-block;
  border-radius: 100%;
  background: #000;
  width: 64px;
  height: 64px;
}
@media only screen and (min-width: 960px) {
  .s-13 .simply-section div {
    width: 160px;
    height: 160px;
  }
}

.s-13 .simply-amount {
  font-family: "Butcherman", cursive;
  color: #FFB600;
  -webkit-text-fill-color: transparent;
  background-image: -webkit-linear-gradient(top, #C6652C, #FFB600); /* For pre-releases of IE 10*/
  background-image: -o-linear-gradient(top, #C6652C, #FFB600); /* For old Opera (11.1 to 12.0) */
  -webkit-background-clip: text;
  margin-top: 14px;
  line-height: 1;
  font-size: 24px;
  display: block;
}
@media only screen and (min-width: 960px) {
  .s-13 .simply-amount {
    margin-top: 53px;
    line-height: 0.8;
    font-size: 56px;
  }
}

.s-13 .simply-word {
  display: block;
  color: #FFB600;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 1px;
}
@media only screen and (min-width: 960px) {
  .s-13 .simply-word {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

.s-13 .footer__email {
  background: #C6652C !important;
}

.s-13 .footer__address {
  background: #FFB600 !important;
  color: #000;
}

.postid-72 .single__title {
  display: block;
}

.loading-indicator {
  text-align: center;
  padding: 40px 20px;
  margin: 40px 0;
}

.loading-spinner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #333;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.load-more-trigger {
  opacity: 0;
  pointer-events: none;
}

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

.project.loading {
  opacity: 0;
}

@media (max-width: 768px) {
  .loading-indicator {
    padding: 30px 15px;
    margin: 30px 0;
  }
  .loading-spinner {
    font-size: 14px;
  }
  .spinner {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }
}
/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: "lightcase";
  src: url("fonts/lightcase.eot?55356177");
  src: url("fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("fonts/lightcase.woff?55356177") format("woff"), url("fonts/lightcase.ttf?55356177") format("truetype"), url("fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*=lightcase-icon-]:before {
  font-family: "lightcase", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: "\e800";
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: "\e801";
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: "\e802";
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: "\e803";
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: "\e804";
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: "\e805";
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case,
  html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #151515;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content,
  html[data-lc-type=ajax] #lightcase-content,
  html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}
/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #fff;
  }
}
/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}
/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}
/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading,
#lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-],
a[class*=lightcase-icon-]:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-] > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*=lightcase-icon-]:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*=lightcase-icon-]:hover {
  color: #aaa;
  text-shadow: none;
}

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-prev {
  left: 15px;
}

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-next {
  right: 15px;
}

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*=lightcase-icon-].lightcase-icon-pause,
a[class*=lightcase-icon-].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-].lightcase-icon-pause,
  a[class*=lightcase-icon-].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*=lightcase-icon-]:hover,
  #lightcase-case:hover ~ a[class*=lightcase-icon-] {
    opacity: 1;
  }
}
/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.entry-title a {
  color: inherit;
  text-decoration: none;
}

.entry-footer .entry-meta a {
  color: #005493;
  text-decoration: none;
}

a.read-more {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  margin: 1em 0;
}

.widget-title {
  font-size: 1.25em;
  text-transform: uppercase;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget a {
  color: inherit;
}

.widget a:hover {
  text-decoration: underline;
}

.widget {
  margin: 0 0 3em 15%;
}
@media (max-width: 800px) {
  .widget {
    margin: 0 3em 3em;
  }
}

.single .post-thumbnail img {
  max-height: 50vh;
  width: 100%;
  margin: 0 auto 3em;
  display: block;
}

.widget input[type=submit] {
  color: #000;
  margin: 0.15em 0;
  width: 50%;
}

input.search-submit {
  display: none;
}

.single .entry-title {
  margin-top: 1em;
}

.page .entry-content {
  padding: 0 clamp(1rem, 0.694rem + 1.53vw, 2rem);
}

.post.type-post {
  margin-bottom: 2em;
  overflow: hidden;
}

.blog h1,
.blog h2,
.blog h3,
.single-post h1,
.single-post h2,
.single-post h3 {
  font-family: Helvetica, Arial, sans-serif;
}

blockquote {
  padding: 1em;
  border-left: 4px solid #666;
  margin: 1em 2em;
}

#secondary input {
  width: 90% !important;
  margin: 0.5em 0;
}

#subscribe-email,
#subscribe-submit {
  padding: 0;
}

.clients {
  clear: both;
}

.home .featured-post .post-title a {
  color: #fff;
  text-decoration: none;
  font-size: 80%;
  text-transform: uppercase;
}
.home .featured-post .post-content {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.home .featured-post .read-more {
  color: #FFB600;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .grid-fifths {
    width: 20%;
  }
}
.pop-up-bio {
  display: none;
}

.team-member {
  position: relative;
}

.team-member .image-wrapper,
.popup-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.team-member .image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.team-member a {
  color: #FFB600;
}

p strong {
  font-family: Helvetica, Arial, sans-serif;
}

.popup-image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  position: absolute;
  object-fit: cover;
}

div.team,
div.collaborators {
  display: none;
}
div.team.active,
div.collaborators.active {
  display: block;
}

.team-tab {
  text-decoration: none;
  text-transform: uppercase;
  color: #4d4d4d;
  display: inline-block;
  padding: 0 1em;
  margin-top: 0;
  line-height: 1;
}

.team-tab.active {
  color: #FFB600;
}

.content--work .pre-click .services__img-container img {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .branding .logo a {
    width: 240px;
    height: 38px;
  }
}
/*Socials for Footer Form */
.socials-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}

.socials {
  width: 340px;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}

.socials-icon {
  height: 20px;
  width: 20px;
  margin: 0 5px;
  z-index: 1;
}

.socials img {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

.socials a {
  z-index: 1;
}

/* .socials-icon svg {
    stroke: #FFB600;
    fill: #FFB600;
}

.socials-icon svg:hover {
    stroke: #FFF;
    fill: #FFF;
} */
/* Infinite Scroll Loading Indicator Styles */
.loading-indicator {
  text-align: center;
  padding: 40px 20px;
  margin: 40px 0;
}

.loading-spinner {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #333;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.load-more-trigger {
  opacity: 0;
  pointer-events: none;
}

/* Smooth fade-in animation for newly loaded projects */
.project {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.project.loading {
  opacity: 0;
}

/* Responsive adjustments for loading indicator */
@media (max-width: 768px) {
  .loading-indicator {
    padding: 30px 15px;
    margin: 30px 0;
  }
  .loading-spinner {
    font-size: 14px;
  }
  .spinner {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }
}

/*# sourceMappingURL=style.css.map */
