/* Vars */
:root {
  --color-primary: #ff1f2d;
  --color-primary-lighter: #ff717a;
  --color-primary-darker: #ce131f;
  --color-secondary: #000;
  --color-secondary-lighter: #000;
  --color-secondary-darker: #000;
  --color-accent: var(----color-primary);
  --color-muted: #e7e7e7;
  --color-red: #a62022;
  --color-orange: #ee7f00;
  --color-green: #729648;
  --text-color: #000;
  --text-muted-color: #777;
  --gutter-section: 30px; }
  @media (min-width: 960px) {
    :root {
      --gutter-section: 50px; } }
  @media (min-width: 1280px) {
    :root {
      --gutter-section: 60px; } }
  @media (min-width: 1600px) {
    :root {
      --gutter-section: 100px; } }

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

html {
  font-family: "articulat-cf", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--color-primary);
  word-break: break-word; }
  @media (min-width: 960px) {
    html {
      font-size: 25px; } }

p,
ul,
ol,
dl,
address,
fieldset,
figure {
  font-style: normal; }
  p:not(:first-child),
  ul:not(:first-child),
  ol:not(:first-child),
  dl:not(:first-child),
  address:not(:first-child),
  fieldset:not(:first-child),
  figure:not(:first-child) {
    margin-top: 20px; }

ul, ol {
  padding-left: 25px; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 300;
  text-transform: none;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
  word-break: break-word;
  margin-top: 30px; }
  h1:first-child, style + h1, h2:first-child, style + h2, h3:first-child, style + h3, h4:first-child, style + h4, h5:first-child, style + h5, h6:first-child, style + h6,
  .h1:first-child, style +
  .h1, .h2:first-child, style + .h2, .h3:first-child, style + .h3, .h4:first-child, style + .h4, .h5:first-child, style + .h5, .h6:first-child, style + .h6 {
    margin-top: 0; }

h1, .h1 {
  font-size: 40px; }
  @media (min-width: 1280px) {
    h1, .h1 {
      font-size: 80px; } }

h2, .h2 {
  color: var(--color-secondary);
  font-size: 34px;
  line-height: 1.2; }
  @media (min-width: 1280px) {
    h2, .h2 {
      font-size: 60px; } }
  h2 em, .h2 em {
    font-style: normal;
    font-family: BARNEGAT, sans-serif;
    color: var(--color-primary); }
  h4 + h2, h4 + .h2 {
    margin-top: 0; }

h3, .h3 {
  font-size: 20px;
  line-height: 1.3; }
  @media (min-width: 960px) {
    h3, .h3 {
      font-size: 25px; } }

h4, .h4 {
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 700; }

h5, .h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300; }
  @media (min-width: 960px) {
    h5, .h5 {
      font-size: 25px; } }

blockquote * {
  font-style: italic;
  color: var(--color-primary); }

blockquote:not(:first-child) {
  margin-top: 15px; }

hr {
  border: 0;
  height: 1px;
  background: #e6e6e6; }

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

a {
  color: var(--text-color);
  text-decoration: none; }
  a:hover {
    text-decoration: none;
    color: var(--text-color-lighter); }

::-moz-selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none; }

::selection, mark {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none; }

small {
  font-size: 16px; }

strong, b {
  font-weight: 900;
  color: var(--color-secondary); }

em {
  font-style: italic; }

abbr {
  text-decoration: none; }

iframe {
  border: 0; }

::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-color); }

::-moz-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-color); }

:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-color); }

:-moz-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-color); }

/* Layout */
.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1280px; }
  .container.small {
    max-width: 960px; }
  .container.large {
    max-width: 1480px; }
  .container.expand {
    max-width: none; }

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -7.5px;
  /* @include respond-to($breakpoint-large) {
    margin: -30px;

    & > * {
      padding: 30px;
    }
  } */ }
  .grid > * {
    width: 100%;
    padding: 7.5px; }
  @media (min-width: 960px) {
    .grid {
      margin: -15px; }
      .grid > * {
        padding: 15px; }
      .grid.gutter-small {
        margin: -7.5px; }
        .grid.gutter-small > * {
          padding: 7.5px; } }
  .grid.center {
    align-items: center; }

