/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

*:focus {
  outline: none;
}


html {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  -webkit-tap-highlight-color: transparent;
  padding-top: 91px;
}

main {
  display: block;
}

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

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

a {
  background-color: transparent;
}

header a[href="javascript:void(0);"], 
header a[href="javascript:void(0)"], 
header a[href="#"]{
  pointer-events: none;
}

a[href]:hover {
  text-decoration: underline;
}

a[href][class*="btn"],
a[href][class*="link"] {
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  display: block;
}

.img-responsive {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: 0
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 0 35px;
  margin: 0 auto;
}

.hide,
.visible-md {
  display: none;
}

[class*="short-description"],
[class*="short-description"] p,
.sub-title {
  font-size: 18px;
  font-weight: 450;
  line-height: 24px;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 15px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

h1 {
  font-size: 32px;
  line-height: 36px;
}

h2 {
  font-size: 26px;
  line-height: 1;
}

h3 {
  font-size: 21px;
  line-height: 27px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5,
.btn,
.link {
  font-size: 16px;
  line-height: 20px;
}

h6 {
  font-size: 14px;
  line-height: 16px;
}

/* 
.text-sm {
  line-height: 24px;
  font-weight: 300;
} */

[class*="short-description"] {
  font-size: 18px;
  line-height: 28px;
}

.index-2 {
  z-index: 2;
  position: relative;
}

.row {
  margin: 0 -15px;
}

.flex {
  display: flex;
}


.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}


.flex-grow-1 {
  flex-grow: 1;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal{
  font-weight: 400;;
}

.justify-content-end {
  justify-content: flex-end;
}


.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

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

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

.align-content-between {
  align-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.col-6 {
  width: 100%;
  padding: 0 15px;
}


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

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

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

section {
  width: 100%;
  position: relative;
  padding: 45px 0;
  z-index: 1;
}

.link {
  font-weight: 450;
  position: relative;
}

.link:not(.link-bordered):hover {
  text-decoration: underline !important;
}

.link {
  font-size: 14px;
}

.card-cta .link {
  display: inline-block;
  font-size: 15px;
}

.link-bordered {
  border-bottom: 1px solid #000;
}

.link-orange {
  color: var(--orange);
}

.link-white {
  color: var(--white);
}

.dark-theme,
.dark-theme a {
  color: var(--white);
}

.dark-theme .link-bordered {
  border-bottom: 1px solid #fff;
}

.border {
  border: 2px solid transparent;
}


.border-bottom {
  position: relative;
}


.border-bottom:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 100%;
}


.border-dark-red:after {
  background: var(--dark-red);
}


.link-arrow:after {
  content: "";
  position: relative;
  bottom: 0;
  background: url(./../images/arrow.png) no-repeat center center/contain;
  margin-left: 10px;
  display: inline-block;
  width: 6px;
  height: 12px;
}

.btn {
  display: inline-block;
  min-width: 111px;
  border-radius: 5px;
  padding: 10px 22px;
  line-height: 20px;
  color: var(--black);
  font-weight: 450;
  border: 2px solid transparent;
  transition: all 0.3s;
  text-align: center;
}

.btn:hover,
.dark-theme .btn:hover {
  background: transparent;
}

.btn-orange {
  background: var(--orange);
}

.btn-orange:hover {
  border-color: var(--orange);
}

.dark-theme .btn-orange {
  background: var(--light-orange);
  color: var(--black);
}

.dark-theme .btn-orange:hover {
  border-color: var(--light-orange);
  color: var(--white);
}

.dark-theme .btn-white {
  background: var(--black);
  border-color: var(--white);
  color: var(--white);
}

.dark-theme .btn-white:hover {
  background: var(--white);
  color: var(--black);
}


.btn-dark-red {
  background: var(--dark-red);
  color: var(--white);
}

.btn-dark-red:hover {
  border-color: var(--dark-red);
  color: var(--black);
}

.dark-theme .btn-dark-red:hover {
  color: var(--white);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  border-color: var(--red);
  color: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-transparent {
  border-color: var(--light-orange);
  color: var(--black);
}

.dark-theme .btn-transparent {
  border-color: var(--light-orange);
  color: var(--white);
}

.dark-theme .btn-transparent:hover {
  border-color: var(--white);
}

.bg-black {
  background: var(--black);
}

.bg-white {
  background: var(--white);
  color: var(--black);
}

.bg-white .link {
  color: var(--black);
}

.bg-dark-red {
  background: var(--dark-red);
}

.bg-light-gray {
  background: var(--light-gray);
}

.bg-gray {
  background: var(--gray);
}

.m-auto {
  margin: auto;
}

.tag {
  padding: 4px 15px;
  background: var(--black);
  display: inline-block;
  margin: 10px 10px 0 0;
  border-radius: 5px;
  color: var(--white);
  font-size: 12px;
  line-height: 14px;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.full-thumbnail {
  height: 250px;
}

[data-columns] {
  display: grid;
  grid-gap: var(--spacing-01);
}

[class*="has-decorative-elm"] {
  position: relative;
  z-index: 1;
}

[class*="has-decorative-elm"]:after,
[class*="has-decorative-elm"]:before {
  position: absolute;
  content: '';
}

.cta-wrapper {
  margin-top: 15px;
}

.fancybox-opened {
  z-index: 9999999 !important;
}

.eyebrow-small{
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.56px;
  text-transform: uppercase;
}


.list-block {
  padding-bottom: var(--spacing-04);
}

.list-block li {
  position: relative;
  padding-left: 5px;
  line-height: 1.5;
  text-indent: -5px;
}

.list-block li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #000;
  position: relative;
  left: -5px;
  top: -3px;
  display: inline-block;
}

@media all and (min-width: 480px) {
  [data-columns="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media all and (min-width: 768px) {
  [data-columns="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: 36px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 23px;
    line-height: 30px;
  }

  [class*="short-description"],
[class*="short-description"] p,
  .sub-title {
    line-height: 25px;
  }

  .container {
    padding: 0 55px;
  }

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

  p {
    letter-spacing: -0.019em;
  }

  .col-6 {
    width: 50%;
  }

  .full-thumbnail {
    height: 435px;
  }


  .link {
    font-size: 16px;
  }

  .cta-wrapper a:first-child{
    margin-right: 38px;
  }

  [data-columns="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media all and (min-width: 992px) {
  [data-columns] {
    grid-gap: var(--spacing-06);
  }

  [data-columns="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-columns="4"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media all and (min-width: 1200px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 1280px) {
  .visible-md {
    display: inline-block;
  }
}

@media (min-width: 1400px) {
  h1 {
    font-size: 42px;
    line-height: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  [class*="short-description"],
[class*="short-description"] p,
  .sub-title {
    font-size: 20px;
    line-height: 28px;
  }

  .container {
    padding: 0 20px;
  }
}