/*****************************************
* Boilerplate
******************************************/

:root {
  --tt-gap: 0px;
  --tt-container: 1800px;

  --tt-nav-toggle-color: #000000;

  --global-content-max-width: 1800px;
  --responsive-content-width: 87.5%;
  --responsive-content-max-width: var(--global-content-max-width);
  --responsive-content-clamped-width: min(var(--responsive-content-max-width), var(--responsive-content-width));
  --responsive-gutter-width: calc(50% - var(--responsive-content-clamped-width) / 2)
}

/*****************************************
* Reset (Remove Default Browser Styles)
******************************************/

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

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

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
  
footer {
  margin-top:auto;
}

strong {
	font-weight: bold;
}

em {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strikeout {
  text-decoration: line-through;
}

/* List Styles */
ol,
ul {
  margin: 0 0 1rem .5rem;
}

ol li,
ul li {
  margin: 0 0 .5rem 1rem;
}

blockquote, q {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
}

.ellipsis-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/****************************************
* Form Elements
****************************************/

input,
textarea,
select {
  padding: 0.5em;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
  height: 42px;
  font: inherit;
  line-height: 1rem;
  margin-bottom: 1rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input::placeholder {
  color: #757575;
}

fieldset {
  margin-bottom: 1rem;
}

select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  resize: vertical;
  min-height: 65px;
}

textarea.large {
  min-height: 130px;
}

select {
  cursor: pointer;
}

::-moz-focus-inner {
  border: 0;
}

*:disabled {
  cursor: not-allowed;
}

input:focus,
textarea:focus,
select:focus,
[type="file"]:focus + label {
  outline: 1px solid #0070ce;
}

[type="checkbox"] {
  width: auto;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

[type="checkbox"] + label {
  position: relative;
  display: block;
  margin-right: 1em;
}

[type="checkbox"]:not(.background) + label {
  padding-left: 22px;
}

[type="checkbox"]:not(.background) + label:before {
  content: '';
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #202020;
  color: #ffffff;
  transition: background-color 0.3s;
}

[type="checkbox"]:not(.background) + label.right {
  padding-left: 0;
  padding-right: 25px;
}

[type="checkbox"] + label.right:before {
  left: auto;
  right: 0;
}

[type="radio"]:focus + label:before,
[type="checkbox"]:focus + label:before {
  outline: 1px solid #202020;
}

[type="checkbox"] + label:before {
  border-radius: 3px;
}

[type="checkbox"]:not(.background):checked + label:before {
  content: "\2713";
  background: #202020;
}

[type="checkbox"].background:checked + label {
  background-color: #ebedf2;
}

/* Radio */
[type="radio"] {
  position: relative;
  margin: 0 .5rem 0 0;
  background-color: #202020;
  border: none;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

[type="radio"]:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
  opacity: 0;

  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background-color: #ffffff;
  border-radius: 50%;
}

[type="radio"]:checked:after {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 1;
}

/* File */
[type="file"] {
  width: 0.1px;
	height: 0.1px;
	opacity: 0;
  position: absolute;
	z-index: -1;
}

[type="file"] + label,
button.upload-button {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 5px;
  background-color: #0e698b;
  padding: 10px 20px 10px 45px;
  color: #ffffff;
  cursor: pointer;
}

[type="file"] + label .uploadIcon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

button .upload-icon,
button .upload-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

button.upload-button .label-text {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-transform: none;
  text-overflow: ellipsis;
  letter-spacing: 1px;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
[type="file"]:focus + label,
[type="file"]:focus + button {
  outline: 1px solid #0070ce;
}

label {
  display: inline-block;
  margin-bottom: 4px;
}

label.invalid {
  color: #DD0000;
}

input.invalid,
textarea.invalid,
select.invalid,
[type="radio"].invalid + label:before,
[type="checkbox"].invalid + label:before,
input[type="file"].invalid + button {
  outline: 1px solid #DD0000;
}

button,
[type="submit"] {
  height: auto;
  cursor: pointer;
}

[type="submit"]:disabled {
  cursor: not-allowed;
}

.honey-wrapper {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/****************************************
* Fields
****************************************/

.field {
  position: relative;
  width: 100%;
}

.field label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px 0;
  background-color: transparent;
  width: 100%;
  padding: 0 8px;
  color: #737373;
  font-size: 13px;
  visibility: hidden;
  pointer-events: none;
}

.field label.show {
  visibility: visible;
}

.field input,
.field textarea {
  height: 46px;
  color: #767676;
  font-size: 18px;
  transition: all .04s ease-in;
}

.field input:focus,
.field textarea:focus {
  padding-top: 1.5rem;
  font-size: 16px;
}

input,
[type="submit"],
[type="radio"] {
  -webkit-appearance: none;
}

/****************************************
* Styled Select
****************************************/

.styled-select {
  position: relative;
  background-color: inherit;
  width: 100%;
}

.angle-down svg {
  position: absolute;
  top: 9px;
  right: 3px;
  width: 15px;
  height: 15px;
  fill: #bdbdbd;
}

.styled-select select {
  margin-bottom: 0;
  padding-right: 23px;
}

/****************************************
* Notification
****************************************/

.notification.hidden {
  display: none;
}

.notification {
  display: inline-block;
  position: relative;
  margin: 1rem 0;
  border-radius: 5px;
  width: 100%;
  padding: .5rem 1rem .5rem 3rem;
  color: #ffffff;
}

.notification:empty {
  display: none;
}

.notification:before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  margin-right: .5rem;
  background-color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-weight: 700;
}

.notification svg {
  position: absolute;
  top: 50%;
  left: .75rem;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  fill: #ffffff;
}

.notification.error {
  background-color: #fae3ec;
  color: #d52536;
}

.notification.error:before {
  content: '\0021';
  background-color: #d52536;
  color: #fae3ec;
}

.notification.success {
  background-color: #e3faf2;
  color: #018f60;
}

.notification.success:before {
  content: '\2713';
  background-color: #018f60;
  color: #e3faf2;
}

.notification.notice {
  background-color: #0070ce;
}

.notification p {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
}

/****************************************
* Error message
****************************************/

.required,
.error-message {
  color: #d52536;
}

/****************************************
* Display
****************************************/

.honey,
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline-block !important;
  width: auto;
}

.d-hidden {
  visibility: hidden !important;
}

.d-visible {
  visibility: visible !important;
}

@media(min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-hidden {
    visibility: hidden !important;
  }

  .d-sm-visible {
    visibility: visible !important;
  }
}

@media(min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-hidden {
    visibility: hidden !important;
  }

  .d-md-visible {
    visibility: visible !important;
  }
}

@media(min-width: 1140px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-hidden {
    visibility: hidden !important;
  }

  .d-lg-visible {
    visibility: visible !important;
  }
}

@media(min-width: 1400px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-hidden {
    visibility: hidden !important;
  }

  .d-xl-visible {
    visibility: visible !important;
  }
}

/****************************************
* Flex
****************************************/

.d-flex,
.d-flex-row,
.d-flex-column,
.flex-row,
.flex-column {
  display: flex;
  gap: var(--tt-gap);
}

.d-flex-row,
.flex-row {
  flex-direction: row;
}

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

.d-flex.wrap,
.d-flex-row.wrap,
.d-flex-column.wrap {
  flex-wrap: wrap;
}

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

.center-all {
  justify-content: center;
  align-items: center;
}

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

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

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

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

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

.align-end {
  align-items: flex-end;
}

.flex-span-y {
  flex: 1 0 auto;
}

/****************************************
* Flex space
****************************************/

.space-1 > * + * {
  margin-left: .5rem !important;
}

/****************************************
* Container
****************************************/

.container {
  margin: 0 auto;
  max-width: var(--global-content-max-width);
  padding: 2rem var(--responsive-gutter-width);
}

.container.d-grid,
.container.d-flex {
  gap: 1rem;
}

@media (min-width: 567px) {
  .container.d-grid,
  .container.d-flex {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 2rem 3rem;
  }
}

@media (min-width: 1140px) {
  .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .container.d-grid,
  .container.d-flex {
    gap: 4rem;
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 3rem 6rem;
  }
}

/****************************************
* Container widths
****************************************/

.width-md,
.width-lg {
  margin: 4rem auto 0;
}

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

.width-lg {
  max-width: 900px;
}

/****************************************
* Grid
****************************************/

.d-grid {
  display: grid;
  gap: var(--tt-gap);
}

.col-auto-1 {
  grid-template-columns: auto 1fr;
}

.col-1 {
  grid-template-columns: 1fr;
}

.col-2 {
  grid-template-columns: 1fr 1fr;
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.col-9 {
  grid-template-columns: repeat(9, 1fr);
}

.col-10 {
  grid-template-columns: repeat(10, 1fr);
}

.col-11 {
  grid-template-columns: repeat(11, 1fr);
}

.col-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media (min-width: 576px) {
  .col-sm-1 {
    grid-template-columns: 1fr;
  }

  .col-sm-2 {
    grid-template-columns: 1fr 1fr;
  }

  .col-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .col-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .col-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .col-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-sm-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .col-sm-8 {
    grid-template-columns: repeat(8, 1fr);
  }

  .col-sm-9 {
    grid-template-columns: repeat(9, 1fr);
  }

  .col-sm-10 {
    grid-template-columns: repeat(10, 1fr);
  }

  .col-sm-11 {
    grid-template-columns: repeat(11, 1fr);
  }

  .col-sm-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 768px) {
  .col-md-auto-1 {
    grid-template-columns: auto 1fr;
  }

  .col-md-1 {
    grid-template-columns: 1fr;
  }

  .col-md-1-auto {
    grid-template-columns: 1fr auto;
  }

  .col-md-2 {
    grid-template-columns: 1fr 1fr;
  }

  .col-md-2-auto {
    grid-template-columns: 1fr auto;
  }

  .col-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .col-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .col-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .col-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-md-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .col-md-8 {
    grid-template-columns: repeat(8, 1fr);
  }

  .col-md-9 {
    grid-template-columns: repeat(9, 1fr);
  }

  .col-md-10 {
    grid-template-columns: repeat(10, 1fr);
  }

  .col-md-11 {
    grid-template-columns: repeat(11, 1fr);
  }

  .col-md-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 1140px) {
  .col-lg-1 {
    grid-template-columns: 1fr;
  }

  .col-lg-1-auto {
    grid-template-columns: 1fr auto;
  }

  .col-lg-1-2 {
    grid-template-columns: 1fr 2fr;
  }

  .col-lg-2 {
    grid-template-columns: 1fr 1fr;
  }

  .col-lg-2-auto {
    grid-template-columns: 1fr auto;
  }

  .col-lg-2-1 {
    grid-template-columns: 2fr 1fr;
  }

  .col-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .col-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .col-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .col-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-lg-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .col-lg-8 {
    grid-template-columns: repeat(8, 1fr);
  }

  .col-lg-9 {
    grid-template-columns: repeat(9, 1fr);
  }

  .col-lg-10 {
    grid-template-columns: repeat(10, 1fr);
  }

  .col-lg-11 {
    grid-template-columns: repeat(11, 1fr);
  }

  .col-lg-12 {
   grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 1400px) {
  .col-xl-1 {
    grid-template-columns: 1fr;
  }

  .col-xl-2 {
    grid-template-columns: 1fr 1fr;
  }

  .col-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .col-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .col-xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .col-xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .col-xl-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .col-xl-8 {
    grid-template-columns: repeat(8, 1fr);
  }

  .col-xl-9 {
    grid-template-columns: repeat(9, 1fr);
  }

  .col-xl-10 {
    grid-template-columns: repeat(10, 1fr);
  }

  .col-xl-11 {
    grid-template-columns: repeat(11, 1fr);
  }

  .col-xl-12 {
   grid-template-columns: repeat(12, 1fr);
  }
}

/****************************************
* Flex columns
****************************************/

.d-flex.col-1 > * {
  width: 100%;
}

.d-flex.col-2 > * {
  width: calc((100% / 2) - var(--tt-gap));
}

.d-flex.col-3 > * {
  width: calc((100% / 3) - var(--tt-gap));
}

.d-flex.col-4 > * {
  width: calc((100% / 4) - var(--tt-gap));
}

.d-flex.col-5 > * {
  width: calc((100% / 5) - var(--tt-gap));
}

.d-flex.col-6 > * {
  width: calc((100% / 6) - var(--tt-gap));
}

.d-flex.col-7 > * {
  width: calc((100% / 7) - var(--tt-gap));
}

.d-flex.col-8 > * {
  width: calc((100% / 8) - var(--tt-gap));
}

.d-flex.col-9 > * {
  width: calc((100% / 9) - var(--tt-gap));
}

.d-flex.col-10 > * {
  width: calc((100% / 10) - var(--tt-gap));
}

.d-flex.col-11 > * {
  width: calc((100% / 11) - var(--tt-gap));
}

.d-flex.col-12 > * {
  width: calc((100% / 12) - var(--tt-gap));
}

@media (min-width: 576px) {
  .d-flex.col-auto > * {
    width: auto;
  }

  .d-flex.col-sm-1 > * {
    width: 100%;
  }

  .d-flex.col-sm-2 > * {
    width: calc((100% / 2) - var(--tt-gap));
  }

  .d-flex.col-sm-3 > * {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-sm-4 > * {
    width: calc((100% / 4) - var(--tt-gap));
  }

  .d-flex.col-sm-5 > * {
    width: calc((100% / 5) - var(--tt-gap));
  }

  .d-flex.col-sm-6 > * {
    width: calc((100% / 6) - var(--tt-gap));
  }

  .d-flex.col-sm-7 > * {
    width: calc((100% / 7) - var(--tt-gap));
  }

  .d-flex.col-sm-8 > * {
    width: calc((100% / 8) - var(--tt-gap));
  }

  .d-flex.col-sm-9 > * {
    width: calc((100% / 9) - var(--tt-gap));
  }

  .d-flex.col-sm-10 > * {
    width: calc((100% / 10) - var(--tt-gap));
  }

  .d-flex.col-sm-11 > * {
    width: calc((100% / 11) - var(--tt-gap));
  }

  .d-flex.col-sm-12 > * {
    width: calc((100% / 12) - var(--tt-gap));
  }
}

@media (min-width: 768px) {
  .d-flex.col-md-auto > * {
    width: auto;
  }

  .d-flex.col-md-1 > * {
    width: 100%;
  }

  .d-flex.col-md-2 > * {
    width: calc((100% / 2) - var(--tt-gap));
  }

  .d-flex.col-md-2-1 > *:nth-of-type(odd) {
    width: calc(((100% / 3) * 2) - var(--tt-gap));
  }

  .d-flex.col-md-2-1 > *:nth-of-type(even) {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-md-3 > * {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-md-4 > * {
    width: calc((100% / 4) - var(--tt-gap));
  }

  .d-flex.col-md-5 > * {
    width: calc((100% / 5) - var(--tt-gap));
  }

  .d-flex.col-md-6 > * {
    width: calc((100% / 6) - var(--tt-gap));
  }

  .d-flex.col-md-7 > * {
    width: calc((100% / 7) - var(--tt-gap));
  }

  .d-flex.col-md-8 > * {
    width: calc((100% / 8) - var(--tt-gap));
  }

  .d-flex.col-md-9 > * {
    width: calc((100% / 9) - var(--tt-gap));
  }

  .d-flex.col-md-10 > * {
    width: calc((100% / 10) - var(--tt-gap));
  }

  .d-flex.col-md-11 > * {
    width: calc((100% / 11) - var(--tt-gap));
  }

  .d-flex.col-md-12 > * {
    width: calc((100% / 12) - var(--tt-gap));
  }
}

@media (min-width: 1140px) {
  .d-flex.col-lg-auto > * {
    width: auto;
  }

  .d-flex.col-lg-1 > * {
    width: 100%;
  }

  .d-flex.col-lg-2 > * {
    width: calc((100% / 2) - var(--tt-gap));
  }

  .d-flex.col-lg-2-1 > *:nth-of-type(odd) {
    width: calc(((100% / 3) * 2) - var(--tt-gap));
  }

  .d-flex.col-lg-2-1 > *:nth-of-type(even) {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-lg-3 > * {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-lg-4 > * {
    width: calc((100% / 4) - var(--tt-gap));
  }

  .d-flex.col-lg-5 > * {
    width: calc((100% / 5) - var(--tt-gap));
  }

  .d-flex.col-lg-6 > * {
    width: calc((100% / 6) - var(--tt-gap));
  }

  .d-flex.col-lg-7 > * {
    width: calc((100% / 7) - var(--tt-gap));
  }

  .d-flex.col-lg-8 > * {
    width: calc((100% / 8) - var(--tt-gap));
  }

  .d-flex.col-lg-9 > * {
    width: calc((100% / 9) - var(--tt-gap));
  }

  .d-flex.col-lg-10 > * {
    width: calc((100% / 10) - var(--tt-gap));
  }

  .d-flex.col-lg-11 > * {
    width: calc((100% / 11) - var(--tt-gap));
  }

  .d-flex.col-lg-12 > * {
    width: calc((100% / 12) - var(--tt-gap));
  }
}

@media (min-width: 1400px) {
  .d-flex.col-xl-auto > * {
    width: auto;
  }

  .d-flex.col-xl-1 > * {
   width: 100%;
  }

  .d-flex.col-xl-2 > * {
    width: calc((100% / 2) - var(--tt-gap));
  }

  .d-flex.col-xl-3 > * {
    width: calc((100% / 3) - var(--tt-gap));
  }

  .d-flex.col-xl-4 > * {
    width: calc((100% / 4) - var(--tt-gap));
  }

  .d-flex.col-xl-5 > * {
    width: calc((100% / 5) - var(--tt-gap));
  }

  .d-flex.col-xl-6 > * {
    width: calc((100% / 6) - var(--tt-gap));
  }

  .d-flex.col-xl-7 > * {
    width: calc((100% / 7) - var(--tt-gap));
  }

  .d-flex.col-xl-8 > * {
    width: calc((100% / 8) - var(--tt-gap));
  }

  .d-flex.col-xl-9 > * {
    width: calc((100% / 9) - var(--tt-gap));
  }

  .d-flex.col-xl-10 > * {
    width: calc((100% / 10) - var(--tt-gap));
  }

  .d-flex.col-xl-11 > * {
    width: calc((100% / 11) - var(--tt-gap));
  }

  .d-flex.col-xl-12 > * {
    width: calc((100% / 12) - var(--tt-gap));
  }
}

/****************************************
* Gap
****************************************/

.gap-0 {
  --tt-gap: 0;
}

.gap-1 {
  --tt-gap: 1rem;
}

.gap-2 {
  --tt-gap: 2rem;
}

.gap-3 {
  --tt-gap: 3rem;
}

.gap-4 {
  --tt-gap: 4rem;
}

.gap-5 {
  --tt-gap: 5rem;
}

.gap-6 {
  --tt-gap: 6rem;
}

@media(min-width: 576px) {
  .gap-sm-0 {
    --tt-gap: 0;
  }

  .gap-sm-1 {
    --tt-gap: 1rem;
  }

  .gap-sm-2 {
    --tt-gap: 2rem;
  }

  .gap-sm-3 {
    --tt-gap: 3rem;
  }

  .gap-sm-4 {
    --tt-gap: 4rem;
  }

  .gap-sm-5 {
    --tt-gap: 5rem;
  }

  .gap-sm-6 {
    --tt-gap: 6rem;
  }
}

@media(min-width: 768px) {
  .gap-md-0 {
    --tt-gap: 0;
  }

  .gap-md-1 {
    --tt-gap: 1rem;
  }

  .gap-md-2 {
    --tt-gap: 2rem;
  }

  .gap-md-3 {
    --tt-gap: 3rem;
  }

  .gap-md-4 {
    --tt-gap: 4rem;
  }

  .gap-md-5 {
    --tt-gap: 5rem;
  }

  .gap-md-6 {
    --tt-gap: 6rem;
  }
}

@media(min-width: 1140px) {
  .gap-lg-0 {
    --tt-gap: 0;
  }

  .gap-lg-1 {
    --tt-gap: 1rem;
  }

  .gap-lg-2 {
    --tt-gap: 2rem;
  }

  .gap-lg-3 {
    --tt-gap: 3rem;
  }

  .gap-lg-4 {
    --tt-gap: 4rem;
  }

  .gap-lg-5 {
    --tt-gap: 5rem;
  }

  .gap-lg-6 {
    --tt-gap: 6rem;
  }
}

@media(min-width: 1400px) {
  .gap-xl-0 {
    --tt-gap: 0;
  }

  .gap-xl-1 {
    --tt-gap: 1rem;
  }

  .gap-xl-2 {
    --tt-gap: 2rem;
  }

  .gap-xl-3 {
    --tt-gap: 3rem;
  }

  .gap-xl-4 {
    --tt-gap: 4rem;
  }

  .gap-xl-5 {
    --tt-gap: 5rem;
  }

  .gap-xl-6 {
    --tt-gap: 6rem;
  }
}

/****************************************
* Order
****************************************/

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

@media(min-width: 576px) {
  .order-sm-1 {
    order: 1;
  }
  
  .order-sm-2 {
    order: 2;
  }
  
  .order-sm-3 {
    order: 3;
  }
  
  .order-sm-4 {
    order: 4;
  }
  
  .order-sm-5 {
    order: 5;
  }
  
  .order-sm-6 {
    order: 6;
  }
  
  .order-sm-7 {
    order: 7;
  }
  
  .order-sm-8 {
    order: 8;
  }
  
  .order-sm-9 {
    order: 9;
  }
  
  .order-sm-10 {
    order: 10;
  }
  
  .order-sm-11 {
    order: 11;
  }
  
  .order-sm-12 {
    order: 12;
  }
}

@media(min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
  
  .order-md-2 {
    order: 2;
  }
  
  .order-md-3 {
    order: 3;
  }
  
  .order-md-4 {
    order: 4;
  }
  
  .order-md-5 {
    order: 5;
  }
  
  .order-md-6 {
    order: 6;
  }
  
  .order-md-7 {
    order: 7;
  }
  
  .order-md-8 {
    order: 8;
  }
  
  .order-md-9 {
    order: 9;
  }
  
  .order-md-10 {
    order: 10;
  }
  
  .order-md-11 {
    order: 11;
  }
  
  .order-md-12 {
    order: 12;
  }
}

@media(min-width: 1140px) {
  .order-lg-1 {
    order: 1;
  }
  
  .order-lg-2 {
    order: 2;
  }
  
  .order-lg-3 {
    order: 3;
  }
  
  .order-lg-4 {
    order: 4;
  }
  
  .order-lg-5 {
    order: 5;
  }
  
  .order-lg-6 {
    order: 6;
  }
  
  .order-lg-7 {
    order: 7;
  }
  
  .order-lg-8 {
    order: 8;
  }
  
  .order-lg-9 {
    order: 9;
  }
  
  .order-lg-10 {
    order: 10;
  }
  
  .order-lg-11 {
    order: 11;
  }
  
  .order-lg-12 {
    order: 12;
  }
}

@media(min-width: 1400px) {
  .order-xl-1 {
    order: 1;
  }
  
  .order-xl-2 {
    order: 2;
  }
  
  .order-xl-3 {
    order: 3;
  }
  
  .order-xl-4 {
    order: 4;
  }
  
  .order-xl-5 {
    order: 5;
  }
  
  .order-xl-6 {
    order: 6;
  }
  
  .order-xl-7 {
    order: 7;
  }
  
  .order-xl-8 {
    order: 8;
  }
  
  .order-xl-9 {
    order: 9;
  }
  
  .order-xl-10 {
    order: 10;
  }
  
  .order-xl-11 {
    order: 11;
  }
  
  .order-xl-12 {
    order: 12;
  }
}

/****************************************
* Span
****************************************/

.span-1 {
  grid-column-end: span 1;
}

.span-2 {
  grid-column-end: span 2;
}

.span-3 {
  grid-column-end: span 3;
}

.span-4 {
  grid-column-end: span 4;
}

.span-5 {
  grid-column-end: span 5;
}

.span-6 {
  grid-column-end: span 6;
}

.span-7 {
  grid-column-end: span 7;
}

.span-8 {
  grid-column-end: span 8;
}

.span-9 {
  grid-column-end: span 9;
}

.span-10 {
  grid-column-end: span 10;
}

.span-11 {
  grid-column-end: span 11;
}

.span-12 {
  grid-column-end: span 12;
}

@media(min-width: 576px) {
  .span-sm-1 {
    grid-column-end: span 1;
  }
  
  .span-sm-2 {
    grid-column-end: span 2;
  }
  
  .span-sm-3 {
    grid-column-end: span 3;
  }
  
  .span-sm-4 {
    grid-column-end: span 4;
  }
  
  .span-sm-5 {
    grid-column-end: span 5;
  }
  
  .span-sm-6 {
    grid-column-end: span 6;
  }
  
  .span-sm-7 {
    grid-column-end: span 7;
  }
  
  .span-sm-8 {
    grid-column-end: span 8;
  }
  
  .span-sm-9 {
    grid-column-end: span 9;
  }
  
  .span-sm-10 {
    grid-column-end: span 10;
  }
  
  .span-sm-11 {
    grid-column-end: span 11;
  }
  
  .span-sm-12 {
    grid-column-end: span 12;
  }
}

@media(min-width: 768px) {
  .span-md-1 {
    grid-column-end: span 1;
  }
  
  .span-md-2 {
    grid-column-end: span 2;
  }
  
  .span-md-3 {
    grid-column-end: span 3;
  }
  
  .span-md-4 {
    grid-column-end: span 4;
  }
  
  .span-md-5 {
    grid-column-end: span 5;
  }
  
  .span-md-6 {
    grid-column-end: span 6;
  }
  
  .span-md-7 {
    grid-column-end: span 7;
  }
  
  .span-md-8 {
    grid-column-end: span 8;
  }
  
  .span-md-9 {
    grid-column-end: span 9;
  }
  
  .span-md-10 {
    grid-column-end: span 10;
  }
  
  .span-md-11 {
    grid-column-end: span 11;
  }
  
  .span-md-12 {
    grid-column-end: span 12;
  }  
}

@media(min-width: 1140px) {
  .span-lg-1 {
    grid-column-end: span 1;
  }
  
  .span-lg-2 {
    grid-column-end: span 2;
  }
  
  .span-lg-3 {
    grid-column-end: span 3;
  }
  
  .span-lg-4 {
    grid-column-end: span 4;
  }
  
  .span-lg-5 {
    grid-column-end: span 5;
  }
  
  .span-lg-6 {
    grid-column-end: span 6;
  }
  
  .span-lg-7 {
    grid-column-end: span 7;
  }
  
  .span-lg-8 {
    grid-column-end: span 8;
  }
  
  .span-lg-9 {
    grid-column-end: span 9;
  }
  
  .span-lg-10 {
    grid-column-end: span 10;
  }
  
  .span-lg-11 {
    grid-column-end: span 11;
  }
  
  .span-lg-12 {
    grid-column-end: span 12;
  }  
}

@media(min-width: 1400px) {
  .span-xl-1 {
    grid-column-end: span 1;
  }
  
  .span-xl-2 {
    grid-column-end: span 2;
  }
  
  .span-xl-3 {
    grid-column-end: span 3;
  }
  
  .span-xl-4 {
    grid-column-end: span 4;
  }
  
  .span-xl-5 {
    grid-column-end: span 5;
  }
  
  .span-xl-6 {
    grid-column-end: span 6;
  }
  
  .span-xl-7 {
    grid-column-end: span 7;
  }
  
  .span-xl-8 {
    grid-column-end: span 8;
  }
  
  .span-xl-9 {
    grid-column-end: span 9;
  }
  
  .span-xl-10 {
    grid-column-end: span 10;
  }
  
  .span-xl-11 {
    grid-column-end: span 11;
  }
  
  .span-xl-12 {
    grid-column-end: span 12;
  }  
}

/****************************************
* Margin
****************************************/

.m-0 {
  margin: 0;
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/****************************************
* Padding
****************************************/

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

.p-1 {
  padding: 1rem !important;
}

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

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

.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

@media(min-width: 768px) {
  .pt-md-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 1140px) {
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
}

/****************************************
* Centering
****************************************/

.x-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.x-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.x-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

@media (min-width: 768px) {
  .x-md-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/****************************************
* Video
****************************************/

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

/****************************************
* Buttons
****************************************/

.btn {
  display: inline-block;
  border: none;
  border-radius: 5px;
  background-color: #efefef;
  padding: .75rem 1rem;
  color: #000000;
  text-decoration: none;
}

/****************************************
* Details (accordion)
****************************************/

details {
  margin: 0;
  border: 0;
  width: 100%;
}

details summary {
  position: relative;
  padding: 1rem 50px 1rem 0;
  cursor: pointer;
  list-style: none;
}

/* Safari compatibility */
details summary::-webkit-details-marker {
  display: none;
}

details > div {
  background-color: #f9f9f9;
  padding: 1rem;
}

details summary::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 48%;
  right: 13.5px;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 60% 40%;
  border: solid #000000;
  border-width: 0 4px 4px 0;
  padding: 5px;
  transition: transform .4s ease;
}

details[open] summary::before {
  transform: rotate(225deg);
}

/****************************************
* Video
****************************************/

.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}

.video.rounded {
  border-radius: 20px;
  overflow: hidden;
}

.short iframe,
.video iframe,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.short {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 178%;
}

/****************************************
* Placeholder
****************************************/

.video .placeholder {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-bottom: 56.25%;
}

.video .placeholder:hover {
  cursor: pointer;
}

.video .placeholder p {
  position: absolute;
  top: .5rem;
  left: .5rem;
  color: #ffffff;
  text-shadow: 2px 3px 4px #414141;
}

.video .placeholder svg {
  position: absolute;
  top: 0;
  right: -2px;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  fill: #ffffff;
  transition: width .4s ease, height .4s ease;
}

.video .placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
  width: 50px;
  height: 50px;
}

.video .placeholder.spin::before {
  background-color: transparent;
}

.video .placeholder.spin svg {
  border-radius: 50%;
  border: solid 5px #ffffff5c;
  border-bottom-color: #ffffff;
  height: 50px;
  width: 50px;
  fill: transparent;
  filter: drop-shadow(4px 5px 3px rgba(0, 0, 0, .5));
  animation: 1.5s linear infinite spinner;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/****************************************
* Nav menu toggle
****************************************/

.nav-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle,
.nav-toggle svg {
  width: 50px;
  height: 50px;
}

.nav-toggle svg {
  transition: transform 400ms;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.nav-toggle svg path {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--tt-nav-toggle-color);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.nav-toggle svg path:first-of-type {
  stroke-dasharray: 40 160;
}

.nav-toggle svg path:nth-of-type(2) {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.nav-toggle svg path:last-of-type {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.nav-toggle.on svg {
  transform: rotate(45deg);
}

.nav-toggle.on svg path:first-of-type {
  stroke-dashoffset: -64px;
}

.nav-toggle.on svg path:nth-of-type(2) {
  transform: rotate(90deg);
}

.nav-toggle.on svg path:last-of-type {
  stroke-dashoffset: -64px;
}

/****************************************
* Animated Hamburger Menu
****************************************/

.nav-toggler {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background-color: transparent;
  width: 35px;
  height: 35px;
  padding: 0;
  cursor: pointer;
  transition: opacity, filter 0.15s linear;
  z-index: 400;
}

.nav-toggler:focus {
  outline: none;
}

.nav-toggler:hover,
.nav-toggler.on:hover {
  opacity: 0.7;
}

.nav-toggler span {
  display: block;
  top: 50%;
  margin-top: -2px;
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nav-toggler span,
.nav-toggler span::before,
.nav-toggler span::after {
  width: 35px;
  height: 3px;
  background-color: var(--tt-nav-toggle-color);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.nav-toggler span::before,
.nav-toggler span::after {
  content: '';
  display: block;
}

.nav-toggler span::before {
  top: -10px;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.nav-toggler span::after {
  bottom: -10px;
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.nav-toggler.on span {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nav-toggler.on span::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.nav-toggler.on span::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/****************************************
* Horizontal scroll container
****************************************/ 

.scroll-container {
  position: relative;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.scroll-container.offset-1 {
  scroll-padding: var(--responsive-gutter-width);
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container .item-container {
  display: flex;
}

.scroll-container.offset-1 .item-container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: unset;
  grid-auto-columns: 1fr;

  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0 var(--responsive-gutter-width);
}

/* .scroll-container .item-container > div {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: unset;
  grid-auto-columns: 1fr;
} */

.scroll-container .scroll-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.scroll-container.offset-1 .scroll-item {
  /* flex: 0 0 calc(100% - var(--responsive-gutter-width)); */
  /* width: 260px; */
  min-width: 260px;
  width: 100%;
}

@media(min-width: 576px) {
  .scroll-container .scroll-item {
    flex: 0 0 50%;
  }

  .scroll-container.offset-1 .scroll-item {
    /* flex: 0 0 calc(50% - (var(--responsive-gutter-width) / 2)); */
  }
}

@media(min-width: 768px) {
  .scroll-container.offset-1.details .scroll-item {
    min-width: 344px;
  }
}

@media(min-width: 992px) {
  .scroll-container .scroll-item {
    flex: 0 0 33.33%;
  }

  .scroll-container.offset-1 .scroll-item {
    /* flex: 0 0 calc(33.33% - (var(--responsive-gutter-width) / 3)); */
    width: 372px;
  }
}

.scroll-container .scroll-item > div {
  margin: 0 .5rem;
  width: calc(100% - 1rem);
}

.scroll-container + .controls {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
}

.scroll-container.offset-1 + .controls {
  padding: 1rem var(--responsive-gutter-width);
}

.scroll-container + .controls.directional {
  justify-content: flex-end;
}

.scroll-container + .controls > button {
  display: block;
  border: none;
  border-radius: 50%;
  background-color: rgba(220, 225, 228, .3);
  padding: 0;
}

.scroll-container + .controls.directional > button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(210, 210, 215, .65);
  width: 35px;
  height: 35px;
}

.scroll-container + .controls.directional > button:disabled {
  pointer-events: none;
  opacity: .42;
}

.scroll-container + .controls.directional > button svg {
  color: rgba(0, 0, 0, .5);
  width: 100%;
  pointer-events: none;
}

.scroll-container + .controls.pagination > button {
  display: block;
  border: none;
  border-radius: 50%;
  background-color: rgba(220, 225, 228, .3);
  width: 15px;
  height: 15px;
  padding: 0;
}

.scroll-container + .controls.pagination > button.on {
  background-color: #ffffff;
}
