@charset "UTF-8";
/***** TOOLKIT CSS *****/
/***** Variables *****/
/**********
Ceaser

Easing an animation timing-functions similar to Flash & jQuery animations
Source: https://matthewlein.com/ceaser/
**********/
/**
 * #CEASAR-EASING-ANIMATION
 * Classic Penner equations popularly found in Flash and jQuery.
 * https://github.com/matthewlein/Ceaser
 * http://matthewlein.com/ceaser/
 */
/*------------------------------------*\
    #CEASAR-EASING-ANIMATION
\*------------------------------------*/
/***** Functions *****/
/**********
Function: Map Deep Get

Recursively get items from a Sass map
Source: https://css-tricks.com/snippets/sass/deep-getset-maps/
**********/
/**********
Function: View Width

Helps set view width to a breakpoint.
Use case: Scale font down at a certain width, best used if you have a desktop font size and want to scale it down throughout mobile
**********/
/***** Mixins *****/
/**********
Mixing: Breakpoint

Breakpoint mixin for width based media queries
By default, accepts a single variable (eg. bp(1000px)) and sets min-width media query
Two variables can be passed to create a min-max range (eg. bp(400px, 1000px))
**********/
/**********
Mixin: Object Fit Images

Polyfill for obbject fit, primarily only effects IE browsers
Source: https://github.com/bfred-it/object-fit-images
**********/
/*
This mixin can be used to set the object-fit:
@include object-fit(contain);

or object-fit and object-position:
@include object-fit(cover, top);
*/
/***** Generics *****/
/**********
CSS Reset

Eric Meyer's oldie but a goodie with additional modifications
Source: http://meyerweb.com/eric/tools/css/reset/
**********/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

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

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
a img {
  border: none;
}

/**********
Form Reset

The base of this reset is based on anothyshort's Super Form Reset but make some additional modifications
Source: https://gist.github.com/anthonyshort/552543
**********/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
input, label, select, button, textarea {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Arial;
  /* Browsers have different default form fonts */
  font-size: 13px;
  line-height: 1;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input, textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button, input[type=reset], input[type=button], input[type=submit], input[type=checkbox], input[type=radio], select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox], input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button, input[type=reset], input[type=button], input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
  /* Move the label to the top */
  vertical-align: top;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-touch-callout: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

.w {
  position: relative;
}
.w--test {
  position: sticky;
  top: 60px;
  z-index: 900;
}
.w--body {
  max-width: 4600px;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}
