/* ----------------------------------------------------------- */
/* == tingle v0.13.2 */
/* ----------------------------------------------------------- */

.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  cursor: pointer;
  transition: transform .2s ease;
}

/* confirm and alerts
-------------------------------------------------------------- */

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  transition: color .3s ease;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
  transform: scale(.8);
}

.tingle-modal-box__content {
  padding: 3rem 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom .3s ease-in-out .3s;
}

/* state
-------------------------------------------------------------- */

.tingle-enabled {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  transform: scale(1);
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */

.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color .4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */

@media (max-width : 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
    line-height: 55px;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .5rem;
    vertical-align: middle;
    font-size: 4rem;
  }
}

@supports (backdrop-filter: blur(12px)) {
  .tingle-modal {
    backdrop-filter: blur(20px);
  }

  @media (max-width : 540px) {
    .tingle-modal {
      backdrop-filter: blur(8px);
    }
  }

  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px; }
  .choices:focus {
    outline: none; }
  .choices:last-child {
    margin-bottom: 0; }
  .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
    background-color: #EAEAEA;
    cursor: not-allowed;
    user-select: none; }
  .choices.is-disabled .choices__item {
    cursor: not-allowed; }

.choices[data-type*="select-one"] {
  cursor: pointer; }
  .choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 7.5px; }
  .choices[data-type*="select-one"] .choices__input {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    margin: 0; }
  .choices[data-type*="select-one"] .choices__button {
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-rule='evenodd'%3E%3Cpath d='M2.592.044l18.364 18.364-2.548 2.548L.044 2.592z'/%3E%3Cpath d='M0 18.364L18.364 0l2.548 2.548L2.548 20.912z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 0;
    background-size: 8px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: .5; }
    .choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
      opacity: 1; }
    .choices[data-type*="select-one"] .choices__button:focus {
      box-shadow: 0px 0px 0px 2px #00BCD4; }
  .choices[data-type*="select-one"]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333333 transparent transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none; }
  .choices[data-type*="select-one"].is-open:after {
    border-color: transparent transparent #333333 transparent;
    margin-top: -7.5px; }
  .choices[data-type*="select-one"][dir="rtl"]:after {
    left: 11.5px;
    right: auto; }
  .choices[data-type*="select-one"][dir="rtl"] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0; }

.choices[data-type*="select-multiple"] .choices__inner, .choices[data-type*="text"] .choices__inner {
  cursor: text; }

.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFF' fill-rule='evenodd'%3E%3Cpath d='M2.592.044l18.364 18.364-2.548 2.548L.044 2.592z'/%3E%3Cpath d='M0 18.364L18.364 0l2.548 2.548L2.548 20.912z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75; }
  .choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus, .choices[data-type*="text"] .choices__button:hover, .choices[data-type*="text"] .choices__button:focus {
    opacity: 1; }

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden; }
  .is-focused .choices__inner, .is-open .choices__inner {
    border-color: #b7b7b7; }
  .is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0; }
  .is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px; }

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none; }

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%; }
  [dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px; }
  .choices__list--single .choices__item {
    width: 100%; }

.choices__list--multiple {
  display: inline; }
  .choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00BCD4;
    border: 1px solid #00a5bb;
    color: #FFFFFF;
    word-break: break-all; }
    .choices__list--multiple .choices__item[data-deletable] {
      padding-right: 5px; }
    [dir="rtl"] .choices__list--multiple .choices__item {
      margin-right: 0;
      margin-left: 3.75px; }
    .choices__list--multiple .choices__item.is-highlighted {
      background-color: #00a5bb;
      border: 1px solid #008fa1; }
    .is-disabled .choices__list--multiple .choices__item {
      background-color: #aaaaaa;
      border: 1px solid #919191; }

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all; }
  .choices__list--dropdown.is-active {
    display: block; }
  .is-open .choices__list--dropdown {
    border-color: #b7b7b7; }
  .is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0; }
  .choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position; }
  .choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px; }
    [dir="rtl"] .choices__list--dropdown .choices__item {
      text-align: right; }
  @media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
      padding-right: 100px; }
      .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%); }
      [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px; }
        [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
          right: auto;
          left: 10px; } }
  .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2; }
    .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
      opacity: .5; }

.choices__item {
  cursor: default; }

.choices__item--selectable {
  cursor: pointer; }

.choices__item--disabled {
  cursor: not-allowed;
  user-select: none;
  opacity: .5; }

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray; }

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer; }
  .choices__button:focus {
    outline: none; }

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px; }
  .choices__input:focus {
    outline: 0; }
  [dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0; }

.choices__placeholder {
  opacity: .5; }

/*=====  End of Choices  ======*/
.center {
  text-align: center !important; }

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

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

.normalcase {
  text-transform: initial !important; }

.mt-0 {
  margin-top: 0px !important; }

.mt-1 {
  margin-top: 3.75px !important; }

.mt-2 {
  margin-top: 7.5px !important; }

.mt-3 {
  margin-top: 15px !important; }

.mt-4 {
  margin-top: 22.5px !important; }

.mt-5 {
  margin-top: 45px !important; }

.mb-0 {
  margin-bottom: 0px !important; }

.mb-1 {
  margin-bottom: 3.75px !important; }

.mb-2 {
  margin-bottom: 7.5px !important; }

.mb-3 {
  margin-bottom: 15px !important; }

.mb-4 {
  margin-bottom: 22.5px !important; }

.mb-5 {
  margin-bottom: 45px !important; }

.white {
  color: #ffffff !important; }

.hidden {
  display: none !important; }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
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-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

p:empty {
  display: none; }

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fffff5; }

li {
  line-height: 1.8rem; }

a {
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px; }
  @media only screen and (max-width: 992px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin-bottom: 10px; } }

h1 {
  color: #9f182f;
  font-size: 3rem;
  line-height: 3.2rem;
  margin-bottom: 20px; }
  @media only screen and (max-width: 992px) {
    h1 {
      font-size: 2.6rem;
      line-height: 2.8rem; } }

h2 {
  color: #9f182f;
  font-size: 2.2rem;
  line-height: 2.4rem; }
  @media only screen and (max-width: 992px) {
    h2 {
      font-size: 2rem;
      line-height: 2.2rem; } }

h3 {
  color: #9f182f;
  font-size: 1.8rem;
  line-height: 2rem; }
  @media only screen and (max-width: 992px) {
    h3 {
      font-size: 1.4rem;
      line-height: 1.6rem; } }

h4 {
  font-size: 1.2rem;
  line-height: 1.4rem; }
  @media only screen and (max-width: 992px) {
    h4 {
      font-size: 1rem;
      line-height: 1.2rem; } }

h5 {
  font-size: 1rem;
  line-height: 1.2rem; }

h6 {
  font-size: 0.8rem;
  line-height: 1rem; }

span {
  color: #ffffff;
  font-weight: bold; }

nav {
  font-family: "Montserrat", sans-serif; }

select.choices,
select.select-choices {
  display: none; }

em {
  font-style: italic; }

strong {
  font-style: bold; }

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px 20px;
  margin-bottom: 50px;
  margin-top: 30px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto; }

.col-half {
  width: calc(50% - 20px);
  margin: 0px 10px; }
  @media only screen and (max-width: 992px) {
    .col-half {
      width: 100%;
      margin: 10px 0px; } }

.col-1 {
  width: calc(33.3% - 20px);
  margin: 0px 10px; }
  @media only screen and (max-width: 992px) {
    .col-1 {
      width: 100%;
      margin: 10px 0px;
      max-width: 678px;
      margin-left: auto;
      margin-right: auto; } }

.col-2 {
  width: calc(66.6% - 20px);
  margin: 0px 10px; }
  @media only screen and (max-width: 992px) {
    .col-2 {
      width: 100%;
      margin: 10px 0px;
      max-width: 678px;
      margin-left: auto;
      margin-right: auto; } }

.desktop-only {
  display: block; }
  @media only screen and (max-width: 992px) {
    .desktop-only {
      display: none; } }

.mobile-only {
  display: none; }
  @media only screen and (max-width: 992px) {
    .mobile-only {
      display: block; } }

.btn-red-centered {
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 15px;
  width: 70%;
  max-width: 500px;
  height: 50px;
  background: #9f182f;
  border: none;
  color: #ffffff !important;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center; }

#topheader {
  background: #504d4d;
  padding: 15px 45px;
  display: flex; }
  @media screen and (max-width: 996px) {
    #topheader {
      padding: 15px; } }

.topheader-logo {
  width: 20%; }
  .topheader-logo img {
    display: inline-block;
    width: 160px; }
  @media screen and (max-width: 996px) {
    .topheader-logo {
      width: 40%; } }

.topheader-heading {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: "Montserrat", sans-serif;
  font-weight: bolder; }
  .topheader-heading h3 {
    font-size: 0.9rem; }
  @media screen and (max-width: 996px) {
    .topheader-heading {
      display: none; } }

.topheader-buttons {
  width: 20%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  @media screen and (max-width: 996px) {
    .topheader-buttons {
      width: 60%;
      justify-content: flex-end; } }

.button-logout input {
  display: block;
  border: none;
  background: #504d4d;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  padding: 0px; }

.button-home,
.button-logout {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 0.9rem;
  margin: 10px;
  margin-bottom: 6px; }
  .button-home a,
  .button-logout a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 2px; }

nav#desktop {
  display: flex;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  position: fixed;
  top: 0px;
  width: 100%;
  transition: top 0.3s ease; }
  @media screen and (max-width: 1150px) {
    nav#desktop {
      display: none; } }
  nav#desktop.headroom--pinned {
    top: 0px; }
  nav#desktop.headroom--unpinned {
    top: -120px; }
  nav#desktop #logo {
    width: 15%;
    margin-left: 60px;
    display: flex;
    padding-top: 10px;
    align-items: center; }
    nav#desktop #logo img {
      width: 160px; }
  nav#desktop #main-nav {
    width: 85%;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px; }
  nav#desktop .nav-item {
    padding: 45px 15px 30px 15px; }
    nav#desktop .nav-item:hover .subnav {
      display: flex; }
    nav#desktop .nav-item:hover > a {
      color: #ffffff; }
  nav#desktop a {
    color: #c9ccd0;
    font-size: 1rem; }
    @media only screen and (max-width: 1400px) {
      nav#desktop a {
        font-size: 0.8rem; } }
    @media only screen and (max-width: 1220px) {
      nav#desktop a {
        font-size: 0.65rem; } }
  nav#desktop .subnav {
    display: none;
    position: absolute;
    z-index: 100;
    top: 103px;
    right: 0;
    left: 0;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7);
    flex-wrap: wrap;
    justify-content: space-evenly; }
  nav#desktop .subnav-category {
    max-width: 400px;
    margin-bottom: 30px; }
    nav#desktop .subnav-category h3 span {
      display: inline-block;
      border-bottom: 0.5px solid #ffffff;
      padding-bottom: 5px;
      margin-bottom: 20px;
      font-weight: 400; }
    nav#desktop .subnav-category a {
      color: #ffffff;
      font-weight: 300;
      font-size: 0.9rem; }
    nav#desktop .subnav-category a span {
      font-weight: 600;
      display: block; }
    nav#desktop .subnav-category .subnav-category-list li {
      line-height: 1.2rem;
      margin-bottom: 0.7rem; }
  nav#desktop .subnav-category-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 10px;
    margin-left: 0px; }
  nav#desktop .divider {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    height: 2px;
    border-bottom: 0.5px solid #ffffff; }
  nav#desktop .subnav-options {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%; }
    nav#desktop .subnav-options ul {
      width: 75%;
      margin: 0 auto;
      display: flex; }
    nav#desktop .subnav-options li {
      flex-grow: 1;
      text-align: center; }
    nav#desktop .subnav-options a {
      font-size: 1.2rem;
      font-weight: 600;
      color: #ffffff; }
  nav#desktop .the-experience-subnav {
    display: none;
    padding: 20px 20px; }
  nav#desktop .subnav-list {
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 0; }
    @media only screen and (max-width: 1200px) {
      nav#desktop .subnav-list {
        width: 80%; } }
  nav#desktop .subnav-item {
    width: calc(100% / 6);
    text-align: center; }
    nav#desktop .subnav-item a {
      font-size: 1rem;
      transition: color 1s ease; }
      nav#desktop .subnav-item a:hover {
        color: #ffffff; }

nav#mobile {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2000; }
  @media screen and (max-width: 1150px) {
    nav#mobile {
      display: flex; } }
  nav#mobile #mobile-logo {
    width: 70%;
    padding-left: 15px;
    padding-bottom: 20px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    z-index: 100; }
    nav#mobile #mobile-logo img {
      width: 130px; }
  nav#mobile #hamburger {
    width: 30%;
    padding-right: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100; }
    nav#mobile #hamburger img {
      display: inline-block;
      width: 60px;
      height: 60px; }
      nav#mobile #hamburger img:hover {
        cursor: pointer; }
  nav#mobile #mobile-main-nav {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -900px;
    transition: top ease-in-out 400ms; }
    nav#mobile #mobile-main-nav.open {
      top: 90px; }
  nav#mobile .nav-item {
    border-bottom: solid 1px #c9ccd0;
    text-align: center;
    padding-top: 15px; }
    nav#mobile .nav-item > a {
      font-size: 1.2rem;
      display: block;
      width: 100%;
      margin-bottom: 15px; }
    nav#mobile .nav-item a {
      color: white; }
  nav#mobile .mobile-subnav {
    display: none; }
    nav#mobile .mobile-subnav.open {
      display: block; }
  nav#mobile .mobile-subnav-category {
    padding-bottom: 30px; }
    nav#mobile .mobile-subnav-category:last-child {
      padding-bottom: 0px; }
  nav#mobile .subnav-section-heading > h3 {
    text-align: left;
    font-size: 0.9rem; }
  nav#mobile .subnav-category-list {
    text-align: left; }
    nav#mobile .subnav-category-list li {
      font-size: 0.8rem;
      padding: 10px 0px; }

.slider-container {
  position: relative; }
  .slider-container > .social_icons {
    display: flex;
    position: absolute;
    left: 7%;
    bottom: 20px;
    z-index: 1900; }
    .slider-container > .social_icons img {
      display: inline-block;
      width: 25px;
      margin-right: 10px; }
    @media only screen and (max-width: 992px) {
      .slider-container > .social_icons {
        margin-top: 30px; } }
  @media (max-width: 678px) {
    .slider-container .tns-controls {
      display: none; } }
  .slider-container .tns-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: none;
    border: none; }
  .slider-container .tns-controls [data-controls="prev"] {
    left: 20px; }
  .slider-container .tns-controls [data-controls="next"] {
    right: 20px; }
  .slider-container .tns-controls img {
    width: 25px; }
  .slider-container .tns-nav {
    position: absolute;
    z-index: 100;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 1160px) {
      .slider-container .tns-nav {
        display: none; } }
    .slider-container .tns-nav button {
      border-radius: 50%;
      width: 12px;
      height: 12px;
      padding: 0px;
      background: #c9ccd0;
      margin: 0px 10px;
      border: none; }
      .slider-container .tns-nav button.tns-nav-active {
        background: white; }
  .slider-container .orange_box {
    position: absolute;
    right: 60px;
    bottom: 25px;
    z-index: 101; }
    @media only screen and (max-width: 992px) {
      .slider-container .orange_box {
        display: none; } }
  .slider-container .slider-scroll-wrapper {
    position: absolute;
    z-index: 100;
    bottom: 15px;
    text-align: center;
    width: 100%; }
    @media (max-width: 678px) {
      .slider-container .slider-scroll-wrapper {
        display: none; } }
    .slider-container .slider-scroll-wrapper p {
      color: #ffffff;
      margin: 30px 0;
      margin-bottom: 15px;
      font-size: 0.65rem;
      font-weight: 300; }
    .slider-container .slider-scroll-wrapper img {
      width: 30px; }