@media (min-width: 480px) {
  .w-1-2\@s, #content .gallery .item {
    width: 50%; }
  .w-1-3\@s {
    width: 33.33333%; }
  .w-2-3\@s {
    width: 66.66666%; }
  .w-1-4\@s {
    width: 25%; }
  .w-3-4\@s {
    width: 75%; }
  .w-1-5\@s {
    width: 20%; }
  .w-2-5\@s {
    width: 40%; }
  .w-3-5\@s {
    width: 60%; }
  .w-4-5\@s {
    width: 80%; } }

@media (min-width: 960px) {
  .w-1-2\@m {
    width: 50%; }
  .w-1-3\@m, #content .gallery .item {
    width: 33.33333%; }
  .w-2-3\@m {
    width: 66.66666%; }
  .w-1-4\@m {
    width: 25%; }
  .w-3-4\@m {
    width: 75%; }
  .w-1-5\@m {
    width: 20%; }
  .w-2-5\@m {
    width: 40%; }
  .w-3-5\@m {
    width: 60%; }
  .w-4-5\@m {
    width: 80%; } }

@media (min-width: 1280px) {
  .w-1-2\@l {
    width: 50%; }
  .w-1-3\@l {
    width: 33.33333%; }
  .w-2-3\@l {
    width: 66.66666%; }
  .w-1-4\@l, #content .gallery .item {
    width: 25%; }
  .w-3-4\@l {
    width: 75%; }
  .w-1-5\@l {
    width: 20%; }
  .w-2-5\@l {
    width: 40%; }
  .w-3-5\@l {
    width: 60%; }
  .w-4-5\@l {
    width: 80%; } }

@media (min-width: 1600px) {
  .w-1-2\@xl {
    width: 50%; }
  .w-1-3\@xl {
    width: 33.33333%; }
  .w-2-3\@xl {
    width: 66.66666%; }
  .w-1-4\@xl {
    width: 25%; }
  .w-3-4\@xl {
    width: 75%; }
  .w-1-5\@xl {
    width: 20%; }
  .w-2-5\@xl {
    width: 40%; }
  .w-3-5\@xl {
    width: 60%; }
  .w-4-5\@xl {
    width: 80%; } }

/* Tools */
.padding-vertical {
  padding-top: var(--gutter-section);
  padding-bottom: var(--gutter-section); }

.margin-vertical, hr, .section {
  margin: var(--gutter-section) 0; }

.visible\@s,
.visible\@m,
.visible\@l,
.visible\@xl {
  display: none; }

@media (min-width: 480px) {
  .visible\@s {
    display: initial; }
  .hidden\@s {
    display: none; } }

@media (min-width: 960px) {
  .visible\@m {
    display: initial; }
  .hidden\@m {
    display: none; } }

@media (min-width: 1280px) {
  .visible\@l {
    display: initial; }
  .hidden\@l {
    display: none; } }

@media (min-width: 1600px) {
  .visible\@xl {
    display: initial; }
  .hidden\@xl {
    display: none; } }

.inverse * {
  color: var(--color-primary); }

.inverse a {
  color: var(--color-primary); }