@media (min-width: 0) and (max-width: 1199px) {
  .w--body:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8000;
    display: block;
    opacity: 0;
    width: 100%;
    height: 0;
    content: "";
    background-color: #434d3e;
  }
  .w--body.js-toggled:after {
    opacity: 1;
    height: 100%;
    transition: 0.5s ease opacity;
  }
}
.w--nav {
  top: 0;
  z-index: 6000;
  background-color: white;
}
@media (min-width: 0) and (max-width: 1199px) {
  .w--nav {
    position: sticky;
  }
}
.w--nav:before {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 10px;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  content: "";
}
.w--nav:after {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 2px);
  pointer-events: none;
  content: "";
  background-color: white;
}
.js-toggled .w--nav {
  z-index: 9000;
}
.w--content {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 0) and (max-width: 839px) {
  .w--content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 840px) {
  .w--content {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .w--space, .w--bio {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) {
  .w--space, .w--bio {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .w--space-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .w--space-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .w--space-2 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .w--spacetop {
    padding-top: 40px;
  }
}
@media (min-width: 840px) {
  .w--spacetop {
    padding-top: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .w--spacebtm {
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) {
  .w--spacebtm {
    padding-bottom: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .w--tile {
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .w--tile {
    padding-bottom: 80px;
  }
}
@media (min-width: 840px) {
  .w--half:after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    display: block;
    width: 50%;
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}

.w--black {
  background-color: #434d3e;
}
.w--light, .w--bio {
  background-color: #f5f5f5;
}
.w--primary {
  background-color: #ee2e24;
}
.w--secondary {
  background-color: #ee2e24;
}
.w--lightrotate .w--light:nth-child(odd), .w--lightrotate .w--bio:nth-child(odd) {
  background-color: white;
}
.w--lightrotate .w--light:nth-child(odd) .block__img, .w--lightrotate .w--bio:nth-child(odd) .block__img {
  background-color: #f5f5f5;
}

@media (min-width: 0) and (max-width: 839px) {
  .w--bio {
    padding-top: 0;
    padding-bottom: 40px;
    background-color: white;
  }
}

.space, .s {
  position: relative;
  width: 100%;
}
.space--1, .s--1 {
  margin-bottom: 20px;
}
.space--2, .s--2 {
  margin-bottom: 40px;
}
.space--3, .s--3 {
  margin-bottom: 60px;
}
.space--4, .s--4 {
  margin-bottom: 80px;
}
.space--line, .s--line {
  border-top: 2px solid #d9dbd8;
}

.grid {
  display: grid;
}
.grid[data-size=thumb-2] {
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}
.grid[data-size=thumb-3] {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=thumb-3] {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=thumb-3] {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=thumb-3] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=esg] {
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=esg] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=esg] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=press] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=press] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=press] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=news] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=news] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=news] {
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
  }
}
.grid[data-size=content] {
  display: grid;
  grid-row-gap: 40px;
  grid-column-gap: 80px;
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=content] {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=content] {
    grid-template-columns: 1fr 480px;
  }
}
.grid[data-size=content-flip] {
  display: grid;
  grid-row-gap: 40px;
  grid-column-gap: 80px;
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=content-flip] {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=content-flip] {
    grid-template-columns: 480px 1fr;
  }
}
.grid[data-size=content-flip] .content__main {
  order: 2;
}
.grid[data-size=bio] {
  display: grid;
  grid-row-gap: 40px;
  grid-column-gap: 160px;
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=bio] {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=bio] {
    grid-template-columns: 480px 1fr;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=tile] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    width: calc(100% - 40px);
    margin-left: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=tile] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    width: calc(100% - 80px);
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=tile] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.grid[data-size=about] {
  grid-row-gap: 20px;
  grid-column-gap: 40px;
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=about] {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=about] {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=retail] {
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .grid[data-size=retail] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .grid[data-size=retail] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=awards] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .grid[data-size=awards] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .grid[data-size=awards] {
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=icon] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .grid[data-size=icon] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1440px) {
  .grid[data-size=icon] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=footer] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=footer] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=footer] {
    grid-row-gap: 40px;
    grid-template-columns: 300px 260px 1fr 1fr 1fr 1fr;
    grid-column-gap: 40px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=footerbtm] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=footerbtm] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=footerbtm] {
    grid-row-gap: 40px;
    grid-template-columns: 300px 120px 120px 1fr 1fr;
    grid-column-gap: 40px;
  }
}
.grid[data-size=half] {
  position: relative;
  z-index: 100;
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=half] {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .grid[data-size=half] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 80px;
  }
}
@media (min-width: 1200px) {
  .grid[data-size=half] {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 160px;
  }
}
@media (min-width: 0) and (max-width: 839px) {
  .grid[data-size=home-cards] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .grid[data-size=home-cards] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media (min-width: 1440px) {
  .grid[data-size=home-cards] {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex[data-size=property] {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 0) and (max-width: 839px) {
  .flex[data-size=property] {
    flex-direction: column-reverse;
  }
}
.flex[data-size=property] .flex__item {
  position: relative;
  width: 100%;
}

.heading {
  line-height: 1.15em;
}
.heading--1, .heading--1-alt, .heading--2, .heading--3, .heading--declaration {
  color: #434d3e;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 300;
}
.heading--1 {
  position: relative;
  left: -0.09em;
  font-weight: 700;
  line-height: 0.9em;
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--1 {
    font-size: 10vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .heading--1 {
    font-size: 44px;
  }
}
@media (min-width: 840px) and (max-width: 1919px) {
  .heading--1 {
    padding-right: 40px;
    font-size: 7.8125vw;
  }
}
@media (min-width: 1920px) {
  .heading--1 {
    padding-right: 40px;
    font-size: 150px;
  }
}
.heading--1 strong {
  position: relative;
  display: inline-block;
  font-weight: 300;
}
.heading--1 em {
  position: relative;
  top: -0.25em;
  left: 0.15em;
  display: inline-block;
  opacity: 0;
  font-size: 0.5em;
  font-weight: 300;
  line-height: 1em;
  transform: translate3d(0.1em, 0, 0);
}
.js-loaded .heading--1 em {
  opacity: 1;
  transition: 2s 0.25s ease opacity, 2s 0.25s ease transform;
  transform: translate3d(0, 0, 0);
}
.heading--1-alt {
  position: relative;
  left: -0.09em;
  line-height: 0.9em;
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--1-alt {
    font-size: 10vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .heading--1-alt {
    font-size: 44px;
  }
}
@media (min-width: 840px) and (max-width: 1919px) {
  .heading--1-alt {
    font-size: 5.7291666667vw;
  }
}
@media (min-width: 1920px) {
  .heading--1-alt {
    font-size: 110px;
  }
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--2 {
    font-size: 7.7272727273vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .heading--2 {
    font-size: 34px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .heading--2 {
    font-size: 4.5vw;
  }
}
@media (min-width: 1200px) {
  .heading--2 {
    font-size: 54px;
  }
}
.heading--2 strong {
  display: block;
  font-weight: 700;
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--3 {
    font-size: 7.7272727273vw;
  }
}
@media (min-width: 440px) {
  .heading--3 {
    font-size: 34px;
  }
}
.heading--3 span {
  display: inline-block;
}
.heading--3 strong {
  display: block;
  font-weight: 700;
}
.heading--mini {
  position: relative;
  left: -0.09em;
  color: #434d3e;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.heading--white {
  color: white;
}
.heading--white.heading--1 em {
  -webkit-text-stroke: 0.02em white;
  text-stroke: 0.02em white;
}
.heading__companymark {
  position: relative;
  top: 0.175em;
  left: -0.05em;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
}

.heading--property {
  position: relative;
}
.heading--property span {
  position: absolute;
  display: block;
}
@media (min-width: 0) and (max-width: 839px) {
  .heading--property span {
    top: -2.5em;
    left: 0.18em;
    font-size: 0.25em;
  }
}
@media (min-width: 840px) {
  .heading--property span {
    top: -3em;
    top: -2.75em;
    left: 0.28em;
    font-size: 0.2em;
  }
}
.heading--declaration {
  font-weight: 700;
  line-height: 0.9em;
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--declaration {
    font-size: 10vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .heading--declaration {
    font-size: 44px;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .heading--declaration {
    font-size: 4.8611111111vw;
  }
}
@media (min-width: 1440px) {
  .heading--declaration {
    font-size: 70px;
    line-height: 1.2em;
  }
}
.heading--declaration em {
  color: #999999;
  font-weight: 300;
}
.heading--declaration a {
  position: relative;
  top: 0.01em;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
  height: 0.8em;
  line-height: 0.9em;
}
.heading--declaration a:hover {
  color: #ee2e24;
}
.heading--purpose {
  position: relative;
  width: calc(100% + 20px);
  color: white;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  line-height: 0.9em;
  text-transform: uppercase;
}
@media (min-width: 0) and (max-width: 439px) {
  .heading--purpose {
    font-size: 10.4545454545vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .heading--purpose {
    font-size: 46px;
  }
}
@media (min-width: 840px) and (max-width: 1919px) {
  .heading--purpose {
    font-size: 7.8125vw;
  }
}
@media (min-width: 1920px) {
  .heading--purpose {
    font-size: 150px;
  }
}
.heading--purpose strong, .heading--purpose em {
  position: relative;
  display: block;
}
.heading--purpose strong span, .heading--purpose em span {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.1em, 0);
}
.js-loaded .heading--purpose strong span, .js-loaded .heading--purpose em span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.heading--purpose strong {
  font-weight: 300;
}
.heading--purpose strong span:nth-child(1) {
  transition: 0.5s 0.35s ease opacity, 0.5s 0.35s ease transform;
}
.heading--purpose strong span:nth-child(2) {
  transition: 0.5s 0.75s ease opacity, 0.5s 0.75s ease transform;
}
.heading--purpose em {
  top: 0.05em;
  left: 0.066em;
  font-size: 1.32em;
  font-weight: 700;
}
.heading--purpose em span:nth-child(1) {
  transition: 1s 1.25s ease opacity, 1s 1.25s ease transform;
}
.heading--purpose em span:nth-child(2) {
  transition: 1s 2s ease opacity, 1s 2s ease transform;
}
.heading--purpose .mark {
  position: absolute;
  top: -7%;
  left: 3%;
  width: 94%;
}
.heading--purpose .mark__1, .heading--purpose .mark__2, .heading--purpose .mark__3, .heading--purpose .mark__4 {
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(40deg);
}
.js-loaded .heading--purpose .mark__1, .js-loaded .heading--purpose .mark__2, .js-loaded .heading--purpose .mark__3, .js-loaded .heading--purpose .mark__4 {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
}
.heading--purpose .mark__1 svg {
  fill: white;
}
.js-loaded .heading--purpose .mark__1 {
  transition: 0.5s 1.35s ease opacity, 0.5s 1.35s ease transform;
}
.js-loaded .heading--purpose .mark__2 {
  transition: 0.5s 1.5s ease opacity, 0.5s 1.5s ease transform;
}
.js-loaded .heading--purpose .mark__3 {
  transition: 0.5s 1.65s ease opacity, 0.5s 1.65s ease transform;
}
.js-loaded .heading--purpose .mark__4 {
  transition: 0.5s 1.8s ease opacity, 0.5s 1.8s ease transform;
}
.heading__mark {
  position: relative;
  display: inline-block;
  color: transparent;
}
.heading__tm {
  position: absolute;
  top: 0;
  right: -0.8em;
  font-family: "azo-sans-web", "Azo Sans", "Arial", sans-serif;
  font-size: 0.2em;
  font-weight: 400;
  line-height: 0.6em;
}

.text p, .text ul, .text ol {
  margin-top: 20px;
  font-weight: 300;
}
.text p {
  line-height: 1.7em;
}
.text p span {
  display: inline-block;
}
.text li {
  position: relative;
  margin-top: 15px;
  padding-left: 15px;
  line-height: 1.25em;
}
.text li:before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #ee2e24;
}
.text li:first-child {
  margin-top: 0;
}
.text strong {
  font-weight: 700;
}
.text em {
  font-style: italic;
}
.text a {
  color: #ee2e24;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #ee2e24;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.text a:hover {
  color: #ee2e24;
}
.text--white p, .text--white strong, .text--white em, .text--white a, .text--white li {
  color: white;
}
@media (min-width: 0) and (max-width: 439px) {
  .text--small {
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .text--small {
    font-size: 16px;
  }
}
@media (min-width: 0) and (max-width: 439px) {
  .text--large {
    font-size: 20px;
  }
}
@media (min-width: 440px) {
  .text--large {
    font-size: 24px;
  }
}

.nav {
  background-color: white;
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav {
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .nav {
    height: 100px;
  }
}
.nav__logo {
  position: relative;
  float: left;
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__logo {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .nav__logo {
    margin-top: 20px;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__logo img {
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .nav__logo img {
    height: 60px;
  }
}

@media (min-width: 1200px) {
  .nav__menu {
    position: relative;
    right: -10px;
    display: block;
    float: right;
  }
  .nav__item, .nav__expand {
    position: relative;
    float: left;
  }
  .nav__item:after, .nav__expand:after {
    position: absolute;
    pointer-events: none;
    content: "";
  }
  .nav__item {
    overflow: hidden;
  }
  .nav__item:after {
    bottom: 39px;
    left: 14px;
    width: calc(100% - 28px);
    height: 2px;
    background-color: #ee2e24;
    transform: translate3d(150%, 0, 0);
  }
  .nav__item:hover {
    /*
    &:after {
    	transition: 0.25s  ease all;
    	transition-timing-function: $easeOutBack;
    	transform: translate3d(0, 0, 0 );
    }
    .nav__link {
    	color: m($color, secondary);
    }
    */
  }
  .nav__expand:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ee2e24;
  }
  .nav__expand:hover:after {
    height: 100%;
  }
  .nav__expand:hover .nav__link {
    color: white;
  }
  .nav__expand:hover .nav__link:after {
    top: 47px;
    border-color: white;
    transform: rotate(-135deg);
  }
  .nav__expand:hover .nav__drop {
    display: block !important;
  }
  .nav__link {
    position: relative;
    z-index: 10;
    display: block;
    height: 100px;
    padding-right: 14px;
    padding-left: 14px;
    color: #434d3e;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 100px;
  }
  .nav__expand .nav__link {
    padding-right: 38px;
    cursor: default;
  }
  .nav__expand .nav__link:after {
    position: absolute;
    top: 43px;
    right: 20px;
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ee2e24;
    border-bottom: 2px solid #ee2e24;
    content: "";
    transition: 0.25s ease all;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(45deg);
    transform-origin: 50% 50%;
  }
  .nav__drop {
    position: absolute;
    top: 100px;
    display: none;
    width: 160px;
    color: white;
    background-color: #ee2e24;
  }
  .nav__sub {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 20px;
    font-size: 15px;
  }
  .nav__sub--secret {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .nav__sub span {
    position: relative;
    z-index: 3;
  }
  .nav__sub:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ee2e24;
    transform: translate3d(101%, 0, 0);
  }
  .nav__sub:hover:before {
    transition: 0.15s ease transform;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 0) and (max-width: 1199px) {
  .nav:before, .nav:after {
    position: fixed;
    top: 60px;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 0;
    content: "";
  }
  .nav:before {
    z-index: 10;
    background-image: url("../img/ui/menu.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
  .nav:after {
    top: 62px;
    z-index: 20;
    background: linear-gradient(0deg, #434d3e 10%, rgba(67, 77, 62, 0) 100%);
  }
  .js-toggled .nav:before, .js-toggled .nav:after {
    height: 1000px;
  }
  .js-toggled .nav:before {
    opacity: 0.2;
    transition: 2s 0.5s ease opacity;
  }
  .js-toggled .nav:after {
    opacity: 1;
    transition: 0s 0.5s ease opacity;
  }
  .nav__menu {
    position: fixed;
    top: calc(50% + 10px);
    left: calc(50% - 100px);
    z-index: 100;
    overflow: hidden;
    width: 240px;
    height: 0;
    counter-reset: line-number;
    transform: translate3d(0, -50%, 0);
  }
  .js-toggled .nav__menu {
    height: auto;
  }
  .nav__drop {
    position: relative;
    padding-top: 10px;
    padding-left: 1.1em;
  }
}
@media (min-width: 0) and (max-width: 1199px) and (min-width: 0) and (max-width: 439px) {
  .nav__drop {
    font-size: 8.1818181818vw;
  }
}
@media (min-width: 0) and (max-width: 1199px) and (min-width: 440px) and (max-width: 1199px) {
  .nav__drop {
    font-size: 36px;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__item, .nav__expand {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  .nav__item:before, .nav__item .nav__link:before, .nav__expand:before, .nav__expand .nav__link:before {
    opacity: 0;
  }
  .js-toggled .nav__item, .js-toggled .nav__expand {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .js-toggled .nav__item:nth-child(1), .js-toggled .nav__expand:nth-child(1) {
    transition: transform 0.5s 0.3s ease, opacity 1s 0.3s ease;
  }
  .js-toggled .nav__item:nth-child(1):before, .js-toggled .nav__item:nth-child(1) .nav__link:before, .js-toggled .nav__expand:nth-child(1):before, .js-toggled .nav__expand:nth-child(1) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 0.4s ease;
  }
  .js-toggled .nav__item:nth-child(2), .js-toggled .nav__expand:nth-child(2) {
    transition: transform 0.5s 0.45s ease, opacity 1s 0.45s ease;
  }
  .js-toggled .nav__item:nth-child(2):before, .js-toggled .nav__item:nth-child(2) .nav__link:before, .js-toggled .nav__expand:nth-child(2):before, .js-toggled .nav__expand:nth-child(2) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 0.65s ease;
  }
  .js-toggled .nav__item:nth-child(3), .js-toggled .nav__expand:nth-child(3) {
    transition: transform 0.5s 0.6s ease, opacity 1s 0.6s ease;
  }
  .js-toggled .nav__item:nth-child(3):before, .js-toggled .nav__item:nth-child(3) .nav__link:before, .js-toggled .nav__expand:nth-child(3):before, .js-toggled .nav__expand:nth-child(3) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 0.9s ease;
  }
  .js-toggled .nav__item:nth-child(4), .js-toggled .nav__expand:nth-child(4) {
    transition: transform 0.5s 0.75s ease, opacity 1s 0.75s ease;
  }
  .js-toggled .nav__item:nth-child(4):before, .js-toggled .nav__item:nth-child(4) .nav__link:before, .js-toggled .nav__expand:nth-child(4):before, .js-toggled .nav__expand:nth-child(4) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 1.15s ease;
  }
  .js-toggled .nav__item:nth-child(5), .js-toggled .nav__expand:nth-child(5) {
    transition: transform 0.5s 0.9s ease, opacity 1s 0.9s ease;
  }
  .js-toggled .nav__item:nth-child(5):before, .js-toggled .nav__item:nth-child(5) .nav__link:before, .js-toggled .nav__expand:nth-child(5):before, .js-toggled .nav__expand:nth-child(5) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 1.4s ease;
  }
  .js-toggled .nav__item:nth-child(6), .js-toggled .nav__expand:nth-child(6) {
    transition: transform 0.5s 1.05s ease, opacity 1s 1.05s ease;
  }
  .js-toggled .nav__item:nth-child(6):before, .js-toggled .nav__item:nth-child(6) .nav__link:before, .js-toggled .nav__expand:nth-child(6):before, .js-toggled .nav__expand:nth-child(6) .nav__link:before {
    opacity: 1;
    transition: opacity 1s 1.65s ease;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__item, .nav__expand .nav__link {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-left: 1.25em;
    color: white;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-weight: 700;
    counter-increment: line-number;
  }
}
@media (min-width: 0) and (max-width: 1199px) and (min-width: 0) and (max-width: 439px) {
  .nav__item, .nav__expand .nav__link {
    font-size: 6.8181818182vw;
  }
}
@media (min-width: 0) and (max-width: 1199px) and (min-width: 440px) and (max-width: 1199px) {
  .nav__item, .nav__expand .nav__link {
    font-size: 30px;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__item:before, .nav__expand .nav__link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    color: #ee2e24;
    font-size: 1.1em;
    font-weight: 300;
    text-align: center;
    content: counter(line-number) " ";
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .js-toggled .nav__item, .js-toggled .nav__expand .nav__link {
    height: auto;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__expand .nav__link {
    color: rgba(255, 255, 255, 0.35);
    color: #ee2e24;
    cursor: default;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__sub {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    font-size: 24px;
    font-weight: 300;
  }
}
@media (min-width: 0) and (max-width: 1199px) and (min-width: 0) and (max-width: 1199px) {
  .nav__sub--secret {
    display: none;
  }
}

.nav__toggle {
  position: relative;
  float: right;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  cursor: pointer;
}
@media (min-width: 0) and (max-width: 1199px) {
  .nav__toggle {
    display: block;
  }
}
@media (min-width: 1200px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle:before {
  position: absolute;
  top: -10px;
  opacity: 0;
  height: 50px;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 50px;
  content: "Close";
  transform: translate3d(0, 5px, 0);
}
.js-toggled .nav__toggle:before {
  left: -44px;
  opacity: 1;
  transition: 0.25s ease transform, 0.25s ease opacity;
  transform: translate3d(0, 0, 0);
}
.nav__toggle:after {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  content: "";
}
.nav__toggle span {
  position: absolute;
  top: 13px;
  display: block;
  background-color: #434d3e;
  transition: 0.15s ease all;
}
.nav__toggle span:after, .nav__toggle span:before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #434d3e;
  transition: 0.15s ease all;
}
.nav__toggle span:before {
  top: -8px;
  left: 0;
}
.nav__toggle span:after {
  top: 8px;
  right: 0;
}
.nav__toggle span:first-child {
  left: 4px;
  width: 4px;
  height: 4px;
  background-color: #ee2e24;
}
.nav__toggle span:first-child:before, .nav__toggle span:first-child:after {
  background-color: #ee2e24;
}
.js-toggled .nav__toggle span:first-child {
  left: 13px;
}
.js-toggled .nav__toggle span:first-child:before {
  left: -8px;
  width: 0;
}
.js-toggled .nav__toggle span:first-child:after {
  left: 8px;
  width: 0;
}
.nav__toggle span:last-child {
  right: 0;
  width: 18px;
  height: 4px;
}
.js-toggled .nav__toggle span:last-child {
  width: 26px;
  background-color: #ee2e24;
}
.js-toggled .nav__toggle span:last-child:before {
  width: 0;
}
.js-toggled .nav__toggle span:last-child:after {
  width: 0;
}

.footer__logo {
  position: relative;
  z-index: 0;
  display: block;
}
@media (min-width: 0) and (max-width: 839px) {
  .footer__logo {
    width: 120px;
    height: 30px;
  }
}
@media (min-width: 840px) {
  .footer__logo {
    width: 232px;
    height: 60px;
  }
}
.footer__logo img {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.footer__menu {
  font-size: 16px;
}
.footer__menu li {
  margin-top: 10px;
}
.footer__menu li:first-child {
  margin-top: 0;
}
.footer__menu a {
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 400;
}
@media (min-width: 0) and (max-width: 839px) {
  .footer__menu a {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
  }
}
@media (min-width: 840px) {
  .footer__menu a {
    font-size: 14px;
  }
}
.footer__menu a:hover {
  color: #ee2e24;
}
.footer__col {
  font-size: 16px;
}
.footer__col span {
  display: block;
  margin-bottom: 5px;
}
.footer__col span:last-child {
  margin-top: 10px;
}
.footer__col span a {
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
}
@media (min-width: 0) and (max-width: 839px) {
  .footer__col span a {
    display: inline-block;
    margin-top: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
  }
}
.footer__col span a:hover {
  color: #ee2e24;
}
.footer__btm {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #d9dbd8;
  font-size: 14px;
}
@media (min-width: 0) and (max-width: 839px) {
  .footer__copy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .footer__copy {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .footer__copy {
    order: -1;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #434d3e;
}
@media (min-width: 0) and (max-width: 439px) {
  .hero:not(.hero--property) {
    min-height: 54.5454545455vw;
  }
}
@media (min-width: 440px) and (max-width: 1199px) {
  .hero:not(.hero--property) {
    min-height: 66.6666666667vw;
  }
}
@media (min-width: 1200px) {
  .hero:not(.hero--property) {
    height: 41.6666666667vw;
    max-height: 1000px;
  }
}
.hero--show .hero__img:after {
  display: none;
}
@media (min-width: 0) and (max-width: 439px) {
  .hero--home {
    height: 41.6666666667vw;
    min-height: 400px !important;
  }
}
@media (min-width: 440px) and (max-width: 1199px) {
  .hero--home {
    height: 50vw;
    min-height: 400px;
  }
}
@media (min-width: 1200px) {
  .hero--home {
    height: 66.6666666667vw;
    max-height: 800px;
  }
}
.hero--property {
  background-color: #ee2e24;
}
@media (min-width: 0) and (max-width: 1199px) {
  .hero--property {
    height: auto;
  }
}
@media (min-width: 1200px) {
  .hero--property {
    height: 56.25vw;
    max-height: 1080px;
  }
}
.hero__title {
  position: absolute;
  z-index: 100;
  width: 100%;
}
@media (min-width: 0) and (max-width: 439px) {
  .hero__title {
    top: 12.5vw;
  }
}
@media (min-width: 440px) and (max-width: 1199px) {
  .hero__title {
    top: 12.5vw;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .hero__title {
    top: 7.8125vw;
  }
}
@media (min-width: 1920px) {
  .hero__title {
    top: 150px;
  }
}
.hero__slogan {
  position: absolute;
  z-index: 100;
  width: 100%;
}
@media (min-width: 0) and (max-width: 839px) {
  .hero__slogan {
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
@media (min-width: 840px) {
  .hero__slogan {
    top: 40%;
    transform: translate3d(0, -50%, 0);
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .hero__name {
    position: absolute;
    top: 7.2916666667vw;
    left: 40px;
    transform: translate(0, -50%, 0);
  }
}
@media (min-width: 1920px) {
  .hero__name {
    position: absolute;
    top: 140px;
    left: 40px;
    transform: translate(0, -50%, 0);
  }
}
.hero__property {
  z-index: 100;
  width: 100%;
}
@media (min-width: 0) and (max-width: 839px) {
  .hero__property {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .hero__property {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .hero__property {
    position: absolute;
    top: 0;
  }
}
.hero__panel {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: -1;
  width: 480px;
}
@media (min-width: 0) and (max-width: 1199px) {
  .hero__panel {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hero__panel {
    display: block;
  }
}
@media (min-width: 0) and (max-width: 1919px) {
  .hero__panel {
    height: 56.25vw;
  }
}
@media (min-width: 1920px) {
  .hero__panel {
    height: 56.25vw;
    max-height: 1280px;
  }
}
.hero__panel:before {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  width: 52.0833333333vw;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, #ee2e24 5%, rgba(238, 46, 36, 0.5) 75%, rgba(238, 46, 36, 0.35) 100%);
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #434d3e;
}
@media (min-width: 0) and (max-width: 839px) {
  .hero--property .hero__img {
    display: none;
  }
  .hero--property .hero__img[data-gallery=false] {
    display: block;
  }
}
@media (min-width: 0) and (max-width: 1199px) {
  .hero--property .hero__img {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
  }
  .hero--property .hero__img:after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hero--property .hero__img {
    position: absolute;
  }
}
.hero__img:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.75);
}
.hero--property .hero__img:after {
  background-color: rgba(67, 77, 62, 0.5);
}
@media (min-width: 0) and (max-width: 1199px) {
  .js-loaded .hero--property .hero__img {
    left: 0;
    transition: 0s ease left;
  }
}
.js-loaded .hero__img {
  top: 0;
}
@media (min-width: 0) and (max-width: 839px) {
  .js-loaded .hero__img {
    transition: 15s ease-out left;
  }
  .js-loaded .hero__img:after {
    transition: 1.5s 0.25s ease-out opacity;
  }
}
@media (min-width: 840px) {
  .js-loaded .hero__img {
    transition: 60s ease-out top;
  }
  .js-loaded .hero__img:after {
    transition: 3s 0.25s ease-out opacity;
  }
}
.js-loaded .hero__img:after {
  opacity: 0.5;
}
.hero__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: cover;
  object-position: center;
}

.property {
  z-index: 200;
}
@media (min-width: 1200px) {
  .property:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.3333333333vw;
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}
.property__grid {
  display: grid;
}
@media (min-width: 0) and (max-width: 439px) {
  .property__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .property__grid {
    grid-column-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .property__grid {
    grid-column-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .property__grid {
    grid-column-gap: 40px;
    grid-template-columns: 480px 1fr;
  }
}
.property__panel {
  position: relative;
}
@media (min-width: 440px) and (max-width: 839px) {
  .property__panel:before {
    position: absolute;
    top: 0;
    right: -20px;
    z-index: -1;
    width: calc(200% + 80px);
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .property__panel:before {
    position: absolute;
    top: 0;
    right: -40px;
    z-index: -1;
    width: calc(200% + 120px);
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}
@media (min-width: 1200px) {
  .property__panel {
    padding-bottom: 80px;
    order: 1;
  }
  .property__panel:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}
.property__content {
  position: relative;
}
@media (min-width: 440px) and (max-width: 1199px) {
  .property__content {
    grid-column: 1/3;
  }
}
@media (min-width: 1200px) {
  .property__content {
    order: 2;
  }
}
@media (min-width: 0) and (max-width: 1439px) {
  .property__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .property__content {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 40px;
  }
}
.property__details {
  color: white;
}
@media (min-width: 0) and (max-width: 439px) {
  .property__details {
    position: relative;
    padding-top: 40px;
  }
  .property__details:before {
    display: block;
    width: 30px;
    margin-bottom: 40px;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 8.1818181818vw;
    font-weight: 300;
    white-space: nowrap;
    text-transform: uppercase;
    content: "Details & Team";
  }
  .property__details:after {
    position: absolute;
    top: 0;
    left: -20px;
    z-index: -1;
    width: calc(100% + 40px);
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .property__details {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .property__details:before {
    display: block;
    width: 30px;
    margin-bottom: 40px;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 36px;
    font-weight: 300;
    white-space: nowrap;
    text-transform: uppercase;
    content: "Details & Team";
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .property__details {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .property__details:before {
    display: block;
    width: 30px;
    margin-bottom: 40px;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 4.5vw;
    font-weight: 300;
    white-space: nowrap;
    text-transform: uppercase;
    content: "Details & Team";
  }
}
@media (min-width: 1200px) {
  .property__details {
    position: absolute;
    top: -40px;
    width: 440px;
    transform: translate3d(0, -100%, 0);
    order: 1;
  }
}
.property__team {
  color: white;
}
@media (min-width: 0) and (max-width: 439px) {
  .property__team {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .property__team:after {
    position: absolute;
    top: 0;
    left: -20px;
    z-index: -1;
    width: calc(100% + 40px);
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
  .property__team:before {
    position: relative;
    display: block;
    opacity: 0.15;
    width: 100%;
    height: 2px;
    margin-top: 20px;
    margin-bottom: 40px;
    content: "";
    background-color: white;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .property__team {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .property__team:before {
    display: block;
    margin-bottom: 40px;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    content: "  ";
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .property__team {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .property__team:before {
    display: block;
    margin-bottom: 40px;
    font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
    font-size: 4.5vw;
    font-weight: 300;
    text-transform: uppercase;
    content: " ";
  }
}
@media (min-width: 1200px) {
  .property__team {
    position: relative;
    top: 0;
    z-index: 10;
    padding-right: 40px;
  }
  .property__team:before {
    position: relative;
    display: block;
    opacity: 0.15;
    width: 100%;
    height: 2px;
    margin-bottom: 40px;
    content: "";
    background-color: white;
  }
}
.property__label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.property__label:first-child {
  margin-top: 0;
}
@media (min-width: 0) and (max-width: 439px) {
  .property__split {
    position: relative;
    display: block;
    opacity: 0.15;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: white;
  }
}
@media (min-width: 1200px) {
  .property__split {
    position: relative;
    display: block;
    opacity: 0.15;
    width: 100%;
    height: 2px;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: white;
  }
}
@media (min-width: 0) and (max-width: 439px) {
  .property__highlight, .property__item {
    font-size: 16px;
  }
  .property__highlight + .property__highlight, .property__highlight + .property__item, .property__item + .property__highlight, .property__item + .property__item {
    margin-top: 10px;
  }
}
@media (min-width: 440px) and (max-width: 1199px) {
  .property__highlight, .property__item {
    font-size: 18px;
  }
  .property__highlight + .property__highlight, .property__highlight + .property__item, .property__item + .property__highlight, .property__item + .property__item {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .property__highlight, .property__item {
    margin-top: 5px;
    font-size: 24px;
  }
}
.property__highlight span, .property__item span {
  display: inline-block;
}
.property__highlight strong, .property__item strong {
  font-weight: 700;
}
.cta {
  overflow: hidden;
}
@media (min-width: 0) and (max-width: 839px) {
  .cta {
    position: sticky;
    top: 60px;
    z-index: 7000;
    display: flex;
    background-color: #ee2e24;
    justify-content: space-evenly;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .cta {
    position: absolute;
    left: 40px;
    z-index: 11;
    transform: translate3d(0, calc(-100% - 40px), 0);
  }
}
@media (min-width: 1200px) {
  .cta {
    position: absolute;
    left: 50%;
    z-index: 11;
    width: 100%;
    max-width: 1400px;
    transform: translate3d(-50%, calc(-100% - 40px), 0);
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .cta {
    padding-left: 560px;
  }
}
@media (min-width: 1440px) {
  .cta {
    padding-left: 600px;
  }
}
.cta a {
  position: relative;
  display: inline-block;
  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  color: white;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
@media (min-width: 0) and (max-width: 839px) {
  .cta a {
    width: 50%;
    padding-left: 30px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    background-position: calc(50% - 50px) 10px;
    flex-grow: 1;
  }
  .cta a:after {
    position: absolute;
    top: 10px;
    left: 0;
    width: 2px;
    height: calc(100% - 20px);
    pointer-events: none;
    content: "";
    background-color: white;
  }
  .cta a:first-child:after {
    display: none;
  }
}
@media (min-width: 840px) {
  .cta a {
    overflow: hidden;
    width: 220px;
    margin-left: 20px;
    padding-left: 30px;
    border: 2px solid white;
    text-align: center;
    background-position: 15px 10px;
  }
  .cta a:hover {
    border: 2px solid #ee2e24;
  }
  .cta a:hover:after {
    transition: 0.25s ease all;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate3d(0, 0, 0);
  }
  .cta a:first-child {
    margin-left: 0;
  }
  .cta a:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 200%;
    height: 100%;
    content: "";
    background-color: #ee2e24;
    transform: translate3d(51%, 0, 0);
  }
  .cta a:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.25;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #434d3e;
  }
}

.slider {
  overflow: hidden;
}
@media (min-width: 840px) {
  .slider .slick-list {
    overflow: visible !important;
  }
}
.slider .slick-track {
  cursor: grab;
}
.slider .slick-track:active {
  cursor: grabbing;
}
.slider .slick-prev, .slider .slick-next {
  position: absolute;
  top: 0;
  z-index: 20;
  overflow: hidden;
  height: calc(100% - 10px);
  cursor: pointer;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider .slick-prev, .slider .slick-next {
    width: 40px;
  }
}
@media (min-width: 840px) {
  .slider .slick-prev, .slider .slick-next {
    width: 100%;
  }
}
.slider .slick-prev:after, .slider .slick-next:after {
  position: absolute;
  top: calc(50% - 8px);
  width: 12px;
  height: 12px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  content: "";
  transform-origin: 50% 50%;
}
.slider .slick-prev {
  text-indent: -1000px;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider .slick-prev {
    left: 0;
  }
}
@media (min-width: 840px) {
  .slider .slick-prev {
    left: -100%;
  }
}
.slider .slick-prev:after {
  right: 12px;
  transform: rotate(-225deg);
}
.slider .slick-next {
  text-indent: 1000px;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider .slick-next {
    right: 0;
  }
}
@media (min-width: 840px) {
  .slider .slick-next {
    right: -100%;
  }
}
.slider .slick-next:after {
  left: 12px;
  transform: rotate(-45deg);
}
.slider .slick-dots {
  position: relative;
  bottom: 0;
  display: flex !important;
  margin-top: 8px;
  pointer-events: none;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider .slick-dots {
    left: 20px;
    width: calc(100% - 40px);
  }
}
@media (min-width: 840px) {
  .slider .slick-dots {
    width: 100%;
  }
}
.slider .slick-dots li {
  overflow: hidden;
  width: 100%;
  height: 2px;
  color: transparent;
  font-size: 0;
  text-indent: 100%;
  background-color: #d9dbd8;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider .slick-dots li {
    margin-left: 5px;
  }
}
@media (min-width: 840px) {
  .slider .slick-dots li {
    margin-left: 10px;
  }
}
.slider .slick-dots li:first-child {
  margin-left: 0;
}
.slider .slick-dots li.slick-active {
  background-color: #ee2e24;
}
.slider .slick-center .slider__img:after {
  opacity: 0;
}
.slider__wrap {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider__wrap {
    width: 100%;
  }
}
@media (min-width: 840px) and (max-width: 1439px) {
  .slider__wrap {
    width: calc(100% - 80px);
  }
}
@media (min-width: 1440px) {
  .slider__wrap {
    width: 100%;
    max-width: 1320px;
  }
}
.slider__item {
  display: none;
  background-color: #434d3e;
}
.slider__item:first-child {
  display: block;
}
.slick-initialized .slider__item {
  display: block;
}
.slider__img {
  position: relative;
  width: 100%;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider__img {
    padding-bottom: 75%;
  }
}
@media (min-width: 840px) {
  .slider__img {
    padding-bottom: 56.25%;
  }
}
.slider__img:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #434d3e;
  transition: 0.5s ease opacity;
}
@media (min-width: 0) and (max-width: 839px) {
  .slider__img:after {
    opacity: 0;
  }
}
@media (min-width: 840px) {
  .slider__img:after {
    opacity: 0.6;
  }
}
.slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider__title {
  display: none;
}

.quote {
  overflow: hidden;
  color: white;
  background-color: #434d3e;
}
.quote .slick-track {
  cursor: grab;
}
.quote .slick-track:active {
  cursor: grabbing;
}
.quote .slick-prev, .quote .slick-next {
  position: absolute;
  z-index: 200;
  overflow: hidden;
  width: 80px;
  height: 80px;
  text-indent: -1000px;
  cursor: pointer;
}
@media (min-width: 0) and (max-width: 439px) {
  .quote .slick-prev, .quote .slick-next {
    bottom: 40px;
  }
}
@media (min-width: 440px) {
  .quote .slick-prev, .quote .slick-next {
    top: calc(50% - 160px);
  }
}
.quote .slick-prev:after, .quote .slick-next:after {
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  content: "";
  transform-origin: 50% 50%;
}
@media (min-width: 0) and (max-width: 439px) {
  .quote .slick-prev {
    left: -10px;
  }
}
@media (min-width: 440px) and (max-width: 1439px) {
  .quote .slick-prev {
    left: 10px;
  }
}
@media (min-width: 1440px) {
  .quote .slick-prev {
    left: calc(50% - 660px - 30px);
  }
}
.quote .slick-prev:after {
  transform: rotate(-225deg);
}
@media (min-width: 0) and (max-width: 439px) {
  .quote .slick-next {
    right: -10px;
  }
}
@media (min-width: 440px) and (max-width: 1439px) {
  .quote .slick-next {
    right: 10px;
  }
}
@media (min-width: 1440px) {
  .quote .slick-next {
    right: calc(50% - 660px - 30px);
  }
}
.quote .slick-next:after {
  transform: rotate(-45deg);
}
.quote .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex !important;
  margin-top: 8px;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0);
}
@media (min-width: 0) and (max-width: 839px) {
  .quote .slick-dots {
    width: calc(100% - 40px);
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .quote .slick-dots {
    width: calc(100% - 80px);
  }
}
@media (min-width: 840px) {
  .quote .slick-dots {
    width: calc(100% - 80px);
    max-width: 1320px;
  }
}
.quote .slick-dots li {
  overflow: hidden;
  width: 100%;
  height: 2px;
  color: transparent;
  font-size: 0;
  text-indent: 100%;
  background-color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 0) and (max-width: 839px) {
  .quote .slick-dots li {
    margin-left: 5px;
  }
}
@media (min-width: 840px) {
  .quote .slick-dots li {
    margin-left: 10px;
  }
}
.quote .slick-dots li:first-child {
  margin-left: 0;
}
.quote .slick-dots li.slick-active {
  background-color: #ee2e24;
}
@media (min-width: 0) and (max-width: 439px) {
  .quote__space {
    margin-top: 20px;
  }
}
@media (min-width: 440px) {
  .quote__space {
    margin-top: 40px;
  }
}
.quote__item {
  position: relative;
  padding-bottom: 120px;
}
@media (min-width: 1200px) {
  .quote__item {
    height: 40.625vw;
    min-height: 600px;
    max-height: 1080px;
  }
}
@media (min-width: 440px) {
  .quote__content {
    padding-right: 80px;
    padding-left: 80px;
  }
}
.quote__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.quote__img:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #434d3e 5%, rgba(67, 77, 62, 0.75) 75%, rgba(67, 77, 62, 0.5) 100%);
}
.quote__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.quote__wrap {
  position: relative;
  z-index: 10;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 0) and (max-width: 839px) {
  .quote__wrap {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .quote__wrap {
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .quote__wrap {
    top: 50%;
    width: calc(100% - 80px);
    transform: translate3d(0, -50%, 0);
  }
}
@media (min-width: 1440px) {
  .quote__wrap {
    top: 50%;
    width: 100%;
    max-width: 1320px;
    transform: translate3d(0, -50%, 0);
  }
}
.quote__text {
  position: relative;
  font-family: Georgian, Times, serif;
  font-style: italic;
  line-height: 1.5em;
}
@media (min-width: 0) and (max-width: 439px) {
  .quote__text {
    font-size: 20px;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .quote__text {
    font-size: 4.2857142857vw;
  }
}
@media (min-width: 840px) {
  .quote__text {
    font-size: 36px;
  }
}
.quote__text:before {
  position: absolute;
  top: -0.05em;
  left: -0.55em;
  font-size: 1.5em;
  content: "“";
}
.quote__text:after {
  content: "”";
}
.quote__name {
  opacity: 0;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  transform: translate3d(0, 5px, 0);
}
.slick-active .quote__name {
  opacity: 1;
  transition: 0.35s 0.35s ease transform, 0.35s 0.35s ease opacity;
  transform: translate3d(0, 0, 0);
}
.quote__title {
  opacity: 0;
  line-height: 1.25em;
  transform: translate3d(0, 5px, 0);
}
@media (min-width: 0) and (max-width: 439px) {
  .quote__title {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .quote__title {
    margin-top: 20px;
    font-size: 16px;
  }
}
.slick-active .quote__title {
  opacity: 1;
  transition: 0.35s 0.55s ease transform, 0.35s 0.55s ease opacity;
  transform: translate3d(0, 0, 0);
}
.quote__title strong, .quote__title em {
  display: block;
}
.quote__title strong {
  font-weight: 700;
}
.quote__title em {
  font-style: italic;
}

.bio {
  background-color: white;
}
.bio__title {
  margin-top: 5px;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 0) and (max-width: 439px) {
  .bio__title {
    font-size: 5.6818181818vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .bio__title {
    font-size: 25px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .bio__title {
    font-size: 3vw;
  }
}
@media (min-width: 1200px) {
  .bio__title {
    font-size: 36px;
  }
}
.bio__side {
  position: relative;
  background-color: #f5f5f5;
}
@media (min-width: 840px) and (max-width: 1199px) {
  .bio__content {
    padding: 40px;
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .bio__content {
    padding: 80px;
    padding-left: 0;
  }
}
.bio__img {
  position: relative;
  z-index: 10;
  padding-bottom: 75%;
  background-color: #434d3e;
}
@media (min-width: 0) and (max-width: 839px) {
  .bio__img {
    left: -20px;
    width: calc(100% + 40px);
  }
}
.bio__img:after {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, #ee2e24 10%, rgba(238, 46, 36, 0) 50%);
}
.bio__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form input, .form select, .form textarea, .form button, .form label {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.form input, .form select, .form textarea {
  box-sizing: border-box;
  border: 2px solid #d9dbd8;
  border-radius: 0;
  outline: 0;
  color: #434d3e;
  font-family: "azo-sans-web", "Azo Sans", "Arial", sans-serif;
  font-size: 16px;
  appearance: none;
}
.form input:hover, .form select:hover, .form textarea:hover {
  border: 2px solid #999999;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: #ee2e24 !important;
}
.form input::placeholder, .form select::placeholder, .form textarea::placeholder {
  opacity: 0.5;
}
.form label {
  color: #434d3e;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.form button {
  display: block;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}
.form__wrap {
  display: grid;
  transform: translate3d(0, 0, 0);
  grid-auto-flow: row dense;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media (min-width: 840px) {
  .form__wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.form__item {
  width: 100%;
}
@media (min-width: 0) and (max-width: 839px) {
  .form__item {
    grid-column: auto/span 2;
  }
}
.form__item--full {
  grid-column: auto/span 2;
}
.form__item[data-required=active] .form__label:after {
  color: red;
  font-family: Arial;
  content: "*";
}
.form__label, .form__input, .form__select, .form__textarea {
  position: relative;
}
.form__label {
  margin-bottom: 5px;
}
.form__input input {
  width: 100%;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
.form__select select {
  width: 100%;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
.form__select-icon {
  position: absolute;
  top: 50%;
  padding-right: 16px;
  pointer-events: none;
  transform: translate3d(0, -50%, 0);
}
.form__select-icon i {
  position: relative;
  display: block;
  text-align: middle;
}
.form__textarea textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 260px;
  max-height: 400px;
  padding: 16px;
}
.form__btn {
  margin-left: auto;
}

.careers .bzOpeningsList {
  display: grid;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}
@media (min-width: 0) and (max-width: 839px) {
  .careers .bzOpeningsList {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .careers .bzOpeningsList {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .careers .bzOpeningsList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.careers .bzOpeningsList:empty {
  grid-template-columns: 1fr;
  padding: 40px;
  border: 2px dashed rgba(67, 77, 62, 0.25);
  text-align: center;
}
.careers .bzOpeningsList:empty:after {
  font-weight: 700;
  font-style: italic;
  content: "There are no current openings available at this time.";
}
.careers .bzOpeningsList .bzOpening {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 80px 20px;
  border: 4px solid #d9dbd8;
  font-size: 16px;
  background-color: white;
}
.careers .bzOpeningsList .bzOpening h2 {
  position: relative;
  z-index: 90;
  margin-bottom: 20px;
  padding-right: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9dbd8;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.careers .bzOpeningsList .bzOpening h2:after {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
  width: 0;
  height: 60px;
  content: "";
  background-color: #ee2e24;
  transition: 0.25s ease width;
}
.careers .bzOpeningsList .bzOpening h2:before {
  position: absolute;
  top: calc(50% - 6px - 10px);
  right: 5px;
  z-index: 95;
  opacity: 0;
  width: 12px;
  height: 12px;
  border: 3px solid white;
  border-bottom: none;
  border-left: none;
  content: "";
  transform: rotate(45deg) skew(10deg, 10deg);
}
.careers .bzOpeningsList .bzOpening .bzButtonApply {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.careers .bzOpeningsList .bzLocation {
  margin-bottom: 10px;
}
.careers .bzOpeningsList .bzSalary {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 90;
  height: 20px;
  color: #434d3e;
  font-weight: 700;
  line-height: 20px;
}

.thumb {
  position: relative;
  display: block;
}
@media (min-width: 0) and (max-width: 839px) {
  .thumb {
    padding-bottom: 4.7619047619vw;
  }
}
@media (min-width: 840px) {
  .thumb {
    padding-bottom: 40px;
  }
}
.thumb__wrap {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  transform: translate3d(0, 0, 0) scale(1);
  backface-visibility: hidden;
}
.thumb__wrap:before, .thumb__wrap:after {
  position: absolute;
  z-index: 100;
  opacity: 0;
  width: 0;
  height: 0;
  content: "";
}
.thumb__wrap:before {
  top: 0;
  left: 0;
  border-top: 4px solid #ee2e24;
  border-right: 4px solid #ee2e24;
}
.thumb__wrap:after {
  right: 0;
  bottom: 0;
  border-bottom: 4px solid #ee2e24;
  border-left: 4px solid #ee2e24;
}
.thumb__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease all;
  transform: translate3d(0, 0, 0) scale(1);
}
.thumb__img:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #434d3e;
  transition: 0.5s ease opacity;
}
.thumb[data-thumb=property] .thumb__img:after {
  opacity: 0.35;
}
.thumb[data-thumb=team] .thumb__img:before, .thumb[data-thumb=team-simple] .thumb__img:before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  height: 60%;
  content: "";
  background: linear-gradient(0deg, #434d3e 10%, rgba(67, 77, 62, 0) 100%);
}
.thumb__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: cover;
  object-position: center;
}
.thumb__logo {
  position: absolute;
  top: 35%;
  left: 25%;
  z-index: 10;
  width: 50%;
  height: 30%;
  transition: 0.25s ease all;
}
.thumb__logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: contain;
  object-position: center;
}
.thumb__details {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 0) and (max-width: 439px) {
  .thumb__details {
    margin-top: 6.8181818182vw;
  }
}
@media (min-width: 440px) {
  .thumb__details {
    margin-top: 30px;
  }
}
.thumb__btm {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  color: white;
  transition: 0.25s ease opacity, 0.25s ease transform;
  transform: translate3d(0, 0, 0);
}
.thumb__title {
  position: relative;
  left: -0.09em;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.9em;
}
@media (min-width: 0) and (max-width: 439px) {
  .thumb__title {
    font-size: 5.4545454545vw;
  }
}
@media (min-width: 440px) {
  .thumb__title {
    font-size: 24px;
  }
}
.thumb__sub {
  margin-top: 10px;
}
@media (min-width: 0) and (max-width: 439px) {
  .thumb__sub {
    font-size: 16px;
  }
}
@media (min-width: 440px) {
  .thumb__sub {
    font-size: 18px;
  }
}
.thumb__sub span {
  position: relative;
  top: -4px;
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 5px;
  margin-left: 5px;
  background-color: #ee2e24;
}
.thumb__city {
  margin-top: 10px;
  font-size: 16px;
  font-style: italic;
}
.thumb__cta {
  position: relative;
  left: 50%;
  display: inline-block;
  margin-top: 5px;
  padding: 10px;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
  transform: translate3d(-50%, 0, 0);
}
.thumb[data-thumb=team] .thumb__cta, .thumb[data-thumb=team-simple] .thumb__cta {
  opacity: 0;
  transition: 0.25s ease all;
  transform: translate3d(0, 5px, 0);
}
.thumb__cta:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

@media (min-width: 840px) {
  .thumb__wrap:hover {
    background-color: #ee2e24;
    transition: 0.25s 0.6s background-color ease;
  }
  .thumb__wrap:hover .thumb__img {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  .thumb__wrap:hover .thumb__img:after {
    opacity: 0;
  }
  .thumb__wrap:hover .thumb__logo {
    opacity: 0;
    transition: 0.25s ease all;
    transform: translate3d(0, 0, 0) scale(0.85);
  }
  .thumb__wrap:hover:after, .thumb__wrap:hover:before {
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  .thumb__wrap:hover:before {
    transition: 0.15s 0s width ease, 0.15s 0.15s height ease;
  }
  .thumb__wrap:hover:after {
    transition: 0.15s 0.3s width ease, 0.15s 0.45s height ease, 0s 0.3s opacity linear;
  }
  .thumb:hover[data-thumb=team] .thumb__img:after {
    opacity: 0.35;
  }
  .thumb:hover[data-thumb=team] .thumb__cta {
    transition: 0.5s 0.25s ease all;
  }
  .thumb:hover[data-thumb=team] .thumb__cta:after {
    transition: 0.25s 0.5s ease all;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
}

.logo__wrap {
  position: relative;
  display: block;
  padding-bottom: 75%;
  background-color: #f5f5f5;
}
.w--light .logo__wrap, .w--bio .logo__wrap {
  background-color: white;
}
.logo__img {
  position: absolute;
  top: 30%;
  left: 20%;
  z-index: 10;
  width: 60%;
  height: 40%;
  transition: 0.25s ease all;
}
.logo__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: contain;
  object-position: center;
}

.article {
  position: relative;
}
@media (min-width: 0) and (max-width: 839px) {
  .article {
    padding-bottom: 60px;
  }
}
@media (min-width: 840px) {
  .article {
    padding-bottom: 70px;
  }
}
.article__logo, .article__thumb {
  position: relative;
}
.article__logo:after, .article__thumb:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(67, 77, 62, 0.35);
  transition: 0.5s ease opacity;
}
.article__logo[data-type=mainstreet]:after, .article__thumb[data-type=mainstreet]:after {
  background-color: rgba(43, 177, 94, 0.15);
}
.article__logo[data-type=gencap]:after, .article__thumb[data-type=gencap]:after {
  background-color: rgba(235, 186, 56, 0.15);
}
.article__logo[data-type=insite]:after, .article__thumb[data-type=insite]:after {
  background-color: rgba(237, 51, 37, 0.15);
}
.article__thumb {
  position: relative;
  display: block;
  padding-bottom: 75%;
  background-color: #434d3e;
}
.article__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: cover;
  object-position: center;
}
.article a.article__thumb:hover:after, .article a.article__logo:hover:after {
  opacity: 1;
}
.article__title {
  display: block;
  margin-top: 20px;
  color: #434d3e;
  font-weight: 600;
  line-height: 1.15em;
}
@media (min-width: 0) and (max-width: 439px) {
  .article__title {
    font-size: 18px;
  }
}
@media (min-width: 440px) {
  .article__title {
    font-size: 20px;
  }
}
.article a.article__title:hover {
  color: #ee2e24;
}
.article__sub {
  margin-top: 10px;
  line-height: 1.25em;
}
@media (min-width: 0) and (max-width: 439px) {
  .article__sub {
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .article__sub {
    font-size: 16px;
  }
}
.article__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  text-transform: uppercase;
}
.article__cta:after, .article__cta:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
  content: "";
}
.article__cta:before {
  width: 100%;
  background-color: #d9dbd8;
}
.article__cta:after {
  opacity: 0;
  width: 80px;
  background-color: #ee2e24;
  transform: translate3d(101%, 0, 0);
}
.article__cta:hover {
  color: #ee2e24;
}
.article__cta:hover:after {
  opacity: 1;
  transition: 0.25s ease transform;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate3d(0, 0, 0);
}

.press {
  position: relative;
  padding-left: 30px;
}
.press__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #f5f5f5;
}
.press__title {
  display: inline-block;
  color: #434d3e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15em;
}
.press__title:hover {
  color: #ee2e24;
}
.press__date {
  margin-top: 6px;
  font-size: 12px;
}

.block {
  position: relative;
}
@media (min-width: 0) and (max-width: 439px) {
  .block {
    min-height: 70px;
    padding-left: 90px;
  }
}
@media (min-width: 440px) and (max-width: 1439px) {
  .block {
    min-height: 100px;
    padding-left: 120px;
  }
}
@media (min-width: 1440px) {
  .block {
    min-height: 100px;
    padding-left: 140px;
  }
}
.block__top {
  position: relative;
  transform: translate3d(0, -50%, 0);
}
@media (min-width: 0) and (max-width: 439px) {
  .block__top {
    top: 35px;
  }
}
@media (min-width: 440px) {
  .block__top {
    top: 50px;
  }
}
.block__img {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
}
@media (min-width: 0) and (max-width: 439px) {
  .block__img {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 440px) {
  .block__img {
    width: 100px;
    height: 100px;
  }
}
.block[data-type=fullimg] .block__img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block[data-type=icon] .block__img {
  background-color: transparent !important;
}
.block[data-type=icon] .block__img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block__img img {
  position: absolute;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 0) and (max-width: 439px) {
  .block__img img {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media (min-width: 440px) {
  .block__img img {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.block__title {
  display: block;
  font-weight: 600;
  line-height: 1.15em;
}
@media (min-width: 0) and (max-width: 439px) {
  .block__title {
    font-size: 18px;
  }
}
@media (min-width: 440px) {
  .block__title {
    font-size: 20px;
  }
}
.block__title em {
  color: #ee2e24;
}
.block__sub {
  line-height: 1.25em;
}
@media (min-width: 0) and (max-width: 439px) {
  .block__sub {
    margin-top: 5px;
    font-size: 14px;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .block__sub {
    margin-top: 5px;
    font-size: 16px;
  }
}
@media (min-width: 840px) {
  .block__sub {
    margin-top: 10px;
    font-size: 16px;
  }
}
.block__sub strong {
  font-weight: 700;
}
.block__text {
  line-height: 1.4em;
}
@media (min-width: 0) and (max-width: 439px) {
  .block__text {
    margin-top: 5px;
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .block__text {
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (min-width: 0) and (max-width: 439px) {
  .awards__item {
    margin-top: 10px;
  }
}
@media (min-width: 440px) {
  .awards__item {
    margin-top: 15px;
  }
}
.awards__item strong, .awards__item em {
  display: block;
}
.awards__item strong {
  color: #434d3e;
  font-weight: 700;
}
@media (min-width: 0) and (max-width: 439px) {
  .awards__item strong {
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .awards__item strong {
    font-size: 16px;
  }
}
.awards__item em {
  margin-top: 3px;
}
@media (min-width: 0) and (max-width: 439px) {
  .awards__item em {
    font-size: 12px;
  }
}
@media (min-width: 440px) {
  .awards__item em {
    font-size: 14px;
  }
}
.awards__item em:first-child {
  margin-top: 0;
}
.awards__item ul {
  margin-top: 5px;
  font-style: italic;
}
.awards__item ul li {
  margin-top: 2px;
}
.awards__item:first-child {
  border-top: 2px solid #d9dbd8;
}
@media (min-width: 0) and (max-width: 439px) {
  .awards__item:first-child {
    margin-top: 10px;
    padding-top: 15px;
  }
}
@media (min-width: 440px) {
  .awards__item:first-child {
    margin-top: 15px;
    padding-top: 20px;
  }
}

.banner {
  display: grid;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 0) and (max-width: 839px) {
  .banner {
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
  }
}
@media (min-width: 840px) {
  .banner {
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
  }
}
@media (min-width: 1920px) {
  .banner:before, .banner:after {
    position: absolute;
    top: 0;
    z-index: 0;
    width: calc(50% - 960px - 10px);
    height: 100%;
    content: "";
    background-color: #434d3e;
    background-repeat: no-repeat;
  }
  .banner:before {
    left: 0;
    background-image: url("../img/bg/banner-left.jpg");
    background-position: right center;
  }
  .banner:after {
    right: 0;
    background-image: url("../img/bg/banner-right.jpg");
    background-position: left center;
  }
}
.banner__item {
  position: relative;
  background-color: #434d3e;
}
@media (min-width: 0) and (max-width: 839px) {
  .banner__item:nth-child(2), .banner__item:nth-child(3) {
    display: none;
  }
  .banner__item:nth-child(1) .banner__img, .banner__item:nth-child(4) .banner__img {
    padding-bottom: calc(50% - 5px);
  }
}
@media (min-width: 840px) {
  .banner__item:nth-child(1) .banner__img, .banner__item:nth-child(4) .banner__img {
    padding-bottom: calc(50% - 5px);
  }
}
.banner__item:nth-child(4) {
  order: 3;
}
.banner__item:nth-child(1), .banner__item:nth-child(4) {
  grid-column: span 2;
}
.banner__img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.banner__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tile {
  position: relative;
  display: block;
  background-color: #434d3e;
}
@media (min-width: 0) and (max-width: 1199px) {
  .tile {
    padding-bottom: 56.25%;
  }
}
@media (min-width: 1200px) {
  .tile {
    padding-bottom: 140%;
  }
}
@media (min-width: 1200px) {
  .tile:hover .tile__desc {
    opacity: 1;
    transition: 0.75s ease opacity, 0.75s ease transform;
    transform: translate3d(0, 0, 0);
  }
  .tile:hover .tile__img:after {
    opacity: 0.6;
  }
  .tile:hover .tile__cta:after {
    opacity: 1;
    transition: 0.25s ease transform;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate3d(0, 0, 0);
  }
}
.tile__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  width: 100%;
  max-height: 1280px;
}
@media (min-width: 0) and (max-width: 839px) {
  .tile__title {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 840px) {
  .tile__title {
    padding-top: 80px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.tile__title strong {
  color: white;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-weight: 300;
}
@media (min-width: 0) and (max-width: 439px) {
  .tile__title strong {
    font-size: 8.1818181818vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .tile__title strong {
    font-size: 36px;
  }
}
@media (min-width: 840px) and (max-width: 1199px) {
  .tile__title strong {
    font-size: 4.5vw;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .tile__title strong {
    font-size: 2.8125vw;
  }
}
@media (min-width: 1920px) {
  .tile__title strong {
    font-size: 54px;
  }
}
.tile__desc {
  opacity: 0;
  width: 100%;
  max-width: 350px;
  color: white;
  transition: 0.5s ease opacity, 0.5s ease transform;
  transform: translate3d(0, 5px, 0);
}
@media (min-width: 0) and (max-width: 1919px) {
  .tile__desc {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 1920px) {
  .tile__desc {
    margin-top: 80px;
  }
}
.tile__desc em {
  display: block;
  margin-bottom: 20px;
  line-height: 1.15em;
}
@media (min-width: 0) and (max-width: 1199px) {
  .tile__desc em {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1919px) {
  .tile__desc em {
    font-size: 1.5625vw;
  }
}
@media (min-width: 1920px) {
  .tile__desc em {
    font-size: 30px;
  }
}
.tile__desc p {
  color: white;
  line-height: 26px;
}
.tile__icon {
  position: relative;
  left: -10px;
  width: 60px;
  height: 60px;
}
.tile__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.tile__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tile__img:after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.35;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #434d3e;
  transition: 0.5s ease opacity;
}
.tile__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1200px) {
  .tile--mini {
    padding-bottom: 75%;
  }
}
.tile__cta {
  position: absolute;
  z-index: 10;
  padding-top: 20px;
  padding-left: 30px;
  color: white;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 20px;
  text-transform: uppercase;
}
@media (min-width: 0) and (max-width: 839px) {
  .tile__cta {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
}
@media (min-width: 840px) {
  .tile__cta {
    bottom: 40px;
    left: 40px;
    width: calc(100% - 80px);
  }
}
.tile__cta:before {
  position: absolute;
  top: 27px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #ee2e24;
}

.btn {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 20px;
  color: #ee2e24;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
}
.btn:before, .btn:after {
  position: absolute;
  content: "";
}
.btn em {
  font-weight: 300;
}
.btn--full:last-child, .btn--set:last-child {
  margin-bottom: 0;
}
.btn--set {
  width: 220px;
}
@media (min-width: 0) and (max-width: 839px) {
  .btn--set-full {
    width: 100%;
  }
}
@media (min-width: 840px) {
  .btn--set-full {
    width: 220px;
  }
}
.btn--full {
  width: 100%;
}
.btn--half {
  width: calc(50% - 10px);
  margin-left: 20px;
}
.btn--half:nth-child(odd) {
  margin-left: 0;
}
.btn--primary {
  border: 2px solid #ee2e24;
  color: white;
  background-color: #ee2e24;
}
.btn--outline-primary {
  border: 2px solid #ee2e24;
  color: #ee2e24;
}
.btn--secondary {
  border: 2px solid #ee2e24;
  color: white;
  background-color: #ee2e24;
}
.btn--outline-secondary {
  border: 2px solid #ee2e24;
  color: #ee2e24;
}
.btn--white {
  border: 2px solid white;
  color: #ee2e24;
  background-color: white;
}
.btn--white-secondary {
  border: 2px solid white;
  color: #ee2e24;
  background-color: white;
}
.btn--outline-white {
  border: 2px solid white;
  color: white;
}
.btn--black {
  border: 2px solid #434d3e;
  color: white;
  background-color: #434d3e;
}
.btn--outline-black {
  border: 2px solid #434d3e;
  color: #434d3e;
}

.btn2 {
  position: relative;
  display: inline-block;
  font-family: "soleil", "Soleil", "Trebuchet MS", "Arial", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn2--white {
  color: white;
}
.btn2--full {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  color: white;
  line-height: 60px;
  text-align: center;
  background-color: #ee2e24;
}
.btn2--full:first-child {
  margin-top: 0;
}
.btn2--outline, .btn2--outline-blue {
  background-color: transparent;
}
.btn2--outline:before, .btn2--outline-blue:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  content: "";
}
.btn2--outline-blue {
  color: #ee2e24;
}
.btn2--outline-blue:before {
  border-color: #999999;
}
.btn2--block {
  width: 220px;
  height: 40px;
  margin-left: 20px;
  line-height: 40px;
  text-align: center;
}
.btn2--block:first-child {
  margin-left: 0;
}
.btn2--square {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.just__title {
  display: block;
  font-weight: 600;
  line-height: 1.15em;
}
@media (min-width: 0) and (max-width: 439px) {
  .just__title {
    font-size: 18px;
  }
}
@media (min-width: 440px) {
  .just__title {
    font-size: 20px;
  }
}
.just__item {
  line-height: 1.4em;
}
@media (min-width: 0) and (max-width: 439px) {
  .just__item {
    margin-top: 5px;
    font-size: 14px;
  }
}
@media (min-width: 440px) {
  .just__item {
    margin-top: 10px;
    font-size: 16px;
  }
}
.just__item strong {
  position: relative;
  left: -2px;
  display: inline-block;
  margin-right: 15px;
  color: #ee2e24;
  font-size: 46px;
}
.just__item em {
  position: relative;
  top: -0.32em;
}
.just__item--na {
  opacity: 0.35;
}
.just__item--na strong {
  color: #434d3e;
}
.just__item--na em {
  font-style: italic;
}

@media (min-width: 0) and (max-width: 1199px) {
  .mspg .mark {
    display: none;
  }
  .mspg__img {
    width: 155px;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .mspg[data-hover=true]:hover .mspg__line:before {
    transition: 0.25s ease all;
    transform: translate3d(-102%, 0, 0);
  }
  .mspg[data-hover=true]:hover .mspg__line:after {
    transition: 0.25s 0.25s ease all;
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate3d(0, 0, 0);
  }
  .mspg[data-hover=true]:hover .mspg__i {
    display: none;
  }
  .mspg[data-hover=true]:hover .mspg__t {
    opacity: 1;
    transition: 0.25s ease transform;
    transform: translate3d(0, 0, 0) rotate(0);
  }
  .mspg[data-hover=true]:hover .mspg__t:nth-child(1) {
    transition: 0.5s 0s ease transform, 0.5s 0s ease opacity;
  }
  .mspg[data-hover=true]:hover .mspg__t:nth-child(2) {
    transition: 0.5s 0.15s ease transform, 0.5s 0.15s ease opacity;
  }
  .mspg[data-hover=true]:hover .mspg__t:nth-child(3) {
    transition: 0.5s 0.3s ease transform, 0.5s 0.3s ease opacity;
  }
  .mspg[data-hover=true]:hover .mspg__t:nth-child(4) {
    transition: 0.5s 0.45s ease transform, 0.5s 0.45s ease opacity;
  }
  .mspg[data-hover=true]:hover .mspg__t:nth-child(5) {
    transition: 0.5s 0.6s ease transform, 0.5s 0.6s ease opacity;
  }
  .mspg[data-hover=true]:hover .mark__1, .mspg[data-hover=true]:hover .mark__2, .mspg[data-hover=true]:hover .mark__3, .mspg[data-hover=true]:hover .mark__4 {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0);
  }
  .mspg[data-hover=true]:hover .mark__1 {
    transition: 0.5s 0s ease transform, 0.5s 0s ease opacity;
  }
  .mspg[data-hover=true]:hover .mark__2 {
    transition: 0.5s 0.15s ease transform, 0.5s 0.15s ease opacity;
  }
  .mspg[data-hover=true]:hover .mark__3 {
    transition: 0.5s 0.3s ease transform, 0.5s 0.3s ease opacity;
  }
  .mspg[data-hover=true]:hover .mark__4 {
    transition: 0.5s 0.45s ease transform, 0.5s 0.45s ease opacity;
  }
  .mspg[data-hover=true]:hover .mark__5 {
    transition: 0.5s 0.6s ease transform, 0.5s 0.6s ease opacity;
  }
  .mspg__line {
    position: absolute;
    top: 39px;
    left: 65px;
    z-index: 10;
    overflow: hidden;
    width: 158px;
    height: 2px;
    outline: 2px solid white;
    background-color: white;
  }
  .mspg__line:before, .mspg__line:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    transform: translate3d(0, 0, 0);
  }
  .mspg__line:before {
    background-color: #ee2e24;
  }
  .mspg__line:after {
    background-color: #ee2e24;
    transform: translate3d(102%, 0, 0);
  }
  .mspg__square {
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 10;
    display: grid;
    overflow: hidden;
    width: 58px;
    height: 58px;
    outline: 4px solid white;
    pointer-events: none;
    background-color: white;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mspg__i {
    position: relative;
    width: 18px;
    height: 18px;
    transform: translate3d(0, 0, 0);
  }
  .mspg__i:nth-child(6) {
    z-index: 10;
  }
  .mspg__i:nth-child(6):before {
    background-color: #ee2e24;
  }
  .mspg__i:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ee2e24;
  }
  .mspg__mark {
    position: absolute;
    top: -5px;
    left: -7px;
    z-index: 20;
    overflow: hidden;
    width: 70px;
    height: 70px;
    pointer-events: none;
  }
  .mspg__mark .mark {
    position: absolute;
    top: 2px;
    left: 0;
    width: calc(100% - 4px);
  }
  .mspg__mark .mark__1, .mspg__mark .mark__2, .mspg__mark .mark__3, .mspg__mark .mark__4 {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(40deg);
  }
  .mspg__img {
    width: 232px;
    height: 60px;
  }
}
.mspg__img {
  position: relative;
  z-index: 0;
}
.mspg__img img {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.mark__wrap {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.mark__1, .mark__2, .mark__3, .mark__4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mark__1 svg, .mark__2 svg, .mark__3 svg, .mark__4 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mark__1 svg {
  fill: #ee2e24;
}
.mark[data-type=white] .mark__1 svg {
  fill: white;
}
.mark__2 svg {
  fill: #ebba38;
}
.mark__3 svg {
  fill: #ee2e24;
}
.mark__4 svg {
  fill: #ed3325;
}

.mark[data-type="1"] .mark__1 svg, .mark[data-type="1"] .mark__2 svg, .mark[data-type="1"] .mark__4 svg {
  fill: rgba(238, 46, 36, 0.2);
}
.mark[data-type="2"] .mark__1 svg, .mark[data-type="2"] .mark__3 svg, .mark[data-type="2"] .mark__4 svg {
  fill: rgba(238, 46, 36, 0.2);
}
.mark[data-type="3"] .mark__1 svg, .mark[data-type="3"] .mark__2 svg, .mark[data-type="3"] .mark__3 svg {
  fill: rgba(238, 46, 36, 0.2);
}

/*
// Page Layout
@import 'partials/property';



// Repeatable
@import 'partials/heading';


@import 'partials/decor';



// Reuseable Components
@import 'partials/thumb';
@import 'partials/slider';



// Specific Components
@import 'partials/nav';
@import 'partials/hero';
@import 'partials/award';
@import 'partials/press';
@import 'partials/retail';
@import 'partials/details';



// Special
@import 'partials/logo';
*/
body {
  overflow-x: hidden;
  overflow-y: scroll;
  color: #434d3e;
  font-family: "azo-sans-web", "Azo Sans", "Arial", sans-serif;
  font-weight: 300;
  background-color: white;
}
@media (min-width: 0) and (max-width: 439px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 440px) {
  body {
    font-size: 18px;
  }
}
hr {
  margin-top: 40px;
  margin-bottom: 40px;
  border: none;
  border-top: 2px solid #d9dbd8;
}
.text--white hr {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 0) and (max-width: 1199px) {
  .content__goals {
    padding-top: 40px;
    border-top: 2px solid #d9dbd8;
  }
}
@media (min-width: 1200px) {
  .content__goals {
    padding-left: 80px;
    border-left: 2px solid #d9dbd8;
  }
}

[data-aos=up] {
  opacity: 0;
  transition: 0.25s transform, 0.25s opacity;
  transform: translate3d(0, 20px, 0);
}
[data-aos=up].aos-animate {
  opacity: 1;
  transition: 0.25s 0.15s transform, 0.25s 0.15s opacity;
  transform: translate3d(0, 0, 0);
}

.img {
  position: relative;
  width: 100%;
}
.img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.load[data-load=false] .load__space, .load[data-load=false] .load__btn {
  display: none;
}
.load[data-load=true] .press {
  display: none;
}
.load[data-load=true] .press:nth-child(1) {
  display: block;
}
.load[data-load=true] .press:nth-child(2) {
  display: block;
}
.load[data-load=true] .press:nth-child(3) {
  display: block;
}
.load[data-load=true] .press:nth-child(4) {
  display: block;
}
.load[data-load=true] .press:nth-child(5) {
  display: block;
}
.load[data-load=true] .press:nth-child(6) {
  display: block;
}
.load[data-load=true] .press:nth-child(7) {
  display: block;
}
.load[data-load=true] .press:nth-child(8) {
  display: block;
}
.load[data-load=true] .press:nth-child(9) {
  display: block;
}

@media (min-width: 0) and (max-width: 839px) {
  .content__main--red {
    position: relative;
  }
  .content__main--red:after {
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    display: block;
    width: calc(100% + 40px);
    height: calc(100% + 40px + 40px);
    content: "";
    background-color: #ee2e24;
  }
}

.card {
  position: relative;
  overflow: hidden;
  padding: 60px 40px 160px 40px;
  border: 4px solid #d9dbd8;
}
.card__cta {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.title {
  color: white;
  text-transform: lowercase;
}
@media (min-width: 0) and (max-width: 439px) {
  .title {
    font-size: 10vw;
  }
}
@media (min-width: 440px) and (max-width: 839px) {
  .title {
    font-size: 44px;
  }
}
@media (min-width: 840px) and (max-width: 1919px) {
  .title {
    padding-right: 40px;
    font-size: 5.7291666667vw;
  }
}
@media (min-width: 1920px) {
  .title {
    padding-right: 40px;
    font-size: 110px;
  }
}
.title strong {
  position: relative;
  width: 4.5em;
  font-weight: 700;
  line-height: 1.2em;
}
@media (min-width: 0) and (max-width: 839px) {
  .title strong {
    display: block;
    margin-top: 20px;
    color: white;
  }
  .title strong:first-child {
    margin-top: 0;
  }
}
@media (min-width: 840px) {
  .title strong {
    display: inline-block;
    color: #434d3e;
  }
}
@media (min-width: 840px) {
  .title span {
    position: absolute;
    top: -5000px;
    right: 15px;
    z-index: -1;
    display: block;
    width: 10000px;
    height: 10000px;
    background-color: white;
  }
}

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