.slider .slider_slide {
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 80vh;
  min-height: 650px;
  max-height: 900px;
  position: relative;
  display: none; }
  @media only screen and (max-width: 992px) {
    .slider .slider_slide {
      min-height: 450px;
      max-height: 100vh; } }
  .slider .slider_slide:first-child {
    display: inline-block; }
  .slider .slider_slide.activated {
    display: inline-block; }

.slider .slider_text {
  width: 60%;
  padding: 150px 0px 50px 0px;
  margin-left: 10%;
  color: #ffffff; }
  @media only screen and (max-width: 992px) {
    .slider .slider_text {
      padding: 45px 0px 50px 0px; } }
  @media (max-width: 1160px) {
    .slider .slider_text {
      width: 80%; } }
  .slider .slider_text.bottom {
    position: absolute;
    bottom: 50px;
    left: 20px; }
    @media (max-width: 678px) {
      .slider .slider_text.bottom h2 {
        font-size: 3rem;
        line-height: 3.2rem; } }

.slider h1,
.slider h2 {
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7); }

.slider h1 {
  font-size: 4.5rem;
  line-height: 4.9rem; }
  @media only screen and (max-width: 992px) {
    .slider h1 {
      font-size: 3rem;
      line-height: 3.4rem; } }
  @media (max-width: 678px) {
    .slider h1 {
      font-size: 2.2rem;
      line-height: 2.6rem; } }

.slider h2 {
  margin-bottom: 15px; }
  @media only screen and (max-width: 992px) {
    .slider h2 {
      font-size: 1.8rem;
      line-height: 2.2rem; } }
  @media (max-width: 678px) {
    .slider h2 {
      font-size: 1.4rem;
      line-height: 1.8rem; } }

.slider hr.white {
  background-color: #ffffff;
  height: 1px;
  border: none;
  margin: 30px 0; }
  @media (max-width: 678px) {
    .slider hr.white {
      margin: 15px 0px; } }

.slider p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.8rem;
  margin-bottom: 50px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7); }
  @media (max-width: 678px) {
    .slider p {
      font-size: 1rem;
      line-height: 1.4rem;
      margin-bottom: 20px; } }

.slider .slider-btn {
  background: #c25520;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none; }
  @media (max-width: 678px) {
    .slider .slider-btn {
      display: block;
      text-align: center;
      font-size: 1.2rem; } }

#find_your_experience {
  background-color: #622751;
  padding: 10px 30px; }
  #find_your_experience .form-section {
    padding: 10px 30px;
    margin-left: 5%; }
    @media only screen and (max-width: 992px) {
      #find_your_experience .form-section {
        margin-left: 0px;
        padding: 30px 15px; } }
  #find_your_experience h3 {
    margin-bottom: 15px; }
  #find_your_experience .inputs {
    display: flex;
    width: 100%; }
  #find_your_experience .inputs ol {
    display: flex;
    width: 100%; }
    #find_your_experience .inputs ol li {
      width: 36%;
      margin-right: 10px; }
    #find_your_experience .inputs ol li > select {
      width: 100%;
      background: #fffff5;
      height: 50px;
      padding: 0 30px; }
    @media only screen and (max-width: 992px) {
      #find_your_experience .inputs ol {
        flex-direction: column; }
        #find_your_experience .inputs ol li {
          width: 100%;
          margin-bottom: 0px;
          margin-right: 0px; } }
  #find_your_experience .orange_btn {
    width: 22%;
    background: #c25520;
    border: none;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    height: 56px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #find_your_experience .orange_btn img {
      display: inline-block;
      width: 8px;
      margin-right: 30px; }
    @media only screen and (max-width: 992px) {
      #find_your_experience .orange_btn {
        width: 100%; } }

@media only screen and (min-width: 993px) {
  .regions-map-home {
    width: 65%;
    margin-left: 10%;
    margin-top: 30px;
    margin-left: 15px; }
  .regions-map {
    width: 80%;
    margin-left: 10%; } }

#Africa_2_, #Asia_2_, #Europe, #Oceania_2_, #North_America_2_, #South_America_2_ {
  display: none; }

#Africa_1_, #Europe_2_, #Asia_1_, #Oceania_1_, #South_America_1_, #North_America_1_ {
  fill: #fffff5;
  fill-opacity: 0;
  transition: 0.4s; }

#Africa_1_:hover, #Europe_2_:hover, #Asia_1_:hover, #Oceania_1_:hover, #South_America_1_:hover, #North_America_1_:hover {
  fill-opacity: 0.3; }

#Overlays {
  fill-opacity: 0.5; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .dest-map-ie {
    top: -10px !important; } }

#map {
  background: #fffff5;
  font-family: "Montserrat", sans-serif;
  padding: 30px 50px;
  padding-left: 100px; }
  @media only screen and (max-width: 992px) {
    #map {
      padding: 50px 30px; } }
  #map .top_content {
    display: flex;
    align-items: flex-start; }
    @media only screen and (max-width: 992px) {
      #map .top_content {
        flex-direction: column;
        margin-bottom: 30px; } }
    #map .top_content .text {
      width: 70%;
      padding-right: 100px;
      color: #504d4d; }
      #map .top_content .text h2 {
        font-size: 3rem !important;
        font-weight: 700;
        line-height: 3.5rem;
        margin-bottom: 15px; }
        @media only screen and (max-width: 992px) {
          #map .top_content .text h2 {
            font-size: 2.6rem !important;
            line-height: 2.8rem !important; } }
      #map .top_content .text p {
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.6rem;
        font-weight: lighter;
        line-height: 2.2rem; }
        @media only screen and (max-width: 992px) {
          #map .top_content .text p {
            font-size: 1.2rem; } }
      #map .top_content .text .no-display {
        display: none; }
      @media only screen and (max-width: 992px) {
        #map .top_content .text {
          width: 100%;
          padding-right: 0px; }
          #map .top_content .text h2 {
            width: 100%; }
          #map .top_content .text p {
            width: 100%; }
          #map .top_content .text .no-display {
            display: block; } }
  #map .bottom_content {
    display: flex;
    position: relative; }
    #map .bottom_content .left_content {
      margin-top: 30px;
      width: 35%; }
      #map .bottom_content .left_content p {
        color: #504d4d;
        line-height: 2.2rem;
        font-size: 1.6rem; }
        #map .bottom_content .left_content p.no-display {
          display: none; }
      @media only screen and (max-width: 992px) {
        #map .bottom_content .left_content {
          width: 100%; }
          #map .bottom_content .left_content .display {
            display: none; } }
    #map .bottom_content .map_img {
      margin-top: 30px;
      width: 65%;
      justify-content: center;
      padding-left: 15px; }
      #map .bottom_content .map_img img {
        display: inline-block; }
      @media only screen and (max-width: 992px) {
        #map .bottom_content .map_img {
          margin-top: 0px;
          width: 0%; }
          #map .bottom_content .map_img .display {
            display: none; } }
    @media only screen and (max-width: 1398px) {
      #map .bottom_content .left_content {
        width: 50%; }
      #map .bottom_content .map_img {
        width: 50%;
        text-align: left; } }
  #map .orange {
    padding: 0 15px;
    height: 50px;
    background: #c25520;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.5rem;
    text-align: center;
    margin-top: 100px; }
    #map .orange.mobile {
      display: none; }
    @media only screen and (max-width: 992px) {
      #map .orange {
        height: auto;
        width: 100%;
        position: static;
        padding: 15px; }
        #map .orange.mobile {
          margin-top: 30px;
          display: flex; }
        #map .orange.original {
          display: none; }
        #map .orange:hover {
          cursor: pointer; } }

#experiences_area {
  background: #622751;
  color: #ffffff;
  padding: 10px 100px; }
  @media only screen and (max-width: 992px) {
    #experiences_area {
      padding: 10px 50px; } }
  #experiences_area h3 {
    text-align: center;
    margin-bottom: 30px; }
    @media only screen and (max-width: 992px) {
      #experiences_area h3 {
        margin-top: 15px;
        margin-bottom: 15px; } }
  #experiences_area .experiences {
    font-family: "Montserrat", sans-serif;
    display: flex;
    margin-bottom: 15px; }
    @media only screen and (max-width: 992px) {
      #experiences_area .experiences {
        padding: 0px;
        flex-direction: column; } }
    #experiences_area .experiences .experience {
      width: calc(33.3% - 30px);
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
      #experiences_area .experiences .experience .txt-wrapper {
        text-align: center; }
      #experiences_area .experiences .experience h4 {
        font-weight: 400;
        margin: 10px 0px 10px 0px;
        color: #ffffff; }
      @media only screen and (max-width: 992px) {
        #experiences_area .experiences .experience {
          width: 100%;
          flex-direction: row;
          align-items: flex-start; }
          #experiences_area .experiences .experience .txt-wrapper {
            text-align: left;
            padding-left: 15px; }
          #experiences_area .experiences .experience h4 {
            font-size: 1.2rem;
            margin: 0px;
            margin-bottom: 10px; } }
    #experiences_area .experiences .divider {
      border: 1px solid #ffffff;
      margin: 0 10px; }
    #experiences_area .experiences img {
      display: block;
      width: 70px; }
    #experiences_area .experiences p {
      font-size: 0.65rem;
      text-align: center;
      line-height: 1.3rem;
      color: #ffffff; }
      @media only screen and (max-width: 992px) {
        #experiences_area .experiences p {
          text-align: left; } }

#dreaming_about {
  padding: 30px 100px;
  background: #fffff5; }
  #dreaming_about h3 {
    color: #9f182f;
    text-align: center;
    font-weight: 600;
    margin: 30px 0px; }
    @media only screen and (max-width: 992px) {
      #dreaming_about h3 {
        font-size: 1.8rem;
        line-height: 2.3rem; } }
  @media only screen and (max-width: 992px) {
    #dreaming_about {
      padding: 50px 30px; } }

.dream_tour {
  border-bottom: 1px solid #95989a;
  margin-bottom: 15px; }
  .dream_tour .tour_img {
    height: 250px;
    background-color: #622751;
    background-size: cover; }
  .dream_tour h4 {
    margin-top: 15px;
    margin-bottom: 5px;
    margin-left: 0px;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600; }
  .dream_tour h5 {
    color: #9f182f;
    font-size: 0.8rem; }
  .dream_tour .tour_highlights {
    margin-top: 30px;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-wrap: wrap; }
  .dream_tour .highlight {
    flex-basis: 50%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px; }
    .dream_tour .highlight img {
      display: inline-block;
      width: 20px;
      height: 20px;
      margin-right: 15px; }
    .dream_tour .highlight .dots {
      display: flex;
      flex-wrap: nowrap; }
      .dream_tour .highlight .dots img {
        width: 10px;
        margin-right: 3px; }
    .dream_tour .highlight p {
      font-size: 0.8rem;
      line-height: 1.3rem; }
      @media only screen and (max-width: 1245px) {
        .dream_tour .highlight p {
          font-size: 0.65rem; } }
    .dream_tour .highlight .highlight-question {
      padding-top: 2px; }
    .dream_tour .highlight .question.icon {
      width: 15px;
      height: 15px; }
  @media only screen and (max-width: 992px) {
    .dream_tour {
      border-bottom: 1px solid #95989a; }
      .dream_tour h4 {
        font-size: 1.2rem;
        line-height: 1.4rem; }
      .dream_tour h5 {
        font-size: 1rem;
        line-height: 1.2rem; } }
  .dream_tour .image_wrapper {
    display: flex; }
    .dream_tour .image_wrapper a {
      width: calc(100% - 25px); }

#mentions {
  padding: 100px;
  padding-bottom: 50px;
  background: #622751; }
  @media only screen and (max-width: 992px) {
    #mentions {
      padding-top: 50px;
      padding-bottom: 50px; } }
  #mentions h2,
  #mentions h6 {
    color: #bb9d13;
    font-family: "Merriweather", serif;
    text-align: center; }
  #mentions h2 {
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: 4rem; }
    @media only screen and (max-width: 992px) {
      #mentions h2 {
        font-size: 2rem;
        line-height: 2.4rem; } }
  #mentions h6 {
    color: #ffffff;
    font-size: 0.8rem;
    line-height: 1.5rem;
    margin-bottom: 15px; }
  #mentions .magazines {
    font-family: "Montserrat", sans-serif;
    display: flex; }
    #mentions .magazines .magazine {
      width: calc(100% / 6);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: none;
      background: none;
      cursor: pointer; }
      @media only screen and (max-width: 992px) {
        #mentions .magazines .magazine {
          display: none; } }
      #mentions .magazines .magazine .magazine_name {
        color: #b7b7b7;
        margin-top: 30px;
        text-align: center;
        line-height: 1.5rem; }
      #mentions .magazines .magazine img {
        display: block;
        width: 120px; }
  @media only screen and (max-width: 992px) {
    #mentions {
      padding: 100px 30px; }
      #mentions h2 {
        width: 100%; } }

#blogs {
  padding: 100px;
  background: #fffff5;
  font-family: "Montserrat", sans-serif; }
  @media only screen and (max-width: 1145px) {
    #blogs {
      padding: 100px 50px; } }
  @media only screen and (max-width: 992px) {
    #blogs {
      padding: 0px;
      padding-top: 30px; } }
  #blogs .two-posts {
    margin-bottom: 20px; }
  #blogs .three-posts {
    margin-top: 0px; }
  @media only screen and (max-width: 992px) {
    #blogs .two-posts {
      margin-bottom: 0px; } }

.latest {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center;
  color: #ffffff;
  padding-left: 30px;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7); }
  .latest h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-top: 300px;
    margin-bottom: 15px; }
  .latest p {
    margin-bottom: 15px;
    font-family: "Merriweather", serif;
    font-weight: 300;
    line-height: 1.5rem; }
  .latest .small {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase; }

#foundation {
  padding: 100px;
  padding-top: 0px;
  background: #fffff5;
  font-family: "Montserrat", sans-serif; }
  @media only screen and (max-width: 992px) {
    #foundation {
      padding: 50px 30px; } }
  #foundation h3 {
    color: #9f182f;
    text-align: center;
    margin-bottom: 30px; }
  #foundation .foundation_content {
    display: flex; }
    @media only screen and (max-width: 992px) {
      #foundation .foundation_content {
        flex-direction: column; } }
  #foundation .foundation_text {
    width: 50%; }
    #foundation .foundation_text p {
      padding-right: 30px;
      font-size: 1.2rem;
      line-height: 2rem;
      color: #504d4d; }
    @media only screen and (max-width: 992px) {
      #foundation .foundation_text {
        width: 100%; }
        #foundation .foundation_text p {
          padding-right: 0px; } }
  #foundation .red_bg {
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 15px;
    width: 70%;
    height: 50px;
    background: #9f182f;
    border: none;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center; }
    #foundation .red_bg.mobile {
      display: none; }
    @media only screen and (max-width: 992px) {
      #foundation .red_bg {
        margin: 15px 0;
        width: 100%; }
        #foundation .red_bg.original {
          display: none; }
        #foundation .red_bg.mobile {
          display: flex; } }
  #foundation .img_container {
    width: 50%;
    height: 350px;
    background: url("https://tdaglobalcycling.com/wp-content/uploads/2012/02/20150307_164400-600x337.jpg");
    background-size: cover;
    background-repeat: no-repeat; }
    @media only screen and (max-width: 992px) {
      #foundation .img_container {
        width: 100%;
        margin-top: 30px; } }

.tf-tour-container {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif; }
  .tf-tour-container button, .tf-tour-container .button-spacer {
    margin-bottom: 15px;
    background: #fffff5;
    color: #504d4d;
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    border: none;
    padding: 15px; }
    .tf-tour-container button div, .tf-tour-container .button-spacer div {
      display: flex;
      justify-content: center;
      align-items: center; }
    .tf-tour-container button p, .tf-tour-container .button-spacer p {
      padding-right: 10px;
      line-height: normal; }
    .tf-tour-container button img, .tf-tour-container .button-spacer img {
      display: inline-block;
      width: 15px;
      height: 15px; }