/* Buttons */
.button, input[type=submit] {
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  line-height: 1;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  height: 60px;
  padding: 0 45px;
  transition: all ease-in-out 0.2s;
  white-space: nowrap;
  letter-spacing: 0; }
  .button:hover, input:hover[type=submit] {
    background: #000;
    color: var(--color-primary); }
  .inverse .button, .inverse input[type=submit] {
    border-color: var(--color-primary);
    color: var(--color-primary); }
    .inverse .button:hover, .inverse input:hover[type=submit] {
      background: var(--color-primary);
      color: #000 !important; }

table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  font-size: 17px;
  line-height: 1.3;
  font-weight: normal; }
  table:not(:first-child) {
    margin-top: 15px; }
  table tr {
    border-top: 1px solid #ddd; }
  table > tr:first-child,
  table > thead:first-child > tr:first-child,
  table > tbody:first-child > tr:first-child {
    border-top: none; }
  table th, table td {
    padding: 6px 12px 6px 0; }
    table th:last-child, table td:last-child {
      padding-right: 0; }
  table thead td, table th {
    font-weight: normal;
    color: var(--text-muted-color); }
  @media (min-width: 960px) {
    table {
      font-size: 19px; }
      table td, table th {
        padding: 8px 16px 8px 0; }
      table thead td, table th {
        font-size: 17px; } }

.table-responsive {
  width: 100%;
  overflow-x: scroll; }
  .table-responsive > table {
    max-width: none;
    width: auto;
    min-width: 100%; }

@media (max-width: 959px) {
  .table-collapse th, .table-collapse td {
    display: block;
    text-align: center;
    padding-left: 0;
    padding-right: 0; }
    .table-collapse th:not(:first-child), .table-collapse td:not(:first-child) {
      padding-top: 0; } }

/* Forms */
.input-base, input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=tel], textarea, select {
  font-family: inherit;
  font-size: 18px;
  font-weight: inherit;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 4px; }
  .input-base:focus, input:focus[type=text],
  input:focus[type=email],
  input:focus[type=number],
  input:focus[type=password],
  input:focus[type=date],
  input:focus[type=tel], textarea:focus, select:focus {
    outline: none; }

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
input[type=tel] {
  height: 50px;
  padding: 0 15px; }

textarea {
  padding: 15px;
  height: 200px; }

select {
  height: 50px;
  padding: 0 8px; }

label {
  display: block;
  color: var(--text-color);
  font-size: 15px; }

fieldset {
  border: none; }

/* Elements */
.menu-button {
  display: inline-block;
  position: relative;
  height: 28px;
  width: 34px; }
  .menu-button > span, .menu-button:before, .menu-button:after {
    display: block;
    background: var(--color-primary);
    height: 3px;
    position: absolute;
    width: 100%;
    transition: all ease-in-out 0.2s; }
    .inverse .menu-button > span, .inverse .menu-button:before, .inverse .menu-button:after {
      background: #000; }
  .menu-button:hover > span, .menu-button:hover:before, .menu-button:hover:after {
    background: var(--color-primary-darker); }
  .menu-button > span {
    top: 50%;
    margin-top: -1px; }
  .menu-button:before {
    content: "";
    top: 1px; }
  .menu-button:after {
    content: "";
    bottom: 0; }
  .menu-button.close:before {
    transform: rotate(-135deg);
    top: 50%;
    margin-top: -1px; }
  .menu-button.close:after {
    transform: rotate(135deg);
    top: 50%;
    margin-top: -1px; }
  .menu-button.close > span {
    opacity: 0; }

div[data-elementor-type="wp-page"] div[data-element_type="container"] {
  --margin-top: var(--gutter-section);
  --margin-bottom: var(--gutter-section);
  --padding-left: 0;
  --padding-right: 0; }
  div[data-elementor-type="wp-page"] div[data-element_type="container"] .e-con-inner {
    padding-left: 15px;
    padding-right: 15px; }
    div[data-elementor-type="wp-page"] div[data-element_type="container"] .e-con-inner .e-con-inner {
      padding-left: 0;
      padding-right: 0; }

div[data-element_type="container"] div[data-element_type="container"] {
  --margin-top: 0;
  --margin-bottom: 0;
  --padding-left: 0;
  --padding-right: 0; }

.e-con {
  --container-max-width: 1280px; }
  @media (min-width: 1280px) {
    .e-con {
      --column-gap: 50px; } }
  @media (min-width: 1600px) {
    .e-con {
      --column-gap: 80px; } }

#hero {
  height: 300vh; }
  #hero * {
    color: var(--color-primary); }
  #hero > .inner {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; }
  #hero .video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    #hero .video video {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    #hero .video:after {
      display: block;
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); }
  #hero .inner > .container {
    position: relative;
    height: 100%;
    padding-top: var(--header-height);
    padding-bottom: 30px;
    display: flex;
    align-items: center; }
    #hero .inner > .container > div {
      max-width: 1000px; }
  #hero .inner h1 {
    font-family: BARNEGAT, sans-serif; }
    #hero .inner h1 em {
      font-style: normal;
      text-decoration: underline;
      text-decoration-thickness: 3px;
      text-underline-offset: 8px; }
  #hero .bottom {
    position: absolute;
    bottom: 15px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right; }
  #hero #hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70vh;
    width: 70vh;
    transform: translate(-50%, -50%);
    background: var(--color-primary) url(/wp-content/themes/custom/images/hero-zoom-overlay.svg) no-repeat center center;
    background-size: contain;
    transform-origin: 50% 50%;
    box-shadow: inset 0 0 5px 10px var(--color-primary), 0 0 0 200vw var(--color-primary);
    transition: background-color ease 0.5s;
    will-change: width, height;
    pointer-events: none; }
    @media (orientation: portrait) {
      #hero #hero-overlay {
        height: 80vw;
        width: 80vw; } }
  @media (min-width: 960px) {
    #hero .video:after {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%); }
    #hero h1 {
      font-size: 50px; }
    #hero .bottom {
      bottom: 30px;
      font-size: 18px; } }
  @media (min-width: 1280px) {
    #hero h1 {
      font-size: 70px; } }

.ticker {
  height: 40px;
  background: var(--color-primary-darker);
  color: #fff;
  line-height: 40px; }
  .ticker > div {
    display: flex; }
  .ticker .heading {
    font-weight: 900;
    text-transform: uppercase;
    padding-right: 15px; }

#hero-subpage .img {
  background: var(--color-muted) no-repeat center center;
  background-size: cover; }

#hero-subpage .container {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 30px; }

#hero-subpage.has-image .container {
  min-height: 550px !important;
  padding-top: 100px !important;
  padding-bottom: 30px !important; }

#hero-subpage .text {
  max-width: 800px; }

@media (min-width: 960px) {
  #hero-subpage .container {
    padding-top: 180px; } }

@media (min-width: 1280px) {
  #hero-subpage .container {
    padding-top: 200px;
    padding-bottom: 50px; } }

.buttons {
  display: flex;
  flex-wrap: wrap; }
  .buttons.alignment-center {
    justify-content: center; }
  .buttons.alignment-left {
    margin: -5px; }
  .buttons.alignment-right {
    margin: -5px;
    justify-content: flex-end; }
  .buttons .button, .buttons input[type=submit] {
    margin: 5px; }

@media (max-width: 1310px) {
  .linked-sections {
    margin: 0 -15px; } }

.linked-sections .item {
  background: var(--color-primary);
  border-top: 1px solid #fff;
  transition: all ease-in-out 0.3s; }
  .linked-sections .item.secondary {
    background: var(--color-secondary); }

.linked-sections .intro {
  cursor: pointer;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px; }
  .linked-sections .intro .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent no-repeat center center;
    background-size: cover;
    mix-blend-mode: multiply; }

.linked-sections h2 {
  font-size: 25px;
  color: #fff;
  position: relative;
  text-align: center; }

.linked-sections .text {
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.3s; }
  .linked-sections .text > div {
    padding: 30px 15px; }

.linked-sections .item.show .text {
  max-height: 600px; }

@media (min-width: 960px) {
  .linked-sections .item {
    display: flex;
    min-height: 380px;
    overflow: hidden; }
  .linked-sections .intro {
    height: auto;
    width: 100%;
    transition: all ease-in-out 0.3s; }
  .linked-sections .text {
    width: 50%;
    margin-right: -50%;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center; }
    .linked-sections .text > div {
      padding: 30px; }
  .linked-sections .item.show .intro {
    width: 50%; }
  .linked-sections .item.show .text {
    width: 50%; } }

@media (min-width: 1280px) {
  .linked-sections .item {
    min-height: 480px; } }

.content-slider .slide {
  width: 100%;
  height: 100vh; }

.content-slider .img {
  width: 100%;
  height: 100%;
  background: transparent no-repeat center center;
  background-size: cover; }