.tour-finder {
  background: #fffff5;
  padding: 100px;
  padding-top: 50px;
  width: 100%;
  display: flex; }
  @media only screen and (max-width: 1200px) {
    .tour-finder {
      padding: 50px;
      flex-direction: column; } }
  @media only screen and (max-width: 560px) {
    .tour-finder {
      padding: 50px 10px; } }
  .tour-finder .red-button {
    display: none;
    background: #9f182f;
    height: 60px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    display: none;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 1200px) {
      .tour-finder .red-button {
        display: flex;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 992px) {
      .tour-finder .red-button {
        width: 100%;
        margin-top: 0px; } }

.tf-tours {
  width: 80%; }
  .tf-tours h2 {
    color: #9f182f;
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase; }
    @media only screen and (max-width: 992px) {
      .tf-tours h2 {
        margin-bottom: 15px; } }
  @media only screen and (max-width: 1200px) {
    .tf-tours {
      width: 100%;
      margin-top: 30px; } }

.tf-tour {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap; }

.tf-tour-type {
  width: 25px;
  background: #0091b3;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap; }
  .tf-tour-type.adventure {
    background-color: #0091b3; }
  .tf-tour-type.expedition {
    background-color: #622751; }
  .tf-tour-type.touring {
    background-color: #6a813b; }
  .tf-tour-type.pop-up-tour {
    background-color: #F9564F; }
    .tf-tour-type.pop-up-tour p {
      margin-top: 120px; }
  .tf-tour-type.bikepacking {
    background-color: #E63946; }
    .tf-tour-type.bikepacking p {
      margin-top: 110px; }
  .tf-tour-type p {
    transform: rotate(-90deg);
    margin-top: 100px; }

.tf-tour-image {
  width: 25%;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  @media only screen and (max-width: 992px) {
    .tf-tour-image {
      width: calc(100% - 25px);
      height: 300px; } }

.tf-tour-info {
  width: calc(75% - 25px);
  padding: 30px;
  background: #d9d9d0;
  display: flex;
  flex-direction: column; }
  .tf-tour-info p {
    text-transform: uppercase; }
  @media only screen and (max-width: 992px) {
    .tf-tour-info {
      width: 100%; } }
  @media only screen and (max-width: 560px) {
    .tf-tour-info {
      padding: 30px 10px; } }

.tf-tour-info-top {
  display: flex;
  flex-wrap: wrap; }
  .tf-tour-info-top .tf-tour-badge-desktop,
  .tf-tour-info-top .tf-tour-badge-mobile {
    width: 130px; }
    @media only screen and (max-width: 786px) {
      .tf-tour-info-top .tf-tour-badge-desktop,
      .tf-tour-info-top .tf-tour-badge-mobile {
        display: none; } }
  @media only screen and (max-width: 786px) {
    .tf-tour-info-top .tf-tour-badge-mobile {
      display: block;
      width: 130px; } }
  @media only screen and (min-width: 787px) {
    .tf-tour-info-top .tf-tour-badge-mobile {
      display: none; } }
  .tf-tour-info-top .tf-tour-info-header {
    width: calc(95% - 130px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px; }
    .tf-tour-info-top .tf-tour-info-header h3 {
      color: #9f182f;
      text-transform: uppercase;
      font-weight: 600;
      text-align: right; }
    .tf-tour-info-top .tf-tour-info-header .divider {
      width: calc(100% - 50px);
      height: 1px;
      margin-left: 50px;
      border: 0.5px solid #b7b7b7; }
    .tf-tour-info-top .tf-tour-info-header p {
      font-size: 0.9rem; }
    @media only screen and (max-width: 786px) {
      .tf-tour-info-top .tf-tour-info-header {
        width: 100%;
        align-items: flex-start; }
        .tf-tour-info-top .tf-tour-info-header .divider {
          width: 100%;
          margin-left: 0px; } }

.tf-tour-info-bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 15px; }
  .tf-tour-info-bottom .tf-tour-info-description {
    width: 45%;
    padding-top: 10px;
    padding-right: 30px; }
    @media only screen and (max-width: 1200px) {
      .tf-tour-info-bottom .tf-tour-info-description {
        width: 100%;
        margin-bottom: 15px;
        padding-right: 0px; } }
  .tf-tour-info-bottom p {
    text-transform: none;
    font-size: 0.8rem;
    line-height: 1.5rem; }
  .tf-tour-info-bottom .tf-tour-info-items {
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
    .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-items-col {
      width: 50%; }
    .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item {
      display: flex;
      padding-bottom: 10px; }
      .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item img {
        display: inline-block;
        width: 17px;
        height: 17px;
        margin-right: 10px; }
      .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item p {
        text-transform: uppercase;
        font-size: 0.65rem;
        line-height: 1.3rem;
        padding-right: 10px; }
        @media only screen and (max-width: 1200px) {
          .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item p {
            font-size: 0.8rem; } }
        .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item p.tf-tour-info-difficulty {
          width: auto !important; }
      .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item.cost p {
        padding-right: 0px; }
      @media only screen and (max-width: 992px) {
        .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-item {
          padding-top: 0px; } }
    .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-difficulty {
      display: flex;
      flex: 0 0 86px; }
      .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-difficulty img {
        width: 10px;
        margin-right: 7px; }
    .tf-tour-info-bottom .tf-tour-info-items .tf-tour-info-difficulty-question img {
      width: 15px; }
    @media only screen and (max-width: 1200px) {
      .tf-tour-info-bottom .tf-tour-info-items {
        width: 100%; } }

.tour-calendar {
  padding: 20px 40px; }
  .tour-calendar span {
    color: #4a4a4a; }
  @media (max-width: 992px) {
    .tour-calendar {
      padding: 0px; } }

.tc-heading {
  display: flex;
  padding: 20px 0px 50px 0px; }
  .tc-heading h2 {
    color: #9f182f;
    width: 60%;
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase; }
    @media (max-width: 992px) {
      .tc-heading h2 {
        width: 50%;
        font-size: 1.2rem;
        line-height: 1.8rem;
        padding: 0px;
        text-align: center; } }
  .tc-heading button {
    cursor: pointer;
    width: 20%;
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    display: flex;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #504d4d; }
    .tc-heading button:last-child {
      text-align: right;
      justify-content: flex-end; }
    @media (max-width: 992px) {
      .tc-heading button {
        width: 25%;
        font-size: 0.8rem;
        align-items: center; } }
  .tc-heading .arrow {
    width: 25px;
    display: block; }
    @media (max-width: 992px) {
      .tc-heading .arrow {
        width: 20px; } }
  .tc-heading .arrow-left {
    transform: translateX(-15px); }
    @media (max-width: 992px) {
      .tc-heading .arrow-left {
        transform: none;
        margin-right: 15px; } }
  .tc-heading .arrow-right {
    transform: translateX(15px); }
    @media (max-width: 992px) {
      .tc-heading .arrow-right {
        transform: none;
        margin-left: 15px; } }
  @media (max-width: 992px) {
    .tc-heading {
      margin: 0 auto; } }

.tc-months {
  display: flex;
  position: relative;
  width: 100%; }

.tc-month {
  width: calc(100% / 12);
  text-align: center;
  height: 100%;
  border-right: 1px solid #95989a; }
  .tc-month:first-child {
    border-left: 1px solid #95989a; }
  @media (max-width: 698px) {
    .tc-month span {
      display: none; }
    .tc-month span.first-letter {
      display: block; } }

.tc-tour {
  position: absolute;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  padding: 0px 10px;
  line-height: 1.3rem; }
  .tc-tour.adventure {
    background-color: #0091b3; }
  .tc-tour.expedition {
    background-color: #622751; }
  .tc-tour.touring {
    background-color: #6a813b; }
  .tc-tour.pop-up-tour {
    background-color: #F9564F; }
  .tc-tour.bikepacking {
    background-color: #E63946; }
  .tc-tour.bikepacking .tour-name, .tc-tour.pop-up-tour .tour-name {
    position: absolute;
    left: calc(100% + 15px);
    color: #4a4a4a;
    background-color: #fffff5;
    white-space: nowrap; }
  @media (max-width: 992px) {
    .tc-tour {
      font-size: 0.65rem; } }

.tc-tour-types {
  display: flex;
  justify-content: center;
  margin-top: 20px; }
  .tc-tour-types .tc-tour-type {
    padding: 20px 10px;
    width: 120px;
    text-align: center; }
    .tc-tour-types .tc-tour-type img {
      width: 50px;
      height: 50px;
      display: inline-block;
      margin-bottom: 15px; }
    .tc-tour-types .tc-tour-type.adventure {
      color: #0091b3; }
    .tc-tour-types .tc-tour-type.expedition {
      color: #622751; }
    .tc-tour-types .tc-tour-type.touring {
      color: #6a813b; }
    .tc-tour-types .tc-tour-type.pop-up-tour {
      color: #F9564F; }
    .tc-tour-types .tc-tour-type.bikepacking {
      color: #E63946; }

.tf-sections {
  background: #e8e7de;
  padding-top: 0px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap; }

.tf-section {
  border-top: 1px solid #b7b7b7;
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 30px);
  padding: 15px 0;
  margin: 15px; }
  .tf-section:nth-child(1), .tf-section:nth-child(2) {
    border-top: none; }
  .tf-section .tf-section-img-wrapper {
    display: block;
    width: 40%; }
  .tf-section .tf-section-image {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    @media only screen and (max-width: 992px) {
      .tf-section .tf-section-image {
        height: 70%; } }
  .tf-section .tf-section-info {
    text-transform: uppercase;
    padding-left: 15px;
    width: 60%; }
    @media only screen and (max-width: 992px) {
      .tf-section .tf-section-info h3,
      .tf-section .tf-section-info h4 {
        display: none; } }
  .tf-section .tf-section-info h3,
  .tf-section .tf-section-info-head-mobile h3 {
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem; }
    @media only screen and (max-width: 992px) {
      .tf-section .tf-section-info h3,
      .tf-section .tf-section-info-head-mobile h3 {
        font-size: 1rem;
        line-height: 1.2rem; } }
  .tf-section .tf-section-info h4,
  .tf-section .tf-section-info-head-mobile h4 {
    color: #9f182f;
    font-size: 0.8rem;
    margin: 0px;
    line-height: 1.5rem; }
  .tf-section .tf-section-info-head-mobile {
    display: none; }
    @media only screen and (max-width: 992px) {
      .tf-section .tf-section-info-head-mobile {
        display: block; } }
  .tf-section .tf-tour-section-info-item {
    margin-bottom: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.3rem; }
    .tf-section .tf-tour-section-info-item img {
      width: 17px;
      height: 17px;
      margin-right: 10px; }
    .tf-section .tf-tour-section-info-item .dot {
      width: 10px;
      height: 10px;
      margin-right: 5px; }
    .tf-section .tf-tour-section-info-item p {
      text-transform: uppercase;
      font-size: 0.65rem;
      line-height: 1.3rem; }
  .tf-section .tf-tour-section-info-item-difficulty {
    display: flex;
    flex-wrap: wrap; }
    .tf-section .tf-tour-section-info-item-difficulty .tf-tour-section-info-item {
      width: calc(50% - 10px);
      margin-right: 5px; }
      .tf-section .tf-tour-section-info-item-difficulty .tf-tour-section-info-item.cost {
        width: 100%; }
        .tf-section .tf-tour-section-info-item-difficulty .tf-tour-section-info-item.cost .tf-tour-section-info-difficulty {
          margin-right: 5px; }
      @media only screen and (max-width: 1290px) {
        .tf-section .tf-tour-section-info-item-difficulty .tf-tour-section-info-item {
          width: 100%; } }
  .tf-section .tf-tour-section-info-difficulty-question {
    display: flex;
    justify-content: center;
    align-items: center; }
    .tf-section .tf-tour-section-info-difficulty-question img {
      width: 15px; }
  @media only screen and (max-width: 1360px) {
    .tf-section {
      margin: 15px 0;
      padding: 5px;
      width: calc(50% - 10px); } }
  @media only screen and (max-width: 992px) {
    .tf-section {
      width: 100%;
      padding: 40px 15px; } }

.tf-filters {
  width: 20%;
  margin-top: 15px;
  margin-right: 15px; }
  @media only screen and (max-width: 1200px) {
    .tf-filters {
      width: 100%;
      margin: 0 auto;
      display: none; }
      .tf-filters.active {
        display: block; } }
  .tf-filters h2 {
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5rem;
    font-size: 1.2rem;
    color: #504d4d; }
  .tf-filters button {
    width: 100%;
    border: none;
    background: #fffff5;
    color: #9f182f;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    padding: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #95989a; }
  .tf-filters .tf-filter h3 {
    margin: 15px 0;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600; }
  .tf-filters .tf-filter form {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    color: #504d4d;
    padding-bottom: 15px;
    border-bottom: 1px solid #95989a; }
    .tf-filters .tf-filter form label {
      padding-bottom: 5px;
      font-size: 0.8rem; }
      .tf-filters .tf-filter form label.disabled {
        cursor: not-allowed;
        color: #c9ccd0; }
      .tf-filters .tf-filter form label input {
        margin-right: 10px; }

.tour-description {
  height: 80px;
  background: #622751;
  font-family: "Merriweather", serif;
  color: #ffffff;
  padding: 50px 90px;
  display: flex;
  align-items: center;
  transform: translateY(-5px); }
  .tour-description .tour-description-badge {
    width: 250px;
    height: 250px;
    margin-right: 30px;
    z-index: 120;
    background: url("/wp-content/themes/tda/img/bamboo-badge.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .tour-description p {
    width: calc(100% - 280px);
    line-height: 1.8rem;
    font-size: 1.2rem;
    color: #fffff5; }
  @media (max-width: 992px) {
    .tour-description {
      height: auto;
      padding: 50px;
      flex-wrap: wrap; }
      .tour-description .tour-description-badge {
        margin-top: -100px; }
      .tour-description p {
        width: 100%;
        margin-top: 0px;
        font-size: 1rem;
        line-height: 2rem;
        font-weight: bold; } }

.tour {
  padding: 100px;
  padding-bottom: 30px;
  background: #fffff5; }
  @media (max-width: 992px) {
    .tour {
      padding: 15px; } }
  .tour h3 {
    color: #9f182f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px; }
  .tour .tour-scroll-heading {
    margin-bottom: 30px;
    text-align: center;
    display: none; }
    .tour .tour-scroll-heading h2 {
      color: #504d4d;
      margin-bottom: 15px;
      font-size: 1.2rem; }
    .tour .tour-scroll-heading h1 {
      color: #9f182f;
      font-size: 1.8rem;
      font-weight: 600; }
    @media (max-width: 768px) {
      .tour .tour-scroll-heading {
        display: block; } }
  .tour .tour-scroll {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 768px) {
      .tour .tour-scroll {
        padding: 15px 5px;
        border-top: 1px solid #95989a;
        border-bottom: 1px solid #95989a; } }
    .tour .tour-scroll .tour-name {
      width: 80%;
      text-align: center; }
      @media (max-width: 768px) {
        .tour .tour-scroll .tour-name {
          display: none; } }
      .tour .tour-scroll .tour-name h2 {
        color: #504d4d;
        margin-bottom: 0px;
        font-size: 0.9rem; }
      .tour .tour-scroll .tour-name h1 {
        color: #9f182f;
        font-size: 3rem; }
    .tour .tour-scroll .arrow {
      width: 20%;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media (max-width: 768px) {
        .tour .tour-scroll .arrow {
          width: 50%;
          justify-content: flex-start; }
          .tour .tour-scroll .arrow.next-arrow {
            justify-content: flex-end; } }
      .tour .tour-scroll .arrow > a {
        display: flex;
        justify-content: center;
        align-items: center; }
      .tour .tour-scroll .arrow .arrow-txt {
        line-height: 1.5rem;
        color: #504d4d;
        font-size: 1.2rem;
        font-weight: 600;
        display: inline-block; }
        @media (max-width: 768px) {
          .tour .tour-scroll .arrow .arrow-txt {
            font-size: 0.9rem; } }
      .tour .tour-scroll .arrow .prev {
        margin-left: 30px; }
        @media (max-width: 768px) {
          .tour .tour-scroll .arrow .prev {
            margin-left: 10px; } }
      .tour .tour-scroll .arrow .next {
        margin-right: 30px;
        text-align: right; }
        @media (max-width: 768px) {
          .tour .tour-scroll .arrow .next {
            margin-right: 10px; } }
      .tour .tour-scroll .arrow img {
        display: inline-block;
        width: 30px; }
        @media (max-width: 768px) {
          .tour .tour-scroll .arrow img {
            width: 20px; } }
  .tour .tour-info {
    margin: 50px 0px;
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 992px) {
      .tour .tour-info {
        width: 100%;
        margin-bottom: 30px; } }
    .tour .tour-info .tour-info-text {
      padding-right: 15px;
      width: 60%;
      position: relative; }
      @media (max-width: 992px) {
        .tour .tour-info .tour-info-text {
          width: 90%;
          margin: 0 auto;
          margin-bottom: 30px;
          padding-right: 0px; } }
      .tour .tour-info .tour-info-text .departure-badge {
        background: #fffff5;
        position: absolute;
        right: 0%;
        top: 6%;
        padding-left: 30px;
        padding-right: 15px; }
        .tour .tour-info .tour-info-text .departure-badge img {
          display: block;
          width: 100px;
          height: 100px; }
          @media (max-width: 992px) {
            .tour .tour-info .tour-info-text .departure-badge img {
              width: 50px;
              height: 50px; } }
      .tour .tour-info .tour-info-text .tour-info-text-type {
        display: flex;
        align-items: center; }
        .tour .tour-info .tour-info-text .tour-info-text-type .adventure-icon {
          display: inline-block;
          width: 30px;
          height: 30px;
          margin-right: 15px; }
        .tour .tour-info .tour-info-text .tour-info-text-type h3 {
          font-family: "Montserrat", sans-serif;
          color: #0091b3;
          font-weight: 600;
          padding: 15px 0;
          margin: 0px; }
          .tour .tour-info .tour-info-text .tour-info-text-type h3.adventure {
            color: #0091b3; }
          .tour .tour-info .tour-info-text .tour-info-text-type h3.touring {
            color: #6a813b; }
          .tour .tour-info .tour-info-text .tour-info-text-type h3.expedition {
            color: #622751; }
          .tour .tour-info .tour-info-text .tour-info-text-type h3.pop-up-tour {
            color: #F9564F; }
          .tour .tour-info .tour-info-text .tour-info-text-type h3.bikepacking {
            color: #E63946; }
      .tour .tour-info .tour-info-text h2 {
        color: #de4f20;
        padding-top: 15px;
        padding-bottom: 10px;
        font-size: 1.2rem;
        font-weight: 300; }
      .tour .tour-info .tour-info-text .tour-info-big-info {
        display: flex;
        flex-wrap: wrap;
        font-family: "Montserrat", sans-serif;
        color: #504d4d;
        font-weight: 300; }
      .tour .tour-info .tour-info-text .distance {
        width: 33%;
        text-transform: uppercase;
        font-size: 1.2rem; }
        @media (max-width: 1260px) {
          .tour .tour-info .tour-info-text .distance {
            width: 50%; } }
      .tour .tour-info .tour-info-text .date {
        width: 50%;
        text-transform: uppercase;
        font-size: 1.2rem; }
        @media (max-width: 992px) {
          .tour .tour-info .tour-info-text .date {
            width: 100%;
            margin-top: 10px; } }
  .tour .tour-stats {
    margin-top: 15px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    font-family: "Montserrat", sans-serif;
    color: #504d4d;
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 15px; }
    .tour .tour-stats .tour-stat {
      width: 33.3%; }
      @media (max-width: 1260px) {
        .tour .tour-stats .tour-stat {
          width: 50%; } }
      @media (max-width: 520px) {
        .tour .tour-stats .tour-stat {
          width: 100%; } }
      .tour .tour-stats .tour-stat .top,
      .tour .tour-stats .tour-stat .bottom {
        margin-bottom: 5px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center; }
        .tour .tour-stats .tour-stat .top .tf-tour-stat-name,
        .tour .tour-stats .tour-stat .bottom .tf-tour-stat-name {
          padding: 10px;
          color: #de4f20;
          font-size: 0.9rem;
          font-weight: 600;
          display: flex;
          justify-content: center; }
        .tour .tour-stats .tour-stat .top .icon,
        .tour .tour-stats .tour-stat .bottom .icon {
          display: inline-block;
          width: 20px;
          height: 20px; }
        .tour .tour-stats .tour-stat .top .dot,
        .tour .tour-stats .tour-stat .bottom .dot {
          display: inline-block;
          padding-right: 5px;
          width: 15px;
          height: 15px; }
        .tour .tour-stats .tour-stat .top .question,
        .tour .tour-stats .tour-stat .bottom .question {
          width: 15px;
          height: 15px; }
      .tour .tour-stats .tour-stat .bottom {
        padding-left: 30px;
        margin-bottom: 15px; }
        .tour .tour-stats .tour-stat .bottom p {
          line-height: 1.5rem;
          width: 100%;
          word-wrap: break-word; }

.tour-map {
  width: 40%;
  overflow: hidden;
  position: relative; }
  @media (max-width: 992px) {
    .tour-map {
      width: 100%;
      margin-bottom: 30px; } }

.tour-red-btn {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px; }
  .tour-red-btn .red-btn {
    font-family: "Montserrat", sans-serif;
    width: calc(50% - 10px);
    height: 50px;
    margin: 5px;
    background: #9f182f;
    text-align: center; }
    .tour-red-btn .red-btn a {
      width: 100%;
      height: 100%;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      margin: 0px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .tour-red-btn .red-btn:hover {
      cursor: pointer; }
  @media (max-width: 992px) {
    .tour-red-btn {
      width: 100%; }
      .tour-red-btn .red-btn {
        width: 70%; }
        .tour-red-btn .red-btn a {
          width: 100%; } }
  @media (max-width: 560px) {
    .tour-red-btn {
      width: 100%; }
      .tour-red-btn .red-btn {
        width: 80%; } }

.tour-about {
  width: 70%;
  margin: 0 auto;
  padding: 0 5px;
  margin-bottom: 50px; }
  .tour-about p {
    font-family: "Merriweather", serif;
    color: #504d4d;
    line-height: 1.8rem;
    margin: 20px 0px; }
  .tour-about .tour-about-more p {
    margin: 30px 0;
    text-align: center;
    font-family: "Montserrat", sans-serif; }
    .tour-about .tour-about-more p a {
      text-decoration: none;
      color: #9f182f;
      font-weight: 300; }
    .tour-about .tour-about-more p:hover {
      cursor: pointer; }
  @media (max-width: 992px) {
    .tour-about {
      width: 80%; } }
  @media (max-width: 560px) {
    .tour-about {
      width: 95%; } }

.highlights,
.includes {
  font-family: "Montserrat", sans-serif;
  color: #504d4d;
  background: #e8e7de;
  padding: 15px 15%;
  margin-bottom: 50px; }
  .highlights ul,
  .includes ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px; }
    .highlights ul li,
    .includes ul li {
      font-size: 0.8rem;
      line-height: 1.3rem;
      text-align: center;
      padding: 5px 15px;
      width: 25%; }
      @media (max-width: 992px) {
        .highlights ul li,
        .includes ul li {
          width: 50%; } }
      @media (max-width: 765px) {
        .highlights ul li,
        .includes ul li {
          width: 100%; } }
  .highlights .what-bike,
  .includes .what-bike {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 5px;
    line-height: 1.3rem; }
    .highlights .what-bike a,
    .includes .what-bike a {
      text-decoration: none;
      color: #9f182f; }

.highlights ul li {
  font-size: 1rem; }

.includes {
  background: #fffff5;
  padding: 15px 0px;
  margin-bottom: 50px; }
  @media (max-width: 992px) {
    .includes {
      padding: 15px 100px; } }
  @media (max-width: 520px) {
    .includes {
      padding: 15px 30px;
      margin-bottom: 30px; } }
  .includes h4 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: 0px; }
  .includes ul {
    min-height: 120px; }
    @media (max-width: 992px) {
      .includes ul {
        margin-bottom: 15px; } }
    .includes ul .border {
      border-right: 1px solid #95989a; }
      @media (max-width: 992px) {
        .includes ul .border {
          border-right: none;
          border-bottom: 1px solid #95989a; } }
    @media (max-width: 992px) {
      .includes ul li {
        width: calc(100% / 2); } }
    @media (max-width: 765px) {
      .includes ul li {
        width: 100%; } }
    .includes ul li .icon-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-bottom: 5px; }
      @media (max-width: 992px) {
        .includes ul li .icon-wrapper {
          margin-bottom: 15px; } }
    .includes ul li img {
      width: 50px;
      height: 50px; }
    .includes ul li .includes-items {
      display: flex;
      flex-direction: column;
      text-align: center; }
      .includes ul li .includes-items .includes-item {
        width: 100%; }
      @media (max-width: 992px) {
        .includes ul li .includes-items {
          padding-bottom: 15px; } }

.tour-riders-staff {
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif; }
  .tour-riders-staff .tour-riders-staff-all,
  .tour-riders-staff .tour-riders-staff-less {
    display: flex;
    flex-wrap: wrap; }
    .tour-riders-staff .tour-riders-staff-all.show,
    .tour-riders-staff .tour-riders-staff-less.show {
      display: flex; }
    .tour-riders-staff .tour-riders-staff-all.hide,
    .tour-riders-staff .tour-riders-staff-less.hide {
      display: none; }
  .tour-riders-staff h3 {
    width: 100%; }
    .tour-riders-staff h3 form#rider_years {
      display: inline-block;
      position: relative;
      top: -4px;
      margin-left: 15px; }
      .tour-riders-staff h3 form#rider_years .choices {
        width: auto;
        min-width: 85px; }
        .tour-riders-staff h3 form#rider_years .choices .choices__item {
          font-weight: normal;
          white-space: nowrap; }
        .tour-riders-staff h3 form#rider_years .choices .choices__inner {
          padding: 0 7.5px;
          min-height: auto; }
          .tour-riders-staff h3 form#rider_years .choices .choices__inner .choices__list--single {
            padding: 0 22px 0 6px; }
  .tour-riders-staff .tour_riders.hide {
    display: none; }
  .tour-riders-staff figure {
    width: calc(16.6666% - 10px);
    margin: 5px;
    background: #e3d5cd;
    color: #504d4d;
    font-size: 0.65rem;
    line-height: 1.3rem;
    cursor: pointer; }
    @media (max-width: 1269px) {
      .tour-riders-staff figure {
        width: calc(33.3333% - 10px);
        margin: 5px; } }
    @media (max-width: 992px) {
      .tour-riders-staff figure {
        width: calc((100% / 2) - 10px);
        margin: 5px; } }
    @media (max-width: 678px) {
      .tour-riders-staff figure {
        min-height: 100px;
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
        display: flex; } }
    .tour-riders-staff figure figcaption {
      padding: 10px; }
      @media (max-width: 768px) {
        .tour-riders-staff figure figcaption {
          width: 100%; }
          .tour-riders-staff figure figcaption p {
            font-size: 0.8rem; } }
    .tour-riders-staff figure .rider-container {
      width: 100%;
      height: 170px;
      background-color: #b7b7b7;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
      margin-bottom: 15px;
      position: relative;
      padding-bottom: 100%; }
      @media (max-width: 678px) {
        .tour-riders-staff figure .rider-container {
          width: 30%;
          height: 100%;
          padding-bottom: 0; } }
      .tour-riders-staff figure .rider-container .rider-seven-epics {
        position: absolute;
        top: 3px;
        right: 3px;
        width: 60px; }
    .tour-riders-staff figure .name {
      display: flex;
      margin-bottom: 5px;
      font-size: 0.9rem; }
      .tour-riders-staff figure .name p {
        text-transform: uppercase;
        width: 85%;
        padding-right: 5px; }
        @media (max-width: 678px) {
          .tour-riders-staff figure .name p {
            width: 100%;
            font-size: 1.2rem;
            line-height: 1.8rem; } }
      .tour-riders-staff figure .name .flag-container {
        width: 20px; }
        .tour-riders-staff figure .name .flag-container img {
          width: 100%; }
      .tour-riders-staff figure .name img {
        display: inline-block; }
  .tour-riders-staff figure.rider {
    display: block; }
    @media (max-width: 678px) {
      .tour-riders-staff figure.rider {
        display: flex; } }
  .tour-riders-staff .grey-fig {
    background: #b7b7b7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.5rem;
    min-height: 290px; }
    .tour-riders-staff .grey-fig.mobile {
      display: none; }
    @media (max-width: 560px) {
      .tour-riders-staff .grey-fig {
        display: none; }
        .tour-riders-staff .grey-fig.mobile {
          display: flex; } }
    @media (max-width: 678px) {
      .tour-riders-staff .grey-fig {
        min-height: 100px; } }
  .tour-riders-staff.more .grey-fig {
    background: #9f182f; }

.tour-overview {
  font-family: "Montserrat", sans-serif;
  margin: 0 auto;
  margin: 50px 0px; }
  @media (max-width: 678px) {
    .tour-overview {
      margin: 30px; } }
  .tour-overview h3 {
    color: #9f182f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px; }

.tour-overview-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  color: #504d4d;
  font-size: 0.65rem; }
  @media (max-width: 900px) {
    .tour-overview-table {
      display: none; } }
  .tour-overview-table li[data-overview] {
    cursor: pointer; }
  .tour-overview-table ul {
    width: calc(100% / 9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .tour-overview-table ul.bigger {
      width: calc((100% / 9) * 2); }
  .tour-overview-table .sections-col {
    font-weight: 600; }
  .tour-overview-table .align-left {
    align-items: flex-start; }
  .tour-overview-table .align-center {
    align-items: center; }
  .tour-overview-table .align-right {
    align-items: flex-end; }
  .tour-overview-table .current-selection {
    color: #de4f20;
    font-weight: 600; }
  .tour-overview-table .align-right {
    align-items: flex-end; }
  .tour-overview-table.mobile {
    width: 50%;
    margin: 0 auto;
    display: none; }
    @media (max-width: 900px) {
      .tour-overview-table.mobile {
        display: flex;
        width: 100%; } }
    .tour-overview-table.mobile .sections-col-mobile {
      width: 100%;
      display: flex; }
      .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer {
        width: 100%;
        font-size: 0.9rem;
        display: flex;
        margin-bottom: 15px; }
        @media (max-width: 678px) {
          .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer {
            font-size: 0.8rem; } }
        .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer .heading {
          width: 25%;
          font-weight: 600; }
          @media (max-width: 678px) {
            .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer .heading {
              width: 30%; } }
        .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer ul {
          width: 75%; }
          @media (max-width: 678px) {
            .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer ul {
              width: 70%; } }
          .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer ul li {
            width: 100%;
            text-align: left; }
            .tour-overview-table.mobile .sections-col-mobile .sections-col-mobile-outer ul li:first-child {
              font-weight: 600; }

.about-departure, .more-tour-news {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .about-departure .arrow, .more-tour-news .arrow {
    margin-right: 15px;
    width: 7px;
    display: inline-block; }
    @media (max-width: 678px) {
      .about-departure .arrow, .more-tour-news .arrow {
        margin-right: 5px; } }
  .about-departure a, .more-tour-news a {
    color: #de4f20; }
  .about-departure p, .more-tour-news p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.2rem;
    color: #de4f20;
    font-weight: 300;
    display: inline-block; }
    @media (max-width: 560px) {
      .about-departure p, .more-tour-news p {
        font-size: 1rem; } }

.more-tour-news {
  margin-bottom: 50px; }

.tour-media {
  justify-content: center; }
  .tour-media img {
    max-width: 100%; }
  .tour-media .media-wrapper h3 {
    color: #504d4d;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center; }
  .tour-media .media-wrapper .img-wrapper {
    height: 380px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }

.tour-latest-news h3,
.tour-similar h3,
.try-us h3 {
  color: #9f182f;
  font-weight: 600;
  margin-bottom: 0px;
  text-align: center; }

.tour-latest-news .row {
  margin-bottom: 25px; }

.try-us {
  width: 60%;
  margin: 0 auto;
  background: #e8e7de;
  padding: 15px 30px;
  margin-bottom: 100px;
  font-family: "Montserrat", sans-serif; }
  .try-us h3 {
    font-size: 1.2rem; }
  .try-us p {
    text-align: center;
    line-height: 1.5rem; }
  .try-us .red {
    margin-top: 5px;
    color: #9f182f; }
  @media (max-width: 678px) {
    .try-us {
      width: 80%; } }

.inner-container {
  background: #fffff5;
  padding: 30px 100px;
  font-family: "Montserrat", sans-serif;
  color: #504d4d; }
  @media screen and (max-width: 698px) {
    .inner-container {
      padding: 30px; } }
  .inner-container h1 {
    color: #9f182f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 3.2rem; }
    @media screen and (max-width: 698px) {
      .inner-container h1 {
        font-size: 1.8rem; } }
  .inner-container .big {
    color: #9f182f;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center; }
    @media screen and (max-width: 698px) {
      .inner-container .big {
        font-size: 1.2rem; } }
  .inner-container h5 {
    color: #9f182f;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.8rem; }
    @media screen and (max-width: 698px) {
      .inner-container h5 {
        font-size: 0.9rem; } }
  @media screen and (max-width: 960px) {
    .inner-container {
      padding: 30px 10px; } }

.progress {
  margin-top: 30px;
  margin-bottom: 50px;
  height: 50px;
  background: #b7b7b7; }

#registration_progress {
  width: 20%;
  height: 50px;
  background: #c25520;
  display: flex;
  padding-right: 15px;
  justify-content: flex-end;
  align-items: center;
  color: #ffffff; }

#registration_progress.second {
  width: 40%; }

#registration_progress.third {
  width: 60%; }

#registration_progress.fourth {
  width: 80%; }

#registration_progress.fifth {
  width: 100%; }

legend span {
  color: #504d4d;
  font-weight: normal; }

.tour_year {
  width: 100%;
  padding: 0 30px;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  align-items: center; }
  @media screen and (max-width: 698px) {
    .tour_year {
      flex-direction: column; } }
  .tour_year p {
    color: #504d4d;
    text-align: right;
    padding-right: 20px;
    width: 15%; }
    @media screen and (max-width: 1100px) {
      .tour_year p {
        width: 20%;
        text-align: center; } }
    @media screen and (max-width: 698px) {
      .tour_year p {
        width: 100%;
        margin-bottom: 15px; } }
  .tour_year li.select {
    width: 35%;
    padding-right: 15px;
    padding-left: 15px; }
    @media screen and (max-width: 1100px) {
      .tour_year li.select {
        width: 80%; } }
    @media screen and (max-width: 698px) {
      .tour_year li.select {
        width: 100%;
        margin-bottom: 15px; } }

fieldset.inputs {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap; }
  fieldset.inputs ol {
    width: 100%; }
  fieldset.inputs ol > li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
  fieldset.inputs p.align-input {
    padding-left: 7px; }
  fieldset.inputs .inputs {
    width: 100%;
    display: flex; }
    @media screen and (max-width: 1100px) {
      fieldset.inputs .inputs {
        margin: 0 30px; } }
    @media screen and (max-width: 698px) {
      fieldset.inputs .inputs {
        margin: 0 10px; } }
  fieldset.inputs .input img {
    margin-left: 10px;
    margin-bottom: 20px; }
  fieldset.inputs label {
    display: inline-block;
    width: 15%;
    text-transform: uppercase;
    text-align: right;
    color: #504d4d;
    padding-right: 20px; }
    @media screen and (max-width: 1100px) {
      fieldset.inputs label {
        width: 25%; } }
    @media screen and (max-width: 698px) {
      fieldset.inputs label {
        width: 100%;
        padding-right: 10px;
        text-align: left; } }
  fieldset.inputs fieldset.fragments {
    width: 100%; }
    fieldset.inputs fieldset.fragments legend {
      width: 100%; }
    fieldset.inputs fieldset.fragments .fragments-group {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      padding-left: 15%; }
      @media screen and (max-width: 698px) {
        fieldset.inputs fieldset.fragments .fragments-group {
          padding-left: 0px; } }
      fieldset.inputs fieldset.fragments .fragments-group > li {
        width: 33%; }
        @media screen and (max-width: 698px) {
          fieldset.inputs fieldset.fragments .fragments-group > li {
            width: 100%; } }
      fieldset.inputs fieldset.fragments .fragments-group .choices {
        width: 100%; }
      fieldset.inputs fieldset.fragments .fragments-group label {
        text-align: left;
        padding-left: 10px; }
  fieldset.inputs input,
  fieldset.inputs textarea,
  fieldset.inputs .choices {
    width: 63%;
    margin-left: 10px; }
    @media screen and (max-width: 698px) {
      fieldset.inputs input,
      fieldset.inputs textarea,
      fieldset.inputs .choices {
        margin-left: 0px;
        width: 100%; } }
  fieldset.inputs input.url {
    max-width: 400px; }
  fieldset.inputs input.title {
    max-width: 300px; }
  fieldset.inputs input,
  fieldset.inputs textarea {
    height: 50px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #c9ccd0;
    background: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem; }
  fieldset.inputs input[type="radio"] {
    width: 15px;
    height: 15px; }
  fieldset.inputs textarea {
    height: 200px; }
  fieldset.inputs .boolean label {
    padding: 15px;
    text-align: left;
    width: 100%;
    padding-left: 12.5%;
    display: flex;
    align-items: center; }
  fieldset.inputs .boolean input {
    width: auto;
    margin-bottom: 0px;
    transform: translateY(-3px);
    margin-right: 15px; }
  fieldset.inputs .hint {
    color: #504d4d;
    margin-left: calc(15% + 10px);
    line-height: 1.8rem;
    margin-bottom: 15px; }
    fieldset.inputs .hint::first-letter {
      text-transform: capitalize; }
    @media screen and (max-width: 1100px) {
      fieldset.inputs .hint {
        width: 63%;
        margin-left: calc(25% + 15px); } }
    @media screen and (max-width: 698px) {
      fieldset.inputs .hint {
        width: 100%;
        margin-left: 0px; } }

.boolean.disabled label {
  display: none !important; }

.choices {
  color: #504d4d;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase; }

.choices__inner {
  border: none;
  border-radius: 0px;
  background: #f0ebe9; }

.choices__list--dropdown {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff; }

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #000; }

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 10px !important; } }

.actions.normal {
  padding-left: calc(15% + 10px);
  width: calc(63% + 15%);
  margin-top: 15px; }
  .actions.normal button,
  .actions.normal input[type="submit"],
  .actions.normal .action_button {
    display: block;
    margin: 0 auto;
    border-radius: 0px;
    padding: 15px 10px;
    width: 100%;
    max-width: 325px;
    border: none;
    background: #9f182f;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center; }
    .actions.normal button.narrow,
    .actions.normal input[type="submit"].narrow,
    .actions.normal .action_button.narrow {
      width: auto;
      padding: 5px 10px 5px 10px; }

.actions {
  display: flex; }
  .actions ol {
    width: 100%;
    display: flex; }
  .actions .continue,
  .actions .changes {
    margin-top: 30px;
    width: 50%; }
    .actions .continue .action,
    .actions .changes .action {
      background-image: url("/wp-content/themes/tda/img/orange_arrow.svg");
      background-position: right;
      background-repeat: no-repeat;
      background-size: contain;
      transform: translateX(30px);
      padding-right: 50px;
      border: none;
      background-color: #fffff5;
      font-family: "Montserrat", sans-serif;
      color: #504d4d;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: right;
      display: inline-block;
      line-height: 1.6rem; }
      @media screen and (max-width: 1100px) {
        .actions .continue .action,
        .actions .changes .action {
          font-size: 0.9rem;
          transform: translateX(0px);
          padding-right: 30px; } }
      @media screen and (max-width: 350px) {
        .actions .continue .action,
        .actions .changes .action {
          font-size: 0.65rem; } }
  .actions .changes .action {
    background-image: url("/wp-content/themes/tda/img/orange_arrow_left.svg");
    background-position: left;
    transform: translateX(-30px);
    padding-left: 50px;
    text-align: left; }
    @media screen and (max-width: 1100px) {
      .actions .changes .action {
        transform: translateX(0px);
        padding-left: 30px; } }
  .actions .continue {
    text-align: right; }
  .actions .continue.only {
    width: 100%; }

.inline-errors {
  width: 90%;
  margin-left: 5%;
  margin-right: 20px;
  color: #9f182f;
  margin-bottom: 20px;
  line-height: 1.5rem; }
  .inline-errors:first-letter {
    text-transform: capitalize; }
  @media screen and (max-width: 698px) {
    .inline-errors {
      font-size: 0.8rem; } }

.year_sections {
  margin-bottom: 100px; }
  .year_sections label {
    text-align: left !important; }

.year-section {
  font-size: 0.8rem;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start; }
  @media screen and (max-width: 960px) {
    .year-section {
      font-size: 0.65rem; } }
  .year-section .section_details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1; }
    @media screen and (max-width: 698px) {
      .year-section .section_details {
        flex-direction: column;
        font-size: 0.8rem; }
        .year-section .section_details div {
          flex-basis: auto; } }
  .year-section:hover * {
    color: #c25520;
    font-weight: bold; }
  .year-section a {
    color: #504d4d; }
  .year-section div {
    padding-top: 12px; }
  .year-section div.boolean {
    padding-top: 0px; }
    .year-section div.boolean input {
      margin: 0; }
    .year-section div.boolean .checkmark {
      margin: 0 !important; }
  .year-section .year-section__checkbox {
    width: 50px;
    height: 50px;
    flex-basis: 50px; }
    .year-section .year-section__checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer; }
  .year-section .year-section__section {
    flex-basis: 12%;
    font-weight: 600;
    padding: 0 5px; }
  .year-section .year-section__name {
    flex-basis: 23%;
    padding: 0 5px; }
    .year-section .year-section__name label {
      width: auto;
      padding: 0; }
  .year-section .year-section__location {
    flex-basis: 25%;
    padding: 0 5px; }
  .year-section .year-section__dates {
    flex-basis: 25%;
    padding: 0 5px; }
  .year-section .year-section__status {
    flex-basis: 6%;
    text-align: right;
    padding: 0 0 0 5px; }

@media screen and (max-width: 698px) {
  .registration_confirmation {
    padding: 10px; } }

.registration_confirmation ol {
  color: #504d4d; }
  .registration_confirmation ol li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px; }

.registration_confirmation label {
  width: 15%;
  margin-right: 15px;
  text-align: right; }
  @media screen and (max-width: 1230px) {
    .registration_confirmation label {
      width: 25%; } }
  @media screen and (max-width: 698px) {
    .registration_confirmation label {
      width: 100%;
      text-align: left; } }

.registration_confirmation .radio-wrapper {
  width: 75%; }
  .registration_confirmation .radio-wrapper small {
    margin-left: 15px; }

#registration_fee_disclaimer {
  width: 80%;
  color: #504d4d;
  margin-left: 14%;
  margin-bottom: 50px;
  line-height: 1.8rem; }
  @media screen and (max-width: 698px) {
    #registration_fee_disclaimer {
      width: 100%;
      text-align: left;
      padding: 10px;
      margin: 0px; } }

p#terms_and_conditions {
  line-height: 1.8;
  margin: 50px; }
  @media screen and (max-width: 350px) {
    p#terms_and_conditions {
      margin: 50px 20px; } }
  p#terms_and_conditions label.checkbox {
    top: 4px; }
  p#terms_and_conditions a {
    color: #c25520; }

.registration_thanks, .registration_share {
  margin: 30px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; }
  .registration_thanks h3, .registration_share h3 {
    font-size: 1.5rem;
    margin-top: 0; }
    @media screen and (max-width: 698px) {
      .registration_thanks h3, .registration_share h3 {
        font-size: 1.2rem; } }
  .registration_thanks img, .registration_share img {
    width: 50%;
    margin-right: 20px; }
    @media screen and (max-width: 698px) {
      .registration_thanks img, .registration_share img {
        width: 100%;
        margin: 0; } }
  .registration_thanks .text, .registration_share .text {
    width: calc(50% - 20px); }
    @media screen and (max-width: 698px) {
      .registration_thanks .text, .registration_share .text {
        margin-top: 20px;
        width: 100%; } }
  .registration_thanks p, .registration_share p {
    line-height: 1.8rem; }

.registration_share {
  margin-bottom: 45px; }

hr.divider {
  border: 1px solid #caccc8; }

button.proceed_to_my_tours {
  min-width: 80%;
  max-width: none;
  width: auto; }

h3.create_your_password {
  font-size: 1.5rem;
  margin-top: 30px; }
  @media screen and (max-width: 698px) {
    h3.create_your_password {
      font-size: 1.2rem; } }

.registration_share {
  background-color: #e8e7de;
  padding: 20px; }
  .registration_share .social_buttons {
    margin-top: 10px; }

fieldset.full-label label {
  width: 100%;
  text-align: left; }

fieldset.full-label input,
fieldset.full-label textarea {
  margin-left: 0px; }

fieldset.choices label {
  width: 100%;
  text-align: left; }

fieldset.choices .choices-group {
  display: flex; }

fieldset.choices input {
  height: auto;
  margin-bottom: 10px; }

p.explanatory {
  margin-bottom: 15px; }

.choices:last-child {
  margin-bottom: 24px; }

.choices__placeholder {
  opacity: 0.8 !important; }

.registration .choices {
  width: 100% !important; }

#main-body .choices {
  width: 100%;
  margin-left: 0px; }

form.rider_form table td {
  padding: 0.3em;
  line-height: 1.5em; }

.g-recaptcha {
  margin-left: 10px; }
  @media screen and (max-width: 698px) {
    .g-recaptcha {
      margin-left: 0px; } }

#general_form_gender .choices label {
  text-align: left;
  font-size: 16px;
  width: 25% !important; }

section.legal_form_content ul {
  margin-left: 40px; }

section.legal_form_content p {
  line-height: 1.8rem; }

section.legal_form_content a {
  color: #c25520; }

.register {
  background: #c25520;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 40px 0; }
  .register a {
    display: inline-block;
    font-size: 3rem;
    color: #ffffff; }
    @media (max-width: 678px) {
      .register a {
        font-size: 1.8rem; } }

.page-404 .register {
  display: none; }

footer {
  padding: 40px 5% 60px 5%;
  background-color: #622751;
  font-family: "Montserrat", sans-serif; }
  footer h2 {
    width: 100%;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    width: 80%; }
    @media only screen and (max-width: 596px) {
      footer h2 {
        width: 100%;
        text-align: center; } }
  footer h3 {
    font-size: 0.9rem; }
    footer h3 img {
      display: inline-block;
      width: 15px;
      height: 15px;
      transform: translateY(3px);
      margin-left: 30px; }
      @media only screen and (max-width: 678px) {
        footer h3 img {
          display: none; } }
  footer a,
  footer p {
    font-size: 0.8rem; }
  footer a {
    color: #ffffff; }

.footer-top {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 40px;
  width: 100%;
  display: flex; }
  @media only screen and (max-width: 1196px) {
    .footer-top {
      flex-direction: column; } }

.footer-links {
  width: 60%;
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 1196px) {
    .footer-links {
      width: 100%; } }

.footer-col {
  width: 25%;
  margin-bottom: 50px; }
  .footer-col li {
    display: flex;
    align-items: baseline; }
    @media only screen and (max-width: 596px) {
      .footer-col li {
        padding-left: 30px; } }
  .footer-col p {
    font-size: 0.9rem;
    color: #ffffff; }
  @media only screen and (max-width: 596px) {
    .footer-col {
      width: 50%; } }

.grow {
  width: 50%; }
  @media only screen and (max-width: 596px) {
    .grow {
      width: 100%;
      margin: 0 auto;
      margin-bottom: 30px; } }

.small-icon {
  width: 15px;
  margin-right: 10px; }

.newsletter-form p.newsletter-response {
  padding: 15px 0px; }

.footer-form {
  border: 1px solid #c9ccd0;
  border-radius: 3px;
  margin: 20px 25% 0px 0;
  position: relative; }
  @media only screen and (max-width: 1196px) {
    .footer-form {
      margin: 20px 20px 20px 0; } }
  @media only screen and (max-width: 596px) {
    .footer-form {
      width: 100%;
      margin: 15px 0; } }
  .footer-form input,
  .footer-form button {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    height: 38px;
    width: 80%;
    background: #622751;
    color: #c9ccd0;
    border: none;
    border-radius: 3px;
    padding-left: 15px; }
  .footer-form input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #c9ccd0;
    opacity: 1;
    /* Firefox */ }
  .footer-form button {
    position: absolute;
    right: 0;
    height: 38px;
    border: none;
    border-radius: 0px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 20%;
    background: #ffffff;
    color: #622751;
    text-align: center;
    font-weight: 600;
    padding: 0; }
    .footer-form button:hover {
      cursor: pointer; }

.footer-accr-section {
  display: flex;
  align-items: center;
  margin-top: 15px; }
  .footer-accr-section img {
    width: 230px;
    margin-right: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 3px; }
  @media only screen and (max-width: 596px) {
    .footer-accr-section {
      justify-content: center; } }

.fucsia {
  color: #f303e7;
  font-size: 1.2rem;
  font-weight: 400;
  display: none; }
  @media only screen and (max-width: 860px) {
    .fucsia {
      display: none; } }

.info {
  width: 40%; }
  .info #logo img {
    width: 160px;
    margin-left: 25%;
    margin-bottom: 30px; }
  @media only screen and (max-width: 1196px) {
    .info {
      width: 100%; }
      .info #logo img {
        margin-left: 0; } }
  @media only screen and (max-width: 596px) {
    .info {
      margin-left: 0px;
      text-align: center; } }

.tiny-text {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.8rem; }

span.footer-tda {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.5rem;
  font-weight: 400; }
  @media only screen and (max-width: 596px) {
    span.footer-tda {
      padding-left: 30px; } }

@media only screen and (max-width: 596px) {
  .contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; } }

#contact {
  padding-left: 35%; }
  @media only screen and (max-width: 1196px) {
    #contact {
      padding-left: 0px; } }
  @media only screen and (max-width: 596px) {
    #contact {
      text-align: left;
      padding-left: 0px; } }

.footer-bottom {
  width: 100%;
  margin-top: 20px;
  position: relative; }
  .footer-bottom h3 {
    color: #ffffff;
    cursor: pointer; }

.footer-currency {
  font-size: 1.3rem; }
  .footer-currency .footer-currency-list {
    width: 80%;
    margin-top: 0px;
    display: none;
    flex-wrap: wrap; }
    @media only screen and (max-width: 1196px) {
      .footer-currency .footer-currency-list {
        width: 95%; } }
    .footer-currency .footer-currency-list li {
      width: calc(100% / 16);
      line-height: 3rem; }
      @media only screen and (max-width: 1196px) {
        .footer-currency .footer-currency-list li {
          width: calc(100% / 8); } }
      @media only screen and (max-width: 860px) {
        .footer-currency .footer-currency-list li {
          width: calc(100% / 4);
          text-align: center; } }
    .footer-currency .footer-currency-list a.active {
      color: #c2531a; }
  .footer-currency .footer-close-currency {
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 15px;
    display: none;
    cursor: pointer; }
  .footer-currency p {
    color: #ffffff;
    display: none;
    line-height: 1.4rem; }
  .footer-currency.open p {
    display: block; }
  .footer-currency.open .footer-currency-list {
    display: flex; }
  .footer-currency.open .footer-close-currency {
    display: block; }

.my-account-nav-section {
  margin: 50px 0px;
  border-bottom: 1px solid #cfcdcd; }

.my-account-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; }

.my-account-nav__title {
  width: 25%;
  color: #504d4d;
  display: flex;
  align-self: flex-end;
  padding-bottom: 5px; }
  @media only screen and (max-width: 992px) {
    .my-account-nav__title {
      width: 100%; } }

.my-account-nav-items {
  display: flex;
  flex-wrap: wrap;
  width: 50%; }
  .my-account-nav-items li {
    flex-grow: 1;
    text-align: center;
    padding-right: 10px; }
    @media only screen and (max-width: 992px) {
      .my-account-nav-items li {
        text-align: left; } }
  .my-account-nav-items li a {
    color: #c9ccd0; }
  .my-account-nav-items li.current-menu-item a {
    color: #9f182f; }
  @media only screen and (max-width: 1245px) {
    .my-account-nav-items {
      width: 75%; } }
  @media only screen and (max-width: 992px) {
    .my-account-nav-items {
      margin-top: 15px;
      width: 100%; } }

.my-account-h2 {
  text-transform: uppercase;
  color: #9f182f;
  font-size: 1.8rem;
  padding: 15px 0px; }

.my-account-h3 {
  color: #9f182f;
  font-size: 1.5rem;
  text-align: center;
  margin: 50px 0px;
  padding-bottom: 15px;
  border-bottom: 2px solid #cfcdcd; }

.my-account__next-tour {
  color: #504d4d;
  font-size: 1.1rem;
  line-height: 2.3rem;
  padding: 10px 0px; }

.registration_forms {
  max-width: 1024px;
  margin: 0 auto;
  color: #504d4d; }
  .registration_forms a {
    color: #9f182f; }
  .registration_forms table {
    width: 100%;
    margin: 50px 0px; }
  .registration_forms tr {
    border-bottom: 2px solid #cfcdcd; }
  .registration_forms th {
    text-align: left;
    font-size: 1.2rem;
    padding: 15px 0px; }
    @media only screen and (max-width: 768px) {
      .registration_forms th {
        font-size: 1rem; } }
  .registration_forms td {
    padding: 15px 0px;
    padding-right: 15px; }
    @media only screen and (max-width: 768px) {
      .registration_forms td {
        font-size: 0.8rem; } }
  .registration_forms .icon {
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: relative;
    left: -35px;
    bottom: -5px;
    display: inline-block;
    margin-right: -25px;
    background-image: url("/wp-content/themes/tda/img/document-icon.svg"); }
    .registration_forms .icon.bulletin {
      background-image: url("/wp-content/themes/tda/img/mail-icon.svg"); }
    .registration_forms .icon.mail {
      background-image: url("/wp-content/themes/tda/img/mail-icon.svg"); }
  .registration_forms .complete .icon,
  .registration_forms .paid .icon,
  .registration_forms .acknowledged .icon {
    background-image: url("/wp-content/themes/tda/img/checkmark-icon.svg"); }

html {
  height: 100%; }
  html body.dashboard, html body.registrations, html body.seven_epics {
    height: 100%;
    display: flex;
    flex-direction: column; }
    html body.dashboard section.inner-container, html body.registrations section.inner-container, html body.seven_epics section.inner-container {
      flex-grow: 1; }

.boolean label,
.radio-container label {
  position: relative; }

.boolean label input[type="checkbox"],
.boolean label input[type="radio"],
.radio-container label input[type="checkbox"],
.radio-container label input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

.boolean .checkmark,
.radio-container .checkmark {
  display: inline-block;
  border: 1px solid #4a4a4a;
  margin-right: 15px;
  height: 20px;
  width: 20px;
  background-color: #fff; }

.boolean .radio,
.radio-container .radio {
  display: inline-block;
  border: 1px solid #4a4a4a;
  height: 15px;
  width: 15px;
  margin-left: 20px;
  border-radius: 50%;
  background-color: #fff; }

.boolean label:hover input[type="checkbox"] ~ .checkmark,
.boolean label:hover input[type="radio"] ~ .radio,
.radio-container label:hover input[type="checkbox"] ~ .checkmark,
.radio-container label:hover input[type="radio"] ~ .radio {
  background-color: #ccc; }

.boolean label input[type="checkbox"]:checked ~ .checkmark,
.boolean label input[type="radio"]:checked ~ .radio,
.radio-container label input[type="checkbox"]:checked ~ .checkmark,
.radio-container label input[type="radio"]:checked ~ .radio {
  background-color: #c25520; }

.orange_box {
  background: #c25520;
  color: #ffffff;
  margin: 0 auto;
  padding: 20px;
  width: 280px;
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 992px) {
    .orange_box {
      width: 100%;
      margin-top: 30px; } }
  .orange_box .orange_box_container {
    width: 100%; }
  .orange_box a {
    color: #ffffff; }
  .orange_box h4 {
    margin-bottom: 10px;
    margin-left: 0px;
    color: #ffffff; }
    .orange_box h4 img {
      display: inline-block;
      width: 8px;
      margin-right: 10px; }
    @media only screen and (max-width: 992px) {
      .orange_box h4 {
        font-size: 1.2rem;
        margin-bottom: 15px; } }
  .orange_box .social_icons {
    margin: 20px 0px 0px 0px;
    display: flex; }
    .orange_box .social_icons img {
      display: inline-block;
      width: 20px;
      margin-right: 10px; }
    @media only screen and (max-width: 992px) {
      .orange_box .social_icons {
        margin-top: 30px; } }
  .orange_box p {
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding-right: 15px; }
    @media only screen and (max-width: 992px) {
      .orange_box p {
        font-size: 0.9rem;
        line-height: 1.5rem; } }
  .orange_box span {
    font-weight: normal;
    margin-right: 15px; }
  .orange_box h6 {
    margin-top: 15px;
    font-size: 0.8rem;
    line-height: 1.3rem; }
    @media only screen and (max-width: 992px) {
      .orange_box h6 {
        font-size: 0.9rem; } }
  .orange_box form {
    border: none;
    min-height: 40px;
    margin-top: 0px;
    position: relative; }
    .orange_box form input,
    .orange_box form button {
      font-family: "Montserrat", sans-serif;
      font-size: 0.9rem;
      height: 38px;
      width: 80%;
      border: none;
      padding-left: 15px; }
    .orange_box form input::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #c9ccd0;
      opacity: 1;
      /* Firefox */ }
    .orange_box form button {
      position: absolute;
      right: 0;
      height: 38px;
      border: none;
      width: 20%;
      color: #ffffff;
      background: #9f182f;
      text-align: center;
      font-weight: 600;
      padding: 0; }
      .orange_box form button:hover {
        cursor: pointer; }

.page-nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 100px);
  margin: 50px 50px 10px 50px;
  padding-bottom: 15px;
  border-bottom: 1px solid #95989a;
  color: #4a4a4a; }
  @media (max-width: 992px) {
    .page-nav {
      align-items: flex-start; } }

.page-nav-tagline {
  width: 25%; }
  @media (max-width: 992px) {
    .page-nav-tagline {
      width: 100%; } }

.page-nav-links {
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .page-nav-links a {
    padding: 0px 15px;
    text-transform: uppercase;
    color: #4a4a4a;
    line-height: 1.5rem; }
    .page-nav-links a.active {
      font-weight: bold;
      color: #9f182f; }
    @media (max-width: 992px) {
      .page-nav-links a {
        padding-left: 0px;
        margin-bottom: 15px; } }
  @media (max-width: 992px) {
    .page-nav-links {
      width: 75%;
      margin: 30px 0px;
      justify-content: flex-start;
      text-align: left; } }

.page-nav-balance {
  width: 25%; }
  @media (max-width: 992px) {
    .page-nav-balance {
      margin: 30px 0px;
      text-align: left; } }

.page-header {
  background-color: #504d4d;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
  min-height: 650px;
  max-height: 900px;
  width: 100%;
  position: relative; }
  @media (max-width: 992px) {
    .page-header {
      min-height: 450px;
      max-height: 100vh;
      position: static; } }
  .page-header .page-header-content {
    position: absolute;
    bottom: 0px;
    padding: 25px;
    padding-left: 50px;
    width: 100%;
    display: flex;
    align-items: flex-end; }
    @media (max-width: 992px) {
      .page-header .page-header-content {
        padding-left: 25px;
        position: relative;
        justify-content: center; } }
  .page-header h1 {
    color: white;
    font-size: 3rem;
    line-height: 3.2rem;
    width: 60%;
    font-weight: bold;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7); }
    @media (max-width: 992px) {
      .page-header h1 {
        width: auto;
        font-size: 2.4rem;
        line-height: 2.6rem;
        text-align: center; } }
  .page-header .orange_box {
    margin-right: 35px; }
    @media (max-width: 992px) {
      .page-header .orange_box {
        display: none; } }

.page-header-icon {
  width: 100px;
  padding-bottom: 10px; }

.tns-outer {
  padding: 0 !important; }
  .tns-outer [hidden] {
    display: none !important; }
  .tns-outer [aria-controls],
  .tns-outer [data-action] {
    cursor: pointer; }
  .tns-outer > button {
    display: none; }

.ms-touch {
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  -ms-scroll-chaining: none;
  -ms-scroll-snap-type: mandatory;
  -ms-scroll-snap-points-x: snapInterval(0%, 100%); }

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s; }
  .tns-slider > .tns-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

.tns-horizontal.tns-subpixel {
  white-space: nowrap; }
  .tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal; }

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both; }

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
  margin-right: -100%; }

.tns-no-calc {
  position: relative;
  left: 0; }

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px; }
  .tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    -webkit-transition: transform 0s, opacity 0s;
    -moz-transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s; }
  .tns-gallery > .tns-moving {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s; }

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6; }
  .tns-lazy-img.loaded {
    opacity: 1; }

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s; }

.tns-ovh {
  overflow: hidden; }

.tns-hdx {
  overflow-x: hidden; }

.tns-hdy {
  overflow-y: hidden; }

.tns-visually-hidden {
  position: absolute;
  left: -10000em; }

.tns-transparent {
  opacity: 0;
  visibility: hidden; }

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0; }

.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1; }

.blog-page-nav {
  width: calc(100% - 100px);
  margin: 50px 50px 10px 50px;
  padding-bottom: 15px;
  color: #4a4a4a; }
  @media (max-width: 992px) {
    .blog-page-nav {
      align-items: flex-start; } }

.blog-page-nav-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #95989a; }

.blog-page-nav-tagline {
  width: 15%;
  line-height: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold; }
  @media (max-width: 992px) {
    .blog-page-nav-tagline {
      width: 100%;
      margin-bottom: 15px; } }

.blog-page-nav-links,
.blog-page-nav-filter {
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .blog-page-nav-links a,
  .blog-page-nav-filter a {
    padding: 0px 15px;
    text-transform: uppercase;
    color: #4a4a4a;
    line-height: 1.5rem;
    margin-bottom: 15px; }
    .blog-page-nav-links a.active,
    .blog-page-nav-filter a.active {
      font-weight: bold;
      color: #9f182f; }
    @media (max-width: 992px) {
      .blog-page-nav-links a,
      .blog-page-nav-filter a {
        padding-left: 0px;
        margin-bottom: 15px; } }
  @media (max-width: 992px) {
    .blog-page-nav-links,
    .blog-page-nav-filter {
      width: 100%;
      margin: 15px 0px;
      justify-content: flex-start;
      text-align: left; }
      .blog-page-nav-links a,
      .blog-page-nav-filter a {
        font-size: 0.8rem; } }

.blog-page-nav-filter {
  border-bottom: none;
  width: 100%;
  padding-top: 20px; }
  .blog-page-nav-filter .choices {
    width: 25% !important;
    margin-left: 5px;
    margin-right: 5px; }
    @media (max-width: 992px) {
      .blog-page-nav-filter .choices {
        width: 100% !important;
        margin: 0px;
        margin-bottom: 10px; } }

.blog-page {
  width: 100%;
  padding: 100px;
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 992px) {
    .blog-page {
      padding: 30px; } }

.blog-page-postings {
  width: 75%;
  padding-right: 50px; }
  .blog-page-postings h3 {
    color: #9f182f;
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 30px; }
  @media only screen and (max-width: 992px) {
    .blog-page-postings {
      width: 100%;
      padding-right: 0px; } }

.blog-page-blogs {
  background: #fffff5;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .blog-page-blogs .normal_post {
    width: calc(50% - 7.5px);
    margin: 0px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 992px) {
      .blog-page-blogs .normal_post {
        width: 100%; } }
  .blog-page-blogs .latest {
    width: 100%;
    background-color: grey;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0px;
    margin-bottom: 15px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.7); }
    .blog-page-blogs .latest h2 {
      color: #ffffff;
      font-size: 2.5rem;
      margin-top: 300px;
      margin-bottom: 15px; }
    .blog-page-blogs .latest p {
      margin-bottom: 15px;
      font-family: "Merriweather", serif;
      font-weight: 300;
      line-height: 1.5rem; }
    .blog-page-blogs .latest .small {
      font-family: "Montserrat", sans-serif; }
      .blog-page-blogs .latest .small span {
        font-weight: normal !important;
        text-transform: uppercase; }

.blog-page-aside {
  width: 25%;
  padding-left: 50px; }
  .blog-page-aside .aside-purple-box {
    background-color: #622751;
    font-family: "Merriweather", serif;
    line-height: 1.8rem;
    color: #ffffff;
    padding: 15px;
    margin-bottom: 30px;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .blog-page-aside h4 {
    margin-left: 0px;
    color: #9f182f;
    font-weight: bolder; }
  .blog-page-aside .aside-staff-pick {
    margin: 30px 0px; }
    .blog-page-aside .aside-staff-pick h2 {
      color: #de4f20;
      font-size: 1.2rem;
      margin-bottom: 15px;
      line-height: 1.5rem; }
    .blog-page-aside .aside-staff-pick p {
      color: #504d4d;
      font-family: "Merriweather", serif;
      line-height: 1.5rem; }
  @media (max-width: 1296px) {
    .blog-page-aside {
      padding-left: 0px; } }
  @media only screen and (max-width: 992px) {
    .blog-page-aside {
      width: 100%;
      padding-left: 0px; } }

.blog-page-buttons {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex; }
  .blog-page-buttons a {
    cursor: pointer;
    width: 50%;
    background: none;
    border: none;
    font-size: 1.2rem;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: #504d4d;
    margin: 30px; }
    .blog-page-buttons a.new-posts {
      justify-content: flex-end; }
    .blog-page-buttons a .old-posts-text,
    .blog-page-buttons a .new-posts-text {
      display: flex;
      align-items: center; }
    .blog-page-buttons a .old-posts-text {
      margin-left: 30px; }
    .blog-page-buttons a .new-posts-text {
      margin-right: 30px; }
    .blog-page-buttons a img {
      width: 25px; }

.normal_post {
  background: #e3d5cd; }
  .normal_post .img_container {
    background: #e3d5cd; }
    .normal_post .img_container img {
      display: inline-block;
      width: 100%; }
  .normal_post .text_container {
    padding: 15px 30px; }
    .normal_post .text_container h3 {
      text-transform: capitalize;
      color: #c2531a;
      font-size: 1.2rem;
      font-weight: normal;
      margin: 15px 0;
      line-height: 1.5rem;
      text-align: left; }
    .normal_post .text_container p {
      color: #4a4a4a;
      margin-bottom: 30px;
      line-height: 1.5rem; }
    .normal_post .text_container .blog_about {
      font-family: "Merriweather", serif; }
    .normal_post .text_container .small {
      margin: 25px 0;
      font-size: 0.8rem;
      color: #504d4d;
      font-family: "Montserrat", sans-serif; }
      .normal_post .text_container .small .date,
      .normal_post .text_container .small .author {
        color: #c2531a;
        font-weight: normal;
        text-transform: uppercase; }

.page-container {
  margin: 50px 100px; }
  @media (max-width: 992px) {
    .page-container {
      margin: 50px; } }
  @media (max-width: 560px) {
    .page-container {
      margin: 30px; } }
  .page-container .content-container {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 100px; }
    @media (max-width: 1096px) {
      .page-container .content-container {
        width: 100%; } }
    .page-container .content-container blockquote {
      border: 1px solid #95989a;
      border-left: none;
      border-right: none;
      padding: 30px 15px;
      margin: 50px 0;
      display: flex;
      justify-content: center;
      align-items: center; }
      .page-container .content-container blockquote p {
        color: #9f182f;
        font-size: 1.8rem;
        line-height: 3rem;
        font-style: italic;
        font-weight: bold;
        text-align: center;
        margin-bottom: 0px; }
    .page-container .content-container .pullquote {
      color: #9f182f;
      font-size: 1.2rem;
      line-height: 1.7rem;
      font-style: italic; }
    .page-container .content-container .col-half blockquote {
      margin: 0px; }
    @media (max-width: 678px) {
      .page-container .content-container .col-half {
        width: 100% !important;
        margin-bottom: 50px; } }
    .page-container .content-container p, .page-container .content-container ul, .page-container .content-container ol {
      height: auto;
      color: #504d4d;
      font-family: "Merriweather", serif;
      line-height: 1.8rem;
      margin-bottom: 30px; }
    .page-container .content-container p:empty {
      display: none; }
    .page-container .content-container img, .page-container .content-container .wp-caption {
      max-width: 100%;
      margin-bottom: 15px; }
      .page-container .content-container img.alignright, .page-container .content-container .wp-caption.alignright {
        width: auto;
        float: right;
        margin: 15px;
        margin-left: 30px; }
      .page-container .content-container img.alignleft, .page-container .content-container .wp-caption.alignleft {
        clear: left;
        float: left;
        margin-right: 30px; }
      .page-container .content-container img.alignnone, .page-container .content-container img.aligncenter, .page-container .content-container .wp-caption.alignnone, .page-container .content-container .wp-caption.aligncenter {
        display: block;
        margin: 30px auto; }
    .page-container .content-container img.overflow {
      width: calc(120%);
      max-width: calc(120%);
      transform: translateX(-10%); }
      @media (max-width: 1096px) {
        .page-container .content-container img.overflow {
          width: 100%;
          transform: translateX(0px); } }
    .page-container .content-container a {
      text-decoration: none;
      color: #9f182f; }
    .page-container .content-container ul,
    .page-container .content-container ol {
      list-style-position: outside;
      padding-left: 1em; }
      .page-container .content-container ul li,
      .page-container .content-container ol li {
        padding-left: 0.5em; }
    .page-container .content-container ol {
      list-style-type: decimal; }
      .page-container .content-container ol ol {
        list-style-type: lower-alpha;
        margin-bottom: auto !important; }
    .page-container .content-container ul {
      list-style: disc; }
      .page-container .content-container ul ul {
        list-style: circle !important;
        margin-bottom: auto !important; }
        .page-container .content-container ul ul ul {
          list-style-type: square !important; }
    .page-container .content-container .wp-caption-text {
      max-width: 50%;
      font-family: "Montserrat", sans-serif;
      font-size: 0.8rem;
      line-height: 1.2rem;
      padding-top: 5px;
      padding-bottom: 15px;
      border-bottom: 1px solid #95989a; }
      .page-container .content-container .wp-caption-text:before {
        display: inline-block;
        content: "";
        width: 0px;
        height: 0px;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 10px solid #c25520;
        margin-right: 10px; }
    .page-container .content-container strong,
    .page-container .content-container span {
      color: #de4f20;
      display: inline-block; }
    .page-container .content-container strong {
      font-family: "Montserrat", sans-serif; }
  .page-container .row {
    padding: 0px;
    margin: 30px 0px;
    max-width: 100%; }
  .page-container .col-half {
    margin: 0px;
    width: 50%;
    padding-right: 15px; }
    @media (max-width: 678px) {
      .page-container .col-half {
        margin-right: 0px;
        padding-right: 0px; } }
    .page-container .col-half img {
      display: block;
      height: 360px; }
      @media (max-width: 678px) {
        .page-container .col-half img {
          height: auto; } }
    .page-container .col-half .wp-caption-text {
      max-width: 100%; }

#comments {
  margin: 30px 0px; }
  #comments .children {
    margin-left: 30px; }
  #comments .comment-title {
    display: inline-block;
    padding-left: 8px;
    margin-bottom: 30px; }
  #comments .comment-meta {
    margin-bottom: 5px; }
  #comments .comment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #95989a; }
    #comments .comment p {
      margin-bottom: 15px; }
    #comments .comment p:last-child {
      margin-bottom: 5px; }

.crp_title {
  width: 100%;
  height: 100px;
  overflow: hidden; }

.crp_related ul {
  padding-left: 0 !important;
  list-style: none !important;
  font-family: inherit;
  flex-wrap: wrap; }

.crp_related li {
  width: 25% !important; }
  @media (max-width: 992px) {
    .crp_related li {
      width: 50% !important; } }

.faq-category-wrapper,
.faq-category-list-heading {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #95989a;
  padding: 10px 0px;
  cursor: pointer; }
  .faq-category-wrapper .arrow-wrapper,
  .faq-category-list-heading .arrow-wrapper {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-top: 5px; }
    .faq-category-wrapper .arrow-wrapper img,
    .faq-category-list-heading .arrow-wrapper img {
      max-width: 100%;
      max-height: 100%; }
  .faq-category-wrapper .opened,
  .faq-category-list-heading .opened {
    display: none; }
  .faq-category-wrapper.active .opened,
  .faq-category-list-heading.active .opened {
    display: block; }
  .faq-category-wrapper.active .closed,
  .faq-category-list-heading.active .closed {
    display: none; }

.faq-category-list {
  margin: 30px;
  margin-right: 0px;
  list-style: none; }
  .faq-category-list li::before {
    display: none !important; }

.faq-category-list-heading {
  border: none;
  align-items: flex-start;
  cursor: pointer; }
  .faq-category-list-heading h3 {
    margin-bottom: 0px;
    text-transform: uppercase !important; }

.faq-category {
  max-height: 0px;
  overflow: hidden; }

.faq-category-wrapper.active + .faq-category {
  max-height: 5000px; }

.faq-content {
  margin-bottom: 15px;
  margin-left: 50px;
  font-family: "Merriweather", serif;
  color: #504d4d;
  max-height: 0px;
  overflow: hidden; }
  @media (max-width: 560px) {
    .faq-content {
      margin-left: 0px; } }

.faq-category-list-heading.active + .faq-content {
  max-height: 5000px; }

.content-container-wrapper {
  display: flex;
  flex-wrap: wrap; }

.content-container-thin-col {
  width: 15%;
  margin-left: -50px; }
  @media (max-width: 1096px) {
    .content-container-thin-col {
      width: 100%;
      margin-left: 0px;
      margin-bottom: 30px; } }
  .content-container-thin-col .content-container-highlights {
    margin-top: 100px;
    border-top: 1px solid #95989a;
    border-bottom: 1px solid #95989a;
    padding: 15px 0px;
    display: block;
    font-size: 0.9rem; }
    @media (max-width: 1096px) {
      .content-container-thin-col .content-container-highlights {
        border-top: none;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 0px; } }
    @media (max-width: 678px) {
      .content-container-thin-col .content-container-highlights {
        justify-content: flex-start; } }
    .content-container-thin-col .content-container-highlights p,
    .content-container-thin-col .content-container-highlights ul {
      line-height: 1.5rem; }
      @media (max-width: 1200px) {
        .content-container-thin-col .content-container-highlights p,
        .content-container-thin-col .content-container-highlights ul {
          font-size: 0.8rem; } }
    @media (max-width: 992px) {
      .content-container-thin-col .content-container-highlights p {
        margin-bottom: 0px;
        font-family: "Montserrat", sans-serif; } }
    @media (max-width: 678px) {
      .content-container-thin-col .content-container-highlights p {
        font-size: 0.8rem;
        width: 50%; } }
    @media (min-width: 1097px) {
      .content-container-thin-col .content-container-highlights span {
        display: block; } }
    .content-container-thin-col .content-container-highlights span,
    .content-container-thin-col .content-container-highlights a {
      color: #de4f20 !important;
      font-weight: 400; }
    .content-container-thin-col .content-container-highlights a {
      font-weight: 600; }
    .content-container-thin-col .content-container-highlights .highlights-social {
      display: flex;
      margin: 15px 0px; }
      .content-container-thin-col .content-container-highlights .highlights-social a {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-right: 10px; }
        .content-container-thin-col .content-container-highlights .highlights-social a img {
          width: 100%;
          height: 100%; }
        @media (max-width: 992px) {
          .content-container-thin-col .content-container-highlights .highlights-social a {
            margin-bottom: 0px; } }

#respond > form {
  background: #e8e7de;
  padding: 50px; }
  @media (max-width: 560px) {
    #respond > form {
      padding: 20px; } }
  #respond > form .required {
    text-align: center; }
    @media (max-width: 560px) {
      #respond > form .required {
        font-size: 0.8rem; } }
  #respond > form p {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px; }
    #respond > form p.comment-form-comment label, #respond > form p.comment-form-author label, #respond > form p.comment-form-email label, #respond > form p.comment-form-url label {
      display: inline-block;
      width: 100%; }
    #respond > form p.comment-form-comment textarea,
    #respond > form p.comment-form-comment input, #respond > form p.comment-form-author textarea,
    #respond > form p.comment-form-author input, #respond > form p.comment-form-email textarea,
    #respond > form p.comment-form-email input, #respond > form p.comment-form-url textarea,
    #respond > form p.comment-form-url input {
      width: 100%;
      min-height: 50px;
      border: 1px solid #b7b7b7;
      font-family: "Montserrat", sans-serif;
      color: #504d4d;
      font-size: 0.8rem;
      padding: 10px; }
    #respond > form p.form-submit {
      margin-top: 50px;
      display: flex;
      justify-content: center;
      align-items: center; }
      #respond > form p.form-submit input {
        background: #9f182f;
        color: #ffffff;
        border: none;
        margin: 0 auto;
        font-family: "Montserrat", sans-serif;
        font-size: 0.9rem;
        text-transform: uppercase;
        height: 50px;
        width: 65%;
        border-radius: 2px; }
        #respond > form p.form-submit input:hover {
          cursor: pointer; }

.tingle-modal-box {
  position: static !important;
  width: 100%;
  border-radius: 0px;
  background: transparent; }
  @media (max-width: 678px) {
    .tingle-modal-box {
      padding: 0px !important; } }

.rider-modal-data {
  display: none; }

.rider-modal {
  width: 100%;
  margin: 0 auto;
  display: flex;
  color: #ffffff;
  position: relative; }
  .rider-modal img {
    max-width: 100%; }

.rider-modal__previous {
  width: 10%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer; }
  .rider-modal__previous img {
    width: 50px;
    height: 50px; }
  @media (max-width: 678px) {
    .rider-modal__previous {
      margin-right: 15px; } }

.rider-modal-content {
  display: flex;
  flex-wrap: wrap;
  width: 80%; }

.rider-modal-photo {
  width: 200px;
  height: 200px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 30px; }
  @media (max-width: 678px) {
    .rider-modal-photo {
      margin: 15px auto;
      width: 100px;
      height: 100px; } }

.rider-modal-profile {
  width: calc(100% - 235px);
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 30px; }
  @media (max-width: 678px) {
    .rider-modal-profile {
      width: 100%; } }

.rider-modal__name {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #de4f20; }

.rider-modal-details {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 15px 0px;
  margin: 15px 0px;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 678px) {
    .rider-modal-details {
      font-size: 0.8rem; } }
  .rider-modal-details .rider-modal__location,
  .rider-modal-details .rider-modal__nationality,
  .rider-modal-details .rider-modal__social {
    width: 33.3%; }
    @media (max-width: 960px) {
      .rider-modal-details .rider-modal__location,
      .rider-modal-details .rider-modal__nationality,
      .rider-modal-details .rider-modal__social {
        width: 50%; } }
    @media (max-width: 678px) {
      .rider-modal-details .rider-modal__location,
      .rider-modal-details .rider-modal__nationality,
      .rider-modal-details .rider-modal__social {
        width: 100%;
        margin-bottom: 10px; } }
  .rider-modal-details a {
    color: #de4f20; }
  .rider-modal-details .rider-modal__location {
    line-height: 1.5rem; }
  .rider-modal-details .rider-modal__nationality img {
    margin-right: 10px;
    width: 20px; }
  .rider-modal-details .rider-modal__social {
    color: #de4f20; }

.rider-modal__bio {
  font-size: 0.9rem;
  line-height: 1.8rem; }

.rider-modal__next {
  width: 10%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer; }
  .rider-modal__next img {
    width: 50px;
    height: 50px; }
  @media (max-width: 678px) {
    .rider-modal__next {
      margin-left: 15px; } }

.tingle-modal {
  z-index: 10000; }

.tingle-modal__closeIcon {
  font-family: "Montserrat", sans-serif;
  font-weight: normal; }

.rider-modal__next_tour {
  width: 100%;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid white;
  display: flex;
  flex-wrap: wrap; }
  .rider-modal__next_tour .title {
    width: 33.3%; }
    @media (max-width: 678px) {
      .rider-modal__next_tour .title {
        margin-bottom: 10px; } }
  .rider-modal__next_tour .link {
    width: 66.6%; }
  @media (max-width: 678px) {
    .rider-modal__next_tour .title, .rider-modal__next_tour .link {
      width: 100%; } }

.tour-shortcode {
  margin: 50px 0;
  margin-left: -20%;
  width: 120%;
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 1096px) {
    .tour-shortcode {
      margin-left: 0px;
      width: 100%; } }
  .tour-shortcode .tour-shortcode-badge-area {
    border-top: 1px solid #95989a;
    border-bottom: 1px solid #95989a;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media (max-width: 1096px) {
      .tour-shortcode .tour-shortcode-badge-area {
        width: 40%;
        border-bottom: none; } }
    .tour-shortcode .tour-shortcode-badge-area h3 {
      text-align: center;
      margin-top: 15px; }
    .tour-shortcode .tour-shortcode-badge-area .tour-shortcode-badge-wrapper {
      width: 100%;
      text-align: center;
      margin-bottom: 15px; }
      .tour-shortcode .tour-shortcode-badge-area .tour-shortcode-badge-wrapper img {
        width: 70%; }
  .tour-shortcode .tour-shortcode-image-wrapper {
    width: calc(40% - 20px);
    padding: 0px;
    margin-left: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
    @media (max-width: 1096px) {
      .tour-shortcode .tour-shortcode-image-wrapper {
        width: calc(60% - 20px); } }
  .tour-shortcode .tour-shortcode-info-area {
    background-color: #622751;
    width: 40%;
    padding: 30px;
    line-height: 1.8rem; }
    @media (max-width: 1096px) {
      .tour-shortcode .tour-shortcode-info-area {
        width: 100%; } }
    .tour-shortcode .tour-shortcode-info-area h3 {
      text-transform: uppercase;
      margin-bottom: 0px !important; }
    .tour-shortcode .tour-shortcode-info-area h3,
    .tour-shortcode .tour-shortcode-info-area p {
      color: #ffffff; }
    .tour-shortcode .tour-shortcode-info-area p {
      font-family: "Merriweather", serif;
      font-size: 1.2rem; }
    .tour-shortcode .tour-shortcode-info-area small {
      color: #de4f20;
      font-family: "Montserrat", sans-serif;
      font-size: 0.8rem;
      font-weight: bold; }
    .tour-shortcode .tour-shortcode-info-area .tour-shortcode-info-description {
      margin-top: 30px; }

.our-team {
  display: flex; }
  @media only screen and (max-width: 992px) {
    .our-team {
      display: block; } }
  .our-team h2 {
    font-size: 1.8rem;
    color: #9f182f;
    margin-bottom: 10px; }
  .our-team .tour-riders-staff-container {
    width: 80%; }
    @media only screen and (max-width: 992px) {
      .our-team .tour-riders-staff-container {
        width: 100%; } }
  .our-team .tour-riders-staff figure {
    width: calc((100% / 5) - 10px);
    min-width: 190px; }
    @media (max-width: 678px) {
      .our-team .tour-riders-staff figure {
        width: 100%;
        min-width: auto; } }

.tip-container {
  display: none; }

.tip-modal {
  background: none; }

.question.icon {
  cursor: pointer; }

.tip {
  position: relative;
  display: flex;
  max-width: 600px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.8);
  margin: 0 auto; }
  .tip .tip-close {
    position: absolute;
    top: -5px;
    right: 5px;
    font-size: 35px;
    border: none;
    background: none; }
  .tip .tip-icon {
    width: 85px;
    height: 60px;
    flex-shrink: 0;
    display: block;
    align-self: flex-start;
    padding-right: 25px; }
    @media only screen and (max-width: 992px) {
      .tip .tip-icon {
        width: 70px;
        height: 55px;
        padding-right: 15px; } }
  .tip .tip-details {
    color: #c9ccd0; }
    .tip .tip-details h3 {
      font-size: 1.2rem;
      margin-bottom: 0px;
      color: #fffff5; }
    .tip .tip-details p {
      margin-bottom: 5px;
      line-height: 1.2rem;
      color: #fffff5;
      font-size: 0.9rem; }
      .tip .tip-details p:last-child {
        margin-bottom: 0px; }
    .tip .tip-details small {
      font-size: 0.8rem; }
  .tip .tip-currencies span {
    font-size: 1.2rem;
    padding: 5px;
    font-weight: normal;
    cursor: pointer;
    line-height: 2.5rem; }
    .tip .tip-currencies span.active {
      color: #c2531a; }
  .tip .tip-payment-currencies span {
    font-size: 1.2rem;
    padding: 5px;
    font-weight: normal;
    line-height: 2.5rem; }
    .tip .tip-payment-currencies span.active {
      color: #c2531a; }
  .tip .tip-details__level {
    margin-left: 5px;
    color: #c2531a; }
  .tip .dot {
    width: 10px;
    margin-right: 3px; }
  .tip a {
    color: #c2531a; }

#alumni-riders-form {
  border-top: 2px solid #95989a;
  border-bottom: 2px solid #95989a;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 10px);
  padding-top: 15px;
  padding-bottom: 15px; }
  #alumni-riders-form .choices {
    margin-bottom: 0px; }
    @media (max-width: 960px) {
      #alumni-riders-form .choices {
        margin: 7px 0px; } }

.gallery-modal-data {
  display: none; }

.gallery-modal {
  width: 100%;
  margin: 0 auto;
  display: flex;
  color: #ffffff; }

.gallery-modal-image-wrapper {
  width: 80%;
  text-align: center; }

.gallery-modal-image {
  max-width: 100%;
  max-height: 70vh; }

.gallery-modal__previous {
  width: 10%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer; }
  .gallery-modal__previous img {
    width: 50px;
    height: 50px; }
  @media (max-width: 678px) {
    .gallery-modal__previous {
      margin-right: 15px; } }

.gallery-modal__next {
  width: 10%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer; }
  .gallery-modal__next img {
    width: 50px;
    height: 50px; }
  @media (max-width: 678px) {
    .gallery-modal__next {
      margin-left: 15px; } }

.rating-dots {
  display: inline-block; }
  .rating-dots img {
    width: 10px;
    margin-bottom: 2px !important;
    margin-right: 3px !important; }

.tour-rating-far-out {
  padding-left: 45px;
  background-image: url("/wp-content/themes/tda/img/brain-icon.svg");
  background-repeat: no-repeat;
  background-size: 35px; }

.tour-rating-difficulty {
  padding-left: 45px;
  background-image: url("/wp-content/themes/tda/img/difficulty-icon.svg");
  background-repeat: no-repeat;
  background-size: 35px; }

.crp_related h3 {
  text-align: center; }

.crp_related ul {
  display: flex; }

.crp_related li {
  width: 33.33%;
  margin: 0px;
  padding-left: 5px;
  padding-right: 5px; }
  .crp_related li a {
    display: block; }
  .crp_related li img {
    margin: 0px !important; }
  .crp_related li span {
    display: block;
    background-color: #e8e7de;
    padding: 10px;
    transform: translateY(-9px); }

.crp_related li::before {
  display: none !important; }

.download-modal-container {
  display: none; }

.download-modal {
  max-width: 500px;
  margin: 0px auto; }
  .download-modal label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px; }
  .download-modal input {
    font-size: 1.2rem;
    width: 100%;
    padding: 10px; }
  .download-modal button {
    font-size: 1.2rem;
    border: none;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #9f182f; }
  .download-modal .download-response a {
    color: white !important;
    text-decoration: underline; }

.download-form-row {
  margin: 15px 0px; }

.registration-selections {
  display: flex; }
  .registration-selections .tour_link {
    color: #c2531a;
    font-size: 1.2rem; }
  .registration-selections .section_link {
    color: #c2531a; }
  .registration-selections .section_list {
    margin-top: 15px; }
    .registration-selections .section_list li {
      margin-bottom: 15px; }
  .registration-selections span.details {
    color: #504d4d;
    font-size: 0.9rem;
    font-weight: normal; }

.registration-selections-left {
  flex-basis: 15%;
  margin-right: 15px;
  font-size: 1.2rem; }

body.registrations form li.payment_type input {
  margin-top: 20px !important; }

@media screen and (max-width: 1100px) {
  p.sections.hint {
    width: 80%;
    margin: 0 0 15px 14%; } }

@media screen and (max-width: 698px) {
  p.sections.hint {
    width: auto;
    margin: 0 0 15px 0; } }

#fb_share_button {
  display: inline-block;
  height: 28px;
  background-color: #4267b2;
  color: white;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 28px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  padding: 0 10px;
  margin: 10px 0;
  width: 76px; }
  #fb_share_button .fab {
    margin-right: 2px; }

.bulletin_inner {
  max-width: 800px;
  padding: 0.75em 2em;
  margin: 0 auto;
  color: #504d4d;
  background-color: #fffff5; }
  .bulletin_inner h1,
  .bulletin_inner h2,
  .bulletin_inner h3,
  .bulletin_inner h4,
  .bulletin_inner h5 {
    color: #9f182f;
    margin: 15px 0px 10px 0px; }
  .bulletin_inner h5 {
    font-weight: bold; }
  .bulletin_inner p {
    margin: 20px 0px;
    color: #504d4d;
    font-size: 1rem;
    line-height: 1.3rem; }
  .bulletin_inner p.date {
    font-style: italic;
    margin: 0px; }
  .bulletin_inner a {
    color: #9f182f; }
  .bulletin_inner button,
  .bulletin_inner input[type="submit"],
  .bulletin_inner input[type="button"] {
    font-size: 1.2rem;
    border: none;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #9f182f;
    margin-bottom: 15px; }
  .bulletin_inner ul {
    list-style-type: disc;
    margin: 20px 0px;
    margin-left: 17px; }
  .bulletin_inner ol {
    list-style-type: decimal;
    margin: 20px 0px;
    margin-left: 17px; }
  .bulletin_inner li {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 10px; }
  .bulletin_inner span {
    font-weight: normal;
    color: inherit; }
  @media screen and (max-width: 698px) {
    .bulletin_inner img {
      width: 100% !important;
      height: auto !important;
      max-width: 500px !important; } }

.question.icon {
  margin-left: 10px;
  width: 15px !important;
  height: 15px !important;
  cursor: pointer; }

.testimonials {
  background: #e8e7de;
  padding: 30px 0;
  margin: 0 auto;
  font-family: "Merriweather", serif;
  display: flex; }
  @media (max-width: 992px) {
    .testimonials {
      margin-left: 0px;
      margin-right: 0px; } }
  .testimonials .arrow {
    display: flex;
    justify-content: center;
    align-items: center; }
    .testimonials .arrow img {
      display: block;
      width: 50px;
      height: 50px; }
  .testimonials .middle {
    padding-left: 30px !important;
    padding-right: 30px !important; }
    .testimonials .middle .content {
      width: 100%;
      padding: 0 30px;
      display: flex; }
      @media screen and (max-width: 678px) {
        .testimonials .middle .content {
          padding: 0; } }
      .testimonials .middle .content .testimony-wrapper {
        display: flex;
        flex: 1 1;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
        padding: 0 30px; }
        @media (max-width: 992px) {
          .testimonials .middle .content .testimony-wrapper {
            padding: 0 30px 0 0; } }
        @media (max-width: 520px) {
          .testimonials .middle .content .testimony-wrapper {
            padding: 0; } }
      .testimonials .middle .content .testimony {
        width: 100%;
        color: #de4f20;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px; }
        @media (max-width: 520px) {
          .testimonials .middle .content .testimony {
            width: 100%; } }
      .testimonials .middle .content p {
        color: #504d4d;
        line-height: 1.8rem;
        text-align: right;
        padding-right: 30px; }
        @media (max-width: 992px) {
          .testimonials .middle .content p {
            padding-right: 0px; } }
      .testimonials .middle .content a {
        color: #c25520; }
      .testimonials .middle .content .testimony-author-date {
        width: 100%;
        color: #4a4a4a;
        font-size: 0.9rem;
        margin-top: 15px; }
      .testimonials .middle .content .testimony-info {
        margin-top: 50px; }
      .testimonials .middle .content .testimony-giver {
        height: 200px;
        flex: 0 0 200px;
        background-color: grey;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        margin-right: 30px; }
        @media (max-width: 1096px) {
          .testimonials .middle .content .testimony-giver {
            width: 30%; } }
        @media (max-width: 520px) {
          .testimonials .middle .content .testimony-giver {
            display: none; } }
    .testimonials .middle .markers {
      width: 100%;
      display: none;
      justify-content: center;
      align-items: center; }
      .testimonials .middle .markers img {
        width: 12px;
        margin: 5px; }

.testimonials-container {
  position: relative; }
  @media (max-width: 678px) {
    .testimonials-container .tns-controls {
      display: none; } }
  .testimonials-container .tns-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: none;
    border: none; }
  .testimonials-container .tns-controls [data-controls="prev"] {
    left: 10px; }
  .testimonials-container .tns-controls [data-controls="next"] {
    right: 10px; }
  .testimonials-container .tns-controls img {
    width: 25px; }
  .testimonials-container .tns-nav {
    position: absolute;
    z-index: 100;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); }
    .testimonials-container .tns-nav button {
      border-radius: 50%;
      width: 12px;
      height: 12px;
      padding: 0px;
      background: #c9ccd0;
      margin: 0px 10px;
      border: none; }
      .testimonials-container .tns-nav button.tns-nav-active {
        background: white; }

.notices {
  padding: 15px;
  margin-bottom: 15px; }
  .notices.success {
    background-color: #d2efd2; }
  .notices.error {
    background-color: lightpink; }

#seven_epics_tours fieldset.inputs {
  margin-left: 0; }

#seven_epics_tours span.label.km {
  color: #504d4d;
  font-weight: normal;
  margin-left: 5px; }

#seven_epics_tours input.distance {
  width: 100px; }

#seven_epics_tours h4 {
  font-size: 110%;
  margin-bottom: 20px; }

#seven_epics_tours div.fields {
  margin-bottom: 20px; }

#fundraising_trackers div.fields {
  margin-bottom: 40px; }

.tingle-modal__close {
  font-size: 3rem; }

.tingle-enabled {
  overflow-y: scroll !important; }
  .tingle-enabled nav#desktop {
    top: -120px !important; }

.choices__list--single {
  padding: 8px 16px 4px 4px; }

span.caps,
span.pnum {
  color: inherit;
  font-weight: bold; }

th.yes,
th.no {
  padding-right: 15px; }

table.contract_details {
  width: 100%; }
  table.contract_details th {
    font-weight: bold;
    text-align: left; }
  table.contract_details th,
  table.contract_details td {
    padding-top: 5px;
    padding-bottom: 5px; }

.legal_form_content p {
  margin-bottom: 15px;
  margin-top: 15px; }

.legal_form_content ul {
  list-style: circle; }

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