.content-slider .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

.content-slider .text {
  max-width: 1000px;
  line-height: 1.4; }
  .content-slider .text * {
    color: #fff;
    text-align: center; }
  .content-slider .text h2 {
    font-family: BARNEGAT, sans-serif; }
  .content-slider .text p {
    margin-top: 30px; }

.content-slider .flickity-prev-next-button {
  display: none; }

@media (min-width: 960px) {
  .content-slider .text {
    line-height: 1.5; } }

@media (min-width: 1400px) {
  .content-slider .flickity-prev-next-button {
    display: block; } }

.quote {
  padding: var(--gutter-section) 0;
  background: var(--color-primary);
  color: #fff; }
  .quote .img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    background: transparent no-repeat center center;
    background-size: cover; }
  .quote .content {
    margin-top: 30px; }
  .quote .text, .quote .text * {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase; }
  .quote .from {
    margin-top: 10px;
    font-size: 16px; }
  @media (min-width: 960px) {
    .quote .container {
      display: flex;
      align-items: center; }
    .quote .img {
      flex: 0 0 auto;
      margin: 0; }
    .quote .content {
      margin-top: 0;
      padding-left: 50px; } }

.section-linked a {
  display: block;
  height: 80vh; }

.section-linked.small a {
  height: 50vh; }

.section-linked .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center center;
  background-size: cover;
  filter: grayscale(1);
  transition: all linear 0.2s; }

.section-linked .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.7;
  transition: all linear 0.2s; }

.section-linked a:hover .img {
  filter: grayscale(0); }

.section-linked a:hover .overlay {
  opacity: 0.2; }

.section-linked .text {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.team {
  margin: 30px 0; }
  .team h2.title {
    margin-bottom: 30px; }
  .team a:hover {
    border-bottom: 2px solid var(--text-color); }
  .team .item {
    text-align: center; }
    .team .item .img {
      margin: 0 auto;
      width: 200px;
      height: 200px;
      background: transparent no-repeat center center;
      background-size: cover;
      border-radius: 50%; }
    .team .item .name {
      margin-top: 15px;
      font-weight: 800; }
  @media (min-width: 480px) {
    .team .item {
      width: 50%; } }
  @media (min-width: 960px) {
    .team .item {
      width: 33.333333%; } }

.text-read-more .read-more-link {
  margin: 20px 0;
  /* position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; */ }
  .text-read-more .read-more-link a {
    /* display: block;
      height: 100%;
      text-align: center;
      text-decoration: none;
      border: none;
      line-height: 50px; */ }

.text-read-more .read-more-content {
  display: none;
  padding-top: 20px; }

#hero .flickity-page-dots,
.content-slider .flickity-page-dots {
  bottom: 20px; }
  #hero .flickity-page-dots .dot,
  .content-slider .flickity-page-dots .dot {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid #fff;
    margin: 0 4px;
    opacity: 1; }
    #hero .flickity-page-dots .dot.is-selected,
    .content-slider .flickity-page-dots .dot.is-selected {
      background: #fff; }

#hero .flickity-button,
.content-slider .flickity-button {
  background: none !important; }
  #hero .flickity-button svg,
  .content-slider .flickity-button svg {
    fill: #fff;
    width: 80% !important;
    height: 80% !important; }
  #hero .flickity-button:hover,
  .content-slider .flickity-button:hover {
    background: none; }

#content .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px; }
  #content .gallery br {
    display: none !important; }
  #content .gallery .item {
    max-width: none;
    padding: 10px;
    float: none;
    margin: 0; }
    @media (max-width: 479px) {
      #content .gallery .item {
        width: 100%; } }
    #content .gallery .item a {
      display: block;
      height: 0;
      padding-bottom: 100%;
      position: relative; }
      #content .gallery .item a:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0;
        transition: all linear 0.2s; }
      #content .gallery .item a img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: none !important;
        transition: all linear 0.1s; }
      #content .gallery .item a:hover:after {
        opacity: 0.1; }
      #content .gallery .item a:hover img {
        filter: none; }
