/* Global */

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 100%;
}

body, h1, h2, h3, h4, h5, h6, a, ol, li {
  font-size-adjust: 0.5;
  color: #343030;
}

p {
  font-size: 1.125em;
  /* equivalent to 18px */
  line-height: 1.5;
  /* equivalent to 24px */
}

h1 {
  font-size: 3em;
  /* 3x body copy size = 48px */
  line-height: 1.125;
}

h2 {
  font-size: 2.25em;
  /* 2.25x body copy size = 36px */
  line-height: 1.25;
}

h3 {
  font-size: 1.75em;
  /* 1.75x body copy size = 28px */
  line-height: 1.25;
}

h4 {
  font-size: 1.125em;
  /* 1.125x body copy size = 22px */
  line-height: 1.22;
}

h5 /* Caption */ {
  font-size: 0.9em;
  /* 0.9x body copy size = 14px */
  line-height: 1.16;
}

ol {
  font-size: 18px;
  /* equivalent to 18px */
  line-height: 1.5;
  /* equivalent to 24px */
  font-weight: 700;
}

li {
  font-size: 18px;
  /* equivalent to 18px */
  line-height: 1.5;
  /* equivalent to 24px */
}

.hidden {
  overflow: hidden;
}
.relative {
  position: relative;
}

.margin-top-20 {
  margin-top: 20px;
}

.container-main,
.container-main__no-mobile {
  width: 80%;
  margin: auto;
  overflow: visible;
  min-height: 100%;
  position: relative;
}

header {
  background-color: white;
  border-bottom: 1px solid #B4B4B4;
  position: relative;
  width: 100%;
  padding: 20px 0px;
  z-index: 99999;
}

.flex {
  display: flex;
}

.nav a {
  display: inline-block;
}

.nav img {
  vertical-align: bottom;
  width: 100px;
}

.global-nav-items__container {
  margin: 0 auto;
  text-decoration: none;
  list-style: none;
  padding: 0px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 5px;
}

.global-nav-item {
  margin: 0 auto;
  text-decoration: none;
  color: #343030;
  font-weight: 600;
  font-size: 1.125em;
  display: inline-block;
  margin-left: 30px;
  transition: all 0.25s ease;
}

.global-nav-item:hover {
  color: #22BFB3;
}

.global-nav-items__container button {
  font-size: 1.125em;
}

.menu-overlay {
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

.hamburger-menu-container {
  display: none;
}

.modal__outside-click {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* BLOG PAGE */

.blog__section-container {
  padding: 64px 0px;
}

.blog__page-heading {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 40px;
}

.blog__page-heading h2 {
  text-align: center;
  margin: 0px;
}

.blog__stack-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog__card-container {
  width: calc(50% - 16px);
}

.blog__card-container a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.blog__card-img {
  /* height: 240px; */
  overflow: hidden;
}

.blog__card-img img {
  display: block;
  width: 100%;
  height: auto;
}

.blog__card-content__container {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.blog__card-content__container h4,
.blog__card-content__container p {
  margin: 0px;
}

.blog__card-content__container h4 {
  margin-bottom: 8px;
}

.blog__card-content__container p {
  font-size: 1em;
}



/* BLOG POST PAGE */

.blog-post__section-container {
  padding: 64px 0px;
}

.blog-post__container {
  max-width: 720px;
}

.blog-post__heading {
  margin-bottom: 32px;
}

.blog-post__heading h2, 
.blog-post__heading p {
  margin: 0;
}

.blog-post__heading h2 {
  margin-bottom: 16px;
}

.blog-post__hero-img {
  width: 100%;
  margin-bottom: 48px;
}
.blog-post__hero-img img {
  width: 100%;
  display: block;
}


/* HOME PAGE */

/* Hero Sizing */

.c-hero__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Image */

.hero {
  margin: 0;
  /* background:url('../img/hero-img.jpg') no-repeat;
  background-size: cover;
  background-position: center center; */
  position: relative;
  height: 85%;
  overflow: hidden;
}

.hero__bg-video__container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.hero__bg-video__container iframe,
.hero__bg-video__container img {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.7vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__bg-video__container img {
  z-index: -1;
}

.hero__bg-video__overlay {
  width: 100%;
  height: 100%;
  background-color:rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  z-index: 1;
}

/* Copy & Logo */

.hero .container-main {
  z-index: 12;
}

.c-hero__nav {
  position: absolute;
  margin-top: 50px;
  width: 100%;
}

.hero__nav-items {
  margin: 0 auto;
  text-decoration: none;
  list-style: none;
  padding: 0px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0%, -50%);
}

.hero__nav-item {
  margin: 0 auto;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1.25em;
  display: inline-block;
  margin-left: 30px;
  transition: all 0.25s ease;
}

.hero__nav-item:hover {
  color: #22BFB3;
}

.contact-button-modal {
  display: inline-block;
  margin-left: 30px;
}

.hbspt-form {
  font-family: 'Nunito';
}

.input {
  width: 100%;
}

.hs-input {
  width: 100%;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 36px;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #D8D8D8;
  font-family: 'Nunito';
  font-size: 16px;
  margin-top: 6px;
}

.modal-contact__text {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0px;
}

.hs-richtext h2 {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hs_full_name,
.hs_email,
.hs_message {
  text-align: left;
}

#label-full_name-2b9a8f5e-d282-43df-9e7f-c5d1ed876f42,
#label-email-2b9a8f5e-d282-43df-9e7f-c5d1ed876f42,
#label-message-2b9a8f5e-d282-43df-9e7f-c5d1ed876f42,
#label-full_name-8bf51496-f32d-4b96-a1ac-3a13ab4c92e4,
#label-email-8bf51496-f32d-4b96-a1ac-3a13ab4c92e4 {
  font-weight: 700;
}

.hs-message .hs-error-msgs {
  margin-top: -38px;
  margin-bottom: 22px;
}

ul.hs-error-msgs {
  list-style: none;
  padding: 0px;
  font-size: 12px;
  color: #F26668;
  margin-top: -32px;
  margin-bottom: 16px;
  font-weight: normal;
}

.hs_error_rollup {
  display: none;
}

.modal-contact-content {
  width: 460px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translate(0%, -100%);
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.modal-contact-content.active {
  z-index: 100;
  transform: translate(0%, -50%);
}

.hs-button {
  margin-bottom: 15px;
  padding: 13px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  width: 278px;;
  margin-top: 0px;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: #22BFB3;
  color: white;
  -webkit-appearance: none;
}

.hs-button:hover {
  box-shadow: 0px 2px 8px 2px rgba(34, 191, 179, 0.3);
  -webkit-appearance: none;
}

.submitted-message {
  position: relative;
}

.submitted-message p {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.submitted-message strong {
  font-size: 32px;
}

.hero-text-container {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.container-logo {
  display: inline-block;
  cursor: pointer;
  position: relative;
  top: 3px;
}

.container-logo img {
  height: 76px;
}

.container-text {
  width: 100%;
  overflow: visible;
  text-align: left;
  align-items: center;
}

.hero-heading {
  color: #ffffff;
  font-weight: bold;
  margin: 0;
  margin-bottom: 25px;
}

.hero-text-container h1,
.hero-text-container h3 {
  text-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.hero-sub-heading {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  margin-bottom: 40px;
  max-width: 520px;
}

.explorer-app-icon {
  background: url('../img/explorer-app-icon.png') no-repeat;
}

.creator-app-icon {
  background: url('../img/creator-app-icon.png') no-repeat;
}

.explorer-app-icon, .creator-app-icon {
  display: inherit;
  background-position: center;
  background-size: cover;
  width: 56px;
  height: 56px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 10px;
}

.trav-award-logo {
  height: 50px;
  margin-right: 50px;
}

.trav-award-logo__hero {
  width: 240px;
  position: absolute;
  top: 72px;
  left: 176px;
}

.o-button {
  width: auto;
  border-radius: 32px;
  border: none;
  padding: 11px 22px;
  color: white;
  font-size: 1.25em;
  font-family: 'Nunito', sans-serif;
  transition: all 0.4s ease;
  text-decoration: none;
  outline: none;
}

.o-button:hover {
  cursor: pointer;
}

.o-button__green {
  background-color: #22BFB3;
  font-weight: 600;
}

.o-button__green:hover {
  box-shadow: 0px 2px 8px 2px rgba(34, 191, 179, 0.3);
}

.o-button__purple {
  background-color: #594383;
  font-weight: 600;
}

.o-button__purple:hover {
  box-shadow: 0px 2px 8px 2px rgba(89, 67, 131, 0.3);
}

.o-button__white {
  font-weight: 600;
  background-color: white;
  color: #22BFB3;
  padding-top: 11px;
  padding-bottom: 11px;
}


.o-button__white:hover {
  box-shadow: 0px 3px 8px 2px rgba(0, 0, 0, 0.1);
}

.o-button a {
  text-decoration: none;
  color: white;
}

.ios-app-store-badge {
  margin-top: 6px;
  width: 132px;
}

/* Modal - 1 */

.o-modal {
  width: 0;
  height: 0;
  position: fixed;
  z-index: 100000;
  top: 0px;
  background: rgba(52, 48, 48, 0.7);
  transition: height 0s 0.4s ease, width 0s 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  overflow: scroll;
}

.o-modal.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: all;
}

.thank-you-message {
  height: 100%;
  display: none;
}

.o-modal.thank-you-message-shown .modal-form {
  display: none;
}

.o-modal.thank-you-message-shown .thank-you-message {
  display: block;
}

.thank-you-message-content {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}

.thank-you-tick {
  margin: auto;
  display: block;
}

.thank-you-heading {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.thank-you-copy {
  text-align: center;
}

.modal-form-error {
  visibility: hidden;
  font-size: 12px;
  text-align: left;
  width: 90%;
  margin: 0px auto 10px auto;
  color: #F26668;
}

.modal-form-error.active {
  visibility: visible;
}

.modal-form-error-name.active {
  visibility: visible;
}

.modal-creator-content {
  width: 400px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translate(0%, -100%);
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.modal-creator-content.active {
  z-index: 100;
  transform: translate(0%, -50%);
}

.modal-creator-content h3 {
  max-width: 320px;
  margin: 0 auto;
  margin-top: 10px;
}

#hsForm_8bf51496-f32d-4b96-a1ac-3a13ab4c92e4 .hs-richtext {
  margin-bottom: 30px;
}

.modal-2-content {
  width: 420px;
  height: 328px;
  margin: auto;
  position: absolute;
  top: 0px; bottom: 0px;
  right: 0px; left: 0px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
}

.icon-centered {
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 25px;
}

.modal-separation-line {
  margin: 0 auto;
  width: 90%;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 25px;
}

#modal-close-explorer, #modal-close-creator,
#modal-close-thank-you-creator,
#modal-close-thank-you-explorer {
  text-decoration: none;
  font-size: 28px;
  color: #979797;
  position: absolute;
  right: 30px;
  top: 18px;
  transition: all 0.2s ease;
  z-index: 100;
}

#modal-close-contact {
  text-decoration: none;
  font-size: 28px;
  color: #979797;
  position: absolute;
  right: 30px;
  top: 18px;
  transition: all 0.2s ease;
  z-index: 100;
}

#modal-close-explorer:hover, #modal-close-creator:hover, #modal-close-contact:hover,
#modal-close-thank-you-creator:hover,
#modal-close-thank-you-explorer:hover {
  cursor: pointer;
  color: #343030;
}

.modal-heading {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0px;
}

.modal-text {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}

.modal-text-small {
  font-size: 0.8em;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
  color: #B4B4B4;
  margin-top: 0px;
}

.ios-app-store-form {
  text-align: center;
}

.ios-app-store-link {
  display: inline-block;
}

img.modal-creator-image {
  margin: 0px auto 30px auto;
  display: block;
}

ul.modal-text {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

ul.modal-text li {
  padding-right: 20px;
}

form {
  text-align: center;
}

input.form-field {
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid black;
  padding: 10px;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  outline: none;
  width: 90%;
  box-sizing: border-box;
  height: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1em;
  color: #343030;
  -webkit-appearance: none;
  border-radius: 0px;
}

input.form-field::placeholder {
  color: #D8D8D8;
  font-size: 1em;
  -webkit-appearance: none;
}

input.form-button {
  margin-bottom: 15px;
  padding: 15px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  width: 90%;
  margin-top: 10px;
  transition: all 0.2s ease;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  background-color: #22BFB3;
  color: white;
  -webkit-appearance: none;
}

input.form-button:hover {
  box-shadow: 0px 2px 8px 2px rgba(34, 191, 179, 0.3);
  -webkit-appearance: none;
}

/* Section One */

.section-one__container {
  background: linear-gradient(rgba(255,255,255,1), rgba(247,246,249,1));
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.section-one__lines-left {
  position: absolute;
  top: -50px;
  left: -67px;
  width: 160px;
}

.section-one__lines-left img {
  width: 100%;
}

.section-content__container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.section-phone__container {
  width: 22%;
  max-width: 230px;
  margin-right: 8.166666666%;
  position: relative;
}

.section-laptop__container {
  max-width: 40%;
  position: relative;
}

.section-phone__container video {
  width: 87%;
  position: absolute;
  border-radius: 22px;
  top: 49.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #D8D8D8;
  object-fit: fill;
  overflow: hidden;
}

.section-video {
  width: 87%;
  height: 92%;
  position: absolute;
  border-radius: 22px;
  top: 49.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #D8D8D8;
  object-fit: fill;
  overflow: hidden;
}

.section-laptop-video {
  width: 79%;
  height: 85%;
  position: absolute;
  border-radius: 2%;
  top: 45.5%;
  left: 50.2%;
  transform: translate(-50%, -50%);
  object-fit: fill;
  overflow: hidden;
}

.section-video iframe {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

iframe .player.player-tiny .vp-controls {
  display: none !important;
}

.section-phone__container img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0px 2px 12px 2px rgba(0, 0, 0, 0.2);
}

.section-laptop__container img {
  width: 100%;
  border-radius: 32px;
}

.section-text__container {
  width: auto;
  max-width: 568px;
}

.section-text__container_horizontal {
  display: flex;
  max-width: 1060px;
  padding: 30px;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.partners__container {
  height: 15%;
}

.partners__container__tablet {
  display: none;
}

.partners__logos__container {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}


.partners__logos__container h5 {
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 16px;
  text-align: center;
}

.funded-innovate-uk {
  display: flex;
  margin: auto;
  max-width: 100%;
}

.partner-logos {
  width: 100%;
}

.partner-logos-tab {
  display: none;
}

.partner-logos-mob {
  display: none;
}

/* Section Two */

.section-two__container {
  background: linear-gradient(rgba(255,255,255,1), rgba(247,246,249,1));
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-two__lines-right {
  position: absolute;
  top: -108px;
  right: 0px;
  width: 100px;
}

.section-two__lines-left {
  position: absolute;
  bottom: -120px;
  left: 0px;
  z-index: 1;
  width: 130px;
}

.section-two__lines-left img,
.section-two__lines-right img {
  width: 100%;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse .section-text__container {
  margin-right: 8.166666666%;
}

.reverse .section-phones__container {
  margin-right: 0;
}

h2.section-heading {
  margin-top: 0px;
}

p.intro-copy {
  margin-bottom: 30px;
}

.section-two-feature__text {
  max-width: 406px;
}

.section-phones__container {
  width: 33.5%;
  max-width: 370px;
  margin-right: 8.166666666%;
}

.section-phones__container img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
}

.section-two-feature__icon {
  width: 41px;
  height: auto;
  margin-right: 25px;
}

.section-two-feature__container {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

/* Section Three */

.section-three__container {
  height: 650px;
  background: linear-gradient(rgba(255,255,255,1), rgba(247,246,249,1));
  position: relative;
  overflow: hidden;
}

.section-three__lines-right {
  position: absolute;
  bottom: -105px;
  right: 0px;
  width: 130px;
}

.section-three__lines-right img {
  width: 100%;
}

.section-content-centered__container {
  width: 100%;
}

.section-content-centered__container .section-text__container {
  text-align: center;
  max-width: none;
}

.section-tour-examples__container {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  overflow: visible;
  margin-top: 40px;
}

.section-tour-example-text__container {
  position: absolute;
  bottom: 0px;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 2;
}

.section-tour-example__title {
  color: white;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-tour-example__categories {
  color: white;
  font-size: 14px;
  line-height: 1.3em;
  margin-top: 0px;
  margin-bottom: 0px;
}

.section-tour-example-reviews__container {
  display: flex;
  margin-bottom: 15px;
}

.section-tour-example__review-stars {
  width: fit-content;
  min-width: 74px;
  max-width: 87px;
  max-height: 18px;
}

.section-tour-example_review-text {
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  margin-left: 10px;
  position: relative;
  top: 1px;
}

.section-tour-example__gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.75));
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.section-content__button-centered {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Section - CTA */

.section-cta__container {
  padding: 30px;
  background: linear-gradient(rgba(89,67,131,1), rgba(126,83,158,1));
  position: relative;
  overflow: hidden;
}

.purple-text {
  color: #594383;
}

.white-text {
  color: white;
}

.no-margin {
  margin: 0px;
}

/* Section - Award */

.section-award__container {
  background: linear-gradient(rgba(25,163,176,1), rgba(34,191,179,1));
  position: relative;
  overflow: hidden;
}

.section-award__container h3 {
  font-weight: 400;
  margin-top: 0px;
}

/* Footer */

.footer, .footer__tour {
  padding: 30px 20px;
  text-align: left;
  font-size: 12px;
  background-color: #F8F8F8;
  display: flex;
}

.footer-content__container {
  display: flex;
  flex-direction: row;
}

.footer__logo {
  flex: 1;
}

.footer__left-content {
  flex: 4;
}

.footer-left-content__links {
  padding-top: 14px;
  margin-bottom: 21px;

}

.footer-left-content__links a {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.footer-left-content__links a:hover {
  color: #594383;
}

.footer-left-content__address {
  font-size: 14px;
}

.footer-left-content__address p {
  margin-bottom: 0px;
}

.footer__right-content {
  flex: 4;
  text-align: right;
}

.footer-right-content__social-accounts{
  margin-bottom: 15px;
}

.footer-right-content__store-badges {
  display: flex;
  justify-content: flex-end;
}

.footer-right-content__store-badges a {
  display: inline-block;
}

.footer-right-content__store-badges a:nth-child(2) {
  margin-left: 8px;
}

.footer-right-content__ios-badge {
  width: 135px;
}

.footer-faq {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

a.fb {
  background: url('../img/fb.png') no-repeat;
  background-position: center;
  background-size: contain;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  transition: content 0.2s ease;
  display: inline-block;
}

a.fb:hover {
  background: url('../img/fb-hover.png') no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

a.tw {
  background: url('../img/tw.png') no-repeat;
  background-position: center;
  background-size: contain;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  transition: content 0.2s ease;
  display: inline-block;
}

a.tw:hover {
  background: url('../img/tw-hover.png') no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

a.inst {
  background: url('../img/in.png') no-repeat;
  background-position: center;
  background-size: contain;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  transition: content 0.2s ease;
  display: inline-block;
}

a.inst:hover {
  background: url('../img/in-hover.png') no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

a.li {
  background: url('../img/li.png') no-repeat;
  background-position: center;
  background-size: contain;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  transition: content 0.2s ease;
  display: inline-block;
}

a.li:hover {
  background: url('../img/li-hover.png') no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

/* EXPLORE THE TOURS PAGE */

.explore-hero__typed-container {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

.explore-hero__title {
  padding-bottom: 60px;
  border-bottom: 1px solid #D8D8D8;
}

.explore-hero__heading {
  padding: 10px 0px;
}

.explore-hero__typed-element {
  margin-left: 15px;
  background-color: #22BfB3;
  padding: 10px 16px 8px 16px;
  border-radius: 8px;
  color: white;
}

.typed-cursor {
  display: none;
}

.explore__lines-left {
  position: absolute;
  top: -350px;
  right: 0px;
  z-index: 1;
  width: 150px;
  transform: scaleX(-1);
}

.explore__lines-right {
  position: absolute;
  bottom: -105px;
  right: 0px;
  width: 130px;
}

.explore__lines-left img,
.explore__lines-right img {
  width: 100%;
}

.explore__hero-container {
  padding: 80px 0px 0px 0px;
  text-align: center;
}

.explore-hero__sub-heading {
  width: 568px;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

.explore__all-tours-container {
  height: auto;
  position: relative;
  overflow: visible;
}

.explore__tours-outer-container {
  box-sizing: border-box;
  margin-left: -8px;
  margin-right: -8px;
}

.explore__tours-inner-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  overflow: visible;
}

.explore__single-tour-outer-container {
  width: 25%;
  position: relative;
  margin-bottom: 16px;
}

.explore__single-tour-padding-container {
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
}

.explore__single-tour-inner-container {
  border-radius: 8px;
  width: 100%;
  height: 0;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.explore__single-tour-outer-container:hover .explore__single-tour-inner-container {
  box-shadow: 0px 4px 12px 1px rgba(0, 0, 0, 0.3);
}

.section-tour-example__img {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 50%;
  transform: translate(0%, -50%);
}

.explore__create-cta__container {
  padding: 50px 0px;
  text-align: center;
  background: linear-gradient(rgba(89,67,131,1), rgba(126,83,158,1));
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 60px;
}

.text-container {
  max-width: 568px;
}

.explore__create-cta__container .text-container {
  margin: 0 auto;
}

.text-container h2,
.text-container h3 {
  margin-top: 0px;
  margin-bottom: 20px;
}

.text-container p {
  margin-top: 0px;
  margin-bottom: 30px;
}

.explore__download-cta__container {
  text-align: left;
  background: linear-gradient(rgba(25,163,176,1), rgba(34,191,179,1));
  height: 400px;
  overflow: hidden;
}

.explore__download-cta-content__contaner {
  display: flex;
  align-items: center;
}

.explore__download-cta-content__contaner p {
  max-width: 490px;
}

.explore__download-cta__container .text-container {
  width: 50%;
  margin-right: 5%;
}

.explore__phones-container {
  width: 37%;
  max-width: 360px;
  height: 400px;
  position: relative;
}

.explore__phones-container img {
  width: 100%;
  position: absolute;
  bottom: 0px;
  -webkit-filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.2));
}

.overflow-hidden {
  overflow: hidden;
}

.extra-padding-btm__40 {
  padding-bottom: 40px;
}

/* PRIVACY POLICY PAGE */

.page-title {
  font-weight: bold;
  margin-bottom: 20px;
  color: #343030;
}

.page-sub-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.page-paragraph {
  font-weight: 100;
}

/* FAQ - Selection */

.help-center__section {
  height: 100vh;
  position: relative;
}

.help-center__content-container {
  margin: 0 auto;
  height: calc(100% - 110px);
  margin-top: 0px;
  text-align: center;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}

.help-center__text-container {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}

.help-center__content-container h1 {
  margin-top: 0px;
}

.help-center__intro-text {
  font-size: 20px;
  max-width: 768px;
  text-align: center;
  margin: 0 auto;
}

.help-center__app-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 50px 0px 0px 0px;
}

.help-center__creator-button,
.help-center__explorer-button {
  width: 278px;
  padding: 30px 0px;
  display: block;
  text-decoration: none;
  color: #343030;
  font-weight: 600;
  border-radius: 12px;
  margin: 0px 10px;
  transition: all 0.2s ease;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.help-center__creator-button img,
.help-center__explorer-button img {
  width: 40px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.help-center__creator-button p,
.help-center__explorer-button p {
  font-size: 18px;
  margin: 0px;
}

.help-center__creator-button:hover .help-center__creator-button img {
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.help-center__creator-button:hover,
 .help-center__explorer-button:hover {
  box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.2);
}

p.help-center__or {
  font-size: 20px;
  font-weight: 700;
}

.help-center__email-button {
  width: 278px;
  padding: 15px 0px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.help-center__email-button img {
  width: 30px;
  margin-right: 20px;
}

.help-center__email-button p {
  text-decoration: none;
  text-align: left;
}

/* FAQ - Main */

.faq-content-container {
  margin-top: 0px;
}

.container-accordion {
  float: left;
  width: 66%;
}

.faq-page-title {
  margin-top: 50px;
  margin-bottom: 0px;
  width: 400px;
  display: inline-block;
}

button.faq-expand-all {
  border: 2px solid #22BFB3;
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 1em;
  display: block;
  margin-top: 16px;
  height: 40px;
  color: #343030;
  transition: color 0.2s ease;
  background-color: #fff;
}

#js-toggle-all::after {
  content: url('../img/plus-icon-singular.svg');
  float: right;
  margin-left: 10px;
  position: relative;
  top: 1px;
}

#js-toggle-all.expanded::after{
  content: url('../img/minus-icon-singular.svg');
  float: right;
  margin-left: 10px;
  top: 1px;
}

button.faq-expand-all:hover {
  cursor: pointer;
  color: #22BFB3;
}

.accordion-title {
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 30px;
  color: #343030;
  border-bottom: 1px solid black;
  padding-bottom: 20px;
}


.accordion-question {
  display: flex;
  width: 100%;
  background-color: white;
  font-weight: 600;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}

.accordion-question:active {
  color: #343030;
}

p.accordion-question__q {
  margin: 0px;
  margin-right: 12px;
}

p.accordion-question__single-question {
  margin: 0px;
  padding-right: 15px;
}

.accordion-question__plus-btn {
  content: url('../img/plus-button.svg');
  margin-left: auto;
  position: relative;
  top: 2px;
}

button.accordion-question.is-open .accordion-question__plus-btn {
  content: url('../img/minus-button.svg');
  margin-left: auto;
  position: relative;
  top: 2px;
}

.accordion-answer {
  font-family: 'Nunito', sans-serif;
  font-weight: 100;
  padding-left: 28px;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 25px;
  transition: max-height 0.2s ease-in-out;
  margin-top: 25px;
  padding-right: 30px;
}

.accordion-answer ol {
  margin-bottom: 25px;
}

.accordion-answer ul {
  margin-bottom: 25px;
}

.accordion-answer p {
  margin-top: 0px;
  margin-bottom: 25px;
}

.container-about {
  float: right;
  width: 25%;
}

.faq-about {
  margin-top: 65px;
  margin-bottom: 10px;
}

/* Tour Pages */

/* Tour Page Hero */

.c-hero--tour {
  margin: 0;
  position: relative;
  height: 430px;
}

.c-hero-tour--share {
  position: absolute;
  width: 100%;
  z-index: 100;
  margin-top: 30px;
}

.c-hero-tour--share-btn {
  background: white;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  border-radius: 30px;
  color: #594383;
  float: right;
  cursor: pointer;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
}

.c-hero-tour--share-btn::before {
  content: url('../img/share-icon.svg');
  margin-right: 12px;
  position: relative;
  top: 3px;
}

.modal-share-tour {
  width: 400px;
  height: auto;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translate(0%, -100%);
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
  z-index: 100000;
  transition: all 0.4s ease;
}

.modal-share-tour.active {
  z-index: 100;
  transform: translate(0%, -50%);
}

#modal-close-share-tour {
  right: 20px;
  top: 8px;
  text-decoration: none;
  font-size: 28px;
  color: #979797;
  position: absolute;
  right: 30px;
  top: 18px;
  transition: all 0.2s ease;
}

#modal-close-share-tour:hover {
  cursor: pointer;
  color: #343030;
}

.modal-share-tour--top-text {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D8D8D8;
}

.modal-share-tour--link-container {
  border-bottom: 1px solid #D8D8D8;
  padding-top: 25px;
  padding-bottom: 17px;
}

.modal-share-tour--link {
  text-decoration: none;
}

.modal-share-tour--link-icon {
  display: inline-block;
  width: 29px;
  height: 28px;
  transition: all 0.3s ease;
}

.modal-share-tour--link-text,
.modal-share-tour--clipboard-text {
  display: inline;
  margin: 0 auto;
  position: relative;
  bottom: 8px;
  margin-left: 12px;
  font-family: 'Nunito';
  font-size: 18px;
  font-weight: 700;
  color: #343030;
  transition: all 0.3s ease;
  text-decoration: none;
}

.modal-share-tour--link-text--container {
  display: inline;
  margin: 0 auto;
  position: relative;
}

.modal-share-tour--link-button {
  border: none;
  padding: 0px;
  cursor: pointer;
  display: inline;
  margin: 0 auto;
  position: relative;
  bottom: 8px;
  margin-left: 12px;
  font-family: 'Nunito';
  font-size: 18px;
  font-weight: 700;
  color: #343030;
  transition: all 0.3s ease;
}

.modal-share-tour--link-button.active {
  border: none;
  padding: 0px;
  cursor: pointer;
  display: inline;
  margin: 0 auto;
  position: relative;
  bottom: 8px;
  margin-left: 12px;
  font-family: 'Nunito';
  font-size: 18px;
  font-weight: 700;
  color: #22BFB3;
}

.modal-share-tour--chevron {
  background: url('../img/chevron-black.svg') no-repeat;
  float: right;
  position: relative;
  top: 5px;
  width: 8px;
  height: 15px;
  transition: all 0.3s ease;
}

/* Popup CTA */

.popup-cta__container {
  display: none;
}


/* Facebook */

.share-fb .modal-share-tour--link-icon {
  background: url('../img/fb-share-icn-hover.svg') no-repeat;
}

.share-fb:hover .modal-share-tour--link-text {
  color: #3C5A99;
}

.share-fb:hover > .share-fb-icon {
  background: url('../img/fb-share-icn-hover.svg') no-repeat;
}

.share-fb:hover > .share-fb-chevron {
  background: url('../img/chevron-fb.svg') no-repeat;
}


/* Twitter */

.share-tw .modal-share-tour--link-icon {
  background: url('../img/tw-share-icn-hover.svg') no-repeat;
}

.share-tw:hover .modal-share-tour--link-text {
  color: #00ACED;
}

.share-tw:hover > .modal-share-tour--link-icon {
  background: url('../img/tw-share-icn-hover.svg') no-repeat;
}

.share-tw:hover > .modal-share-tour--chevron {
  background: url('../img/chevron-tw.svg') no-repeat;
}


/* Email */

.share-em .modal-share-tour--link-icon {
  background: url('../img/em-share-icon-hover.svg') no-repeat;
}

.share-em:hover .modal-share-tour--link-text {
  color: #F26668;
}

.share-em:hover > .modal-share-tour--link-icon {
  background: url('../img/em-share-icon-hover.svg') no-repeat;
}

.share-em:hover > .modal-share-tour--chevron {
  background: url('../img/chevron-em.svg') no-repeat;
}


/* Copy Link */

.share-cl .modal-share-tour--link-icon {
  background: url('../img/cl-share-icon-hover.svg') no-repeat;
}

.share-cl:hover .modal-share-tour--link-button {
  color: #22BFB3;
}

.share-cl:hover > .modal-share-tour--link-icon {
  background: url('../img/cl-share-icon-hover.svg') no-repeat;
}

.share-cl:hover > .modal-share-tour--chevron {
  background: url('../img/chevron-cl.svg') no-repeat;
}


.c-hero-tour--image {
  margin: 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 430px;
  z-index: -999;
}

.c-hero-tour--overlay-solid {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
}

.c-hero-tour--overlay-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.25));
  z-index: 1;
}

.c-hero-tour--details {
  display: flex;
}

.c-hero-tour--text {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 100px;
}

.c-hero-tour--heading {
  max-width: 588px;
  color: white;
  margin-top: 0px;
  margin-bottom: 20px;
}

.c-hero-tour--reviews {
  margin-right: 30px;
}

.c-hero-tour--review-stars {
  display: inline-block;
}

.c-hero-tour--review-stars .usr {
  position: relative;
  bottom: 2px;
}

.c-hero-tour--review-count {
  display: inline-block;
  color: white;
  margin: 0px;
  position: relative;
  margin-left: 8px;
  bottom: 2px;
}

.c-hero-tour--time-icon {
  position: relative;
  bottom: 1px;
}

.c-hero-tour--time {
  margin-right: 30px;
}

.c-hero-tour--time-count {
  display: inline-block;
  color: white;
  margin: 0px;
  position: relative;
  margin-left: 8px;
  bottom: 3px;
}

.c-hero-tour--distance-icon {
  position: relative;
  bottom: 2px;
}

.c-hero-tour--distance-count {
  display: inline-block;
  color: white;
  margin: 0px;
  position: relative;
  margin-left: 8px;
  bottom: 5px;
}

.c-hero-tour--creator-details {
  width: 100%;
  position: absolute;
  z-index: 10;
  bottom: -25px;
}

.c-hero-tour--creator-image {
  margin: 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  height: 98px;
  width: 98px;
  border: 3px solid white;
  border-radius: 500px;
  display: inline-block;
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.5);
}

.c-hero-tour--creator-name {
  display: inline-block;
  color: white;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  margin-left: 20px;
  font-size: 22px;
}

/* Tour Page Content */

.tour__content-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.tour__content-left {
  width: 55%;
  max-width: 686px;
}

.tour__content-right {
  width: 370px;
  margin-left: 30px;
}

.c-content-tour--description {
  width: 100%;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 30px;
  display: inline-block;
}

p.c-content-tour--description {
  margin-top: 0px;
}

.c-content-tour--right-container {
  width: 330px;
  padding: 20px;
  background-color: white;
  border-radius: 22px;
  border: 1px solid #D8D8D8;
  overflow: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  /* box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3); */
}

#tour-page-sticky-cta.fixed {
  position: fixed;
  width: 330px;
  top: 50px;
  padding: 20px;
  background-color: white;
  border-radius: 22px;
  border: 1px solid #D8D8D8;
  overflow: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#tour__sticky-content__info {
  text-align: center;
  pointer-events: none;
  max-height: 0;
  margin: 0;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#tour__sticky-content__info.active {
  pointer-events: auto;
  max-height: 1000px;
  margin-bottom: 20px;
  opacity: 1;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 15px;
}

h3#tour__sticky-content__name {
  margin: 0 auto;
  max-width: 290px;
}

.tour__sticky-content__reviews {
  margin-top: 10px;
}

.tour__sticky-content__review-stars {
  display: inline-block;
}

.tour__sticky-content__review-stars .usr {
  height: 17px !important;
}

.tour__sticky-content__review-count {
  display: inline-block;
  color: #343030;
  position: relative;
  margin-left: 8px;
  bottom: 1px;
}

.o-button--preview {
  width: 100%;
  padding: 14px;
  border: 0;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.3);
  font-family: "Nunito";
  font-weight: bold;
  font-size: 18px;
  color: #343030;
  cursor: pointer;
  border-radius: 100px;
  margin-bottom: 15px;
}

.o-button--preview::before {
  content: url('../img/headphone-icn.svg');
  margin-right: 12px;
}

.o-button--listen {
  width: 100%;
  padding: 14px;
  border: 0;
  box-shadow: 0 3px 8px 0 rgba(34, 191, 179, 0.4);
  font-family: "Nunito";
  font-weight: bold;
  font-size: 18px;
  color: white;
  cursor: pointer;
  border-radius: 100px;
  background-color: #22BFB3;
}

.o-button--listen::before {
  content: url('../img/play-icon.svg');
  margin-right: 12px;
  position: relative;
  top: 1px;
}

.app-store-lockup {
  display: flex;
  overflow: hidden;
}

.o-link--app-store--lockup {
  margin: 0 auto;
  display: inline-block;
  width: 50%;
}

.o-link--app-store--lockup:nth-child(1) {
  margin-right: 4px;
}

.o-link--app-store--lockup:nth-child(2) {
  margin-left: 4px;
}

.o-link--app-store--lockup img {
  width: 100%;
}

.c-content-tour--key-details {
  display: flex;
  margin-top: 30px;
  width: 100%;
}

.c-content-tour--stops {
  margin-right: 30px;
}

.c-content-tour--stop-icon {
  position: relative;
  bottom: 1px;
}

.c-content-tour--stop-count {
  display: inline-block;
  position: relative;
  margin: 0px;
  margin-left: 6px;
  bottom: 5px;
}

.c-content-tour--time {
  margin-right: 30px;
}

.c-content-tour--time-icon {
  position: relative;
  bottom: 1px;
}

.c-content-tour--time-count {
  display: inline-block;
  position: relative;
  margin: 0px;
  margin-left: 6px;
  bottom: 5px;
}

.c-content-tour--distance-icon {
  position: relative;
  bottom: 2px;
}

.c-content-tour--distance-count {
  display: inline-block;
  position: relative;
  margin: 0px;
  margin-left: 6px;
  bottom: 6px;
}

.c-content-tour--tags-container {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  width: 100%;
}

.c-content-tour--tags-icon {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.c-content-tour--tags-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.c-content-tour--tag {
  display: inline-block;
  position: relative;
  margin: 0px;
  /* font-size: 16px; */
  color: white;
  background-color: #F26668;
  padding: 5px 10px;
  border-radius: 100px;
  margin-right: 6px;
  margin-bottom: 6px;
  white-space: nowrap;
}

.c-content-tour--map-container {
  margin-top: 30px;
  overflow: hidden;
  height: 585px;
  width: 100%;
  position: relative;
}

.c-content-tour--map-white-gradient-overlay {
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1) 75%);
  z-index: 1;
}

.c-content-tour--info {
  height: auto;
  margin-bottom: 60px;
}

.c-content-tour--map-visual {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 585px;
  border-radius: 10px;
}

.c-stop-slider--container {
  position: relative;
  display: inline-block;
  bottom: 235px;
  left: 0px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 15px;
  z-index: 2;
  transition: all 0.7s ease;
}

.relative-container {
  position: relative;
}

.c-stop-slider--arrows-container {
  height: 40px;
  position: absolute;
  width: 100%;
  bottom: 120px;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: 0;
  transition: all 0.3s ease;
  background-color: white;
}

.slick-prev {
  left: -12px;
  opacity: 0;
  pointer-events: none;
  background: url('../img/slick-prev-btn.svg') no-repeat;
}

.slick-prev.active {
  opacity: 100;
  pointer-events: all;
}

.slick-next {
  right: 14px;
  background: url('../img/slick-next-btn.svg') no-repeat;
}

.slick-next.hidden {
  opacity: 0;
  pointer-events: none;
}

.c-stop-slider--stop {
  width: 310px;
  height: 190px;
  box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 8px;
  background-color: white;
  margin-right: 15px;
  outline: 0;
}

.c-stop-slider--stop-image-container {
  position: relative;
  overflow: hidden;
  height: 115px;
  border-radius: 8px 8px 0px 0px;
}

.c-stop-slider--stop-image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.c-stop-slider--stop-summary {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  top: 8px;
  font-size: 14px;
  overflow: hidden;
}

.c-stop-slider--stop-details {
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 99;
}

.c-stop-slider--stop-number,
.c-stop-slider--stop-name {
  display: inline-block;
  color: white;
  font-weight: 600;
}

.c-stop-slider--stop-number--container {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

.c-stop-slider--stop-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875em;
}

.c-stop-slider--stop-name {
  position: relative;
  font-size: 18px;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.c-stop-slider--stop-number-circle {
  display: inline-block;
  border: 2px solid white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.c-stop-slider--stop-name {
  font-size: 18px;
}

/* Tour Reviews */

.c-content-tour--reviews-container {
  width: 100%;
  display: inline-block;
}

.c-content-tour--reviews-heading--container {
  border-top: 1px solid #D8D8D8;
  padding-top: 30px;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 25px;
}

.c-content-tour--reviews-heading {
  margin-top: 0px;
  margin-bottom: 5px;
}

.c-content-tour--review-count {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-left: 4px;
  bottom: 2px;
}

.c-tour--user-reviews {
  list-style-type: none;
  padding-left: 0px;
  margin: 30px 0px;
}

.c-single-user-review--info {
  height: 60px;
  position: relative;
  margin-bottom: 20px;
}

.c-single-user-review--reviewer-profile-image {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 10px;
}

.c-single-user-review--reviewer-profile-image--default {
  display: inline-block;
  position: relative;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 10px;
}

.c-single-user-review--reviewer-initials--default {
  font-family: "Nunito";
  font-size: 28px;
  font-weight: 400;
  color: white;
  height: 35px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-single-user-review--details {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.c-single-user-review--reviewer-name {
  font-weight: Bold;
  font-size: 18px;
}

.c-single-user-review--review-date {
  font-size: 14px;
  color: #979797;
}

.c-single-user-review--review-stars {
  width: 90px;
  margin-bottom: 10px;
}

.c-single-user-review--review{
  margin: 0px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 30px;
}

.c-tour--reviews-pagination--container.hidden {
  display: none;
}

.c-tour--reviews-pagination--container ul {
  border: 0px;
  padding: 0px;
  display: table;
}

.review-pagination--active {
  background-color: #22BFB3 !important;
  color: white !important;
  border-radius: 50px !important;
}

.c-tour--reviews-pagination--container li {
  list-style: none;
  float: left;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  background-color: white;
  color: #343030;
  margin-right: 10px;
  line-height: 40px;
}

.c-tour--reviews-pagination--container li:hover {
  background-color: #22BFB3;
  color: white;
  border-radius: 50px;
}

/* Copyright Credits */

.c-content-tour--copyright-credits {
  margin-bottom: 60px;
}

.c-content-tour--copyright-credits-container {
  width: 100%;
}

.c-content-tour-credits {
  font-size: 14px;
  font-weight: normal;
}

/* Media Queries */

@media(max-width: 1158px) {

  .container-main,
  .container-main__no-mobile {
    width: 90%;
  }

  .container-intro {
    margin: 60px auto;
    width: 80%;
  }

  .trav-award-logo__hero {
    width: 230px;
  }

  .section-container {
    display: block;
  }

  .explorer-app-icon, .creator-app-icon {
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .explore__single-tour-outer-container {
    width: 33.33%;
  }

}

@media(max-width: 824px) {

  h1 {
    font-size: 2.5em;
    /* 2.5x body copy size = 40px */
    line-height: 1.125;
  }

  h2 {
    font-size: 2em;
    /* 2x body copy size = 32px */
    line-height: 1.25;
  }

  h3 {
    font-size: 1.5em;
    /* 1.5x body copy size = 24px */
    line-height: 1.25;
  }

  .container-main,
  .container-main__no-mobile {
    width: 94%;
  }

  .hero-sub-heading {
    max-width: 90%;
    margin-bottom: 30px;
    max-width: 410px;
  }

  .trav-award-logo__hero {
    display: none;
  }

  .section-header {
    max-width: 420px;
  }

  .section-tour-examples__container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .container-accordion {
    width: 100%;
  }

  .container-about {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  h5 {
    margin-top: 0px;
  }

  .tour__content-left {
    width: 100%;
    max-width: none;
  }

  .tour__content-right {
    display: none;
  }

  .c-content-tour--description,
  .c-content-tour--key-details,
  .c-content-tour--tags-container,
  .c-content-tour--map-container,
  .c-content-tour--reviews-container,
  .c-content-tour--copyright-credits-container {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .c-content-tour--tags-container {
    display: flex;
    align-items: flex-start;
  }

  .c-stop-slider--arrows-container {
    width: 100%;
  }

  .c-content-tour--stops,
  .c-content-tour--time,
  .c-content-tour--distance {
    display: inline-block;
  }

  .c-content-tour--key-details {
    margin-top: 30px;
  }

  .c-content-tour--tags-container {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .c-content-tour--copyright-credits-container {
    margin-top: 40px;
  }

  .c-hero-tour--heading {
    max-width: 686px;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .c-hero-tour--details {
    max-width: 686px;
    margin: 0 auto;
  }

  .creator-details__container {
    width: 100%;
    max-width: 686px;
    margin: 0 auto;
  }

  .popup-cta__container {
    display: block;
    position: fixed;
    bottom: 0px;
    padding: 16px 0px;
    background-color: white;
    border-top: 1px solid #D8D8D8;
    width: 100%;
    z-index: 5;
  }

  .popup-cta__button-container {
    display: flex;
    margin: 0 auto;
    max-width: none;
  }

  .o-link--app-store--lockup img {
    display: block;
  }

  .footer__tour {
    padding-bottom: 120px;
  }



}

@media(max-width: 768px) {

  .c-hero__container {
    height: auto;
  }

  .hero {
    position: relative;
    height: 600px;
  }

  .c-hero__nav {
    margin-top: 40px;
  }

  .container-logo {
    top: auto;
  }

  .container-logo img {
    width: 120px;
  }

  .hero__bg-video__container iframe {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-text-container {
    text-align: center;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-heading {
    margin-bottom: 15px;
  }

  .hero-sub-heading {
    margin: 0 auto;
    margin-bottom: 30px;
    display: block;
    max-width: 470px;
  }

  .top-45 {
    top: 45%;
  }

  .partners__container {
    height: auto;
  }

  .partners__logos__container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    padding: 40px;
    box-sizing: border-box;
  }

  .partner-logos {
    display: none;
  }

  .partner-logos-tab {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .section-one__lines-left {
    position: absolute;
    top: -140px;
    left: -27px;
    width: 178px;
  }

  .section-phone__container {
    width: 29%;
    margin-right: 8.4%;
  }

  .section-text__container {
    max-width: 360px;
  }

  .section-phones__container {
    width: 42%;
  }

  .reverse .section-text__container {
    margin-right: 5.4%;
  }

  .section-two__lines-left img,
  .section-two__lines-right img {
    width: 100%;
  }

  .section-two__lines-right {
    width: 100px;
    top: -145px;
  }

  .section-two__lines-left {
    width: 108px;
    bottom: -136px;
  }

  .section-three__container {
    height: auto;
  }

  .section-three__container .section-content-centered__container {
    position: relative;
    top: auto;
    transform: none;
    margin: 50px auto;
    width: 90%;
  }

  .section-three__lines-right img {
    width: 100%;
  }

  .section-three__lines-right {
    width: 112px;
    bottom: -70px;
  }

  .modal-creator-content {
    width: 380px;
    padding-left: 30px;
  }

  .help-center__text-container {
    width: 80%;
  }

  .explore__hero-container {
    padding: 40px 0px;
  }

  .explore-hero__sub-heading {
    width: 100%;
    max-width: 568px;
  }

  .explore__single-tour-outer-container {
    width: 50%;
  }

  .explore__lines-left {
    width: 100px;
    top: -285px;
  }

  .explore__lines-right {
    display: none;
  }

  .explore__download-cta__container .text-container {
    width: 40%;
    margin-right: 4%;
  }

  .explore__phones-container {
    width: 53%;
    max-width: 410px;
    height: 400px;
    position: relative;
  }

  .hs-richtext h3 {
    max-width: 270px;
  }

  .popup-cta__button-container {
      max-width: 300px;;
  }

@media(max-width: 475px) {

  h1 {
    font-size: 2.25em;
    /* 2x body copy size = 36px */
    line-height: 1.125;
  }

  h2 {
    font-size: 2em;
    /* 1.65x body copy size = 32px */
    line-height: 1.125;
  }

  h3 {
    font-size: 1.65em;
    /* 1.375x body copy size = 26px */
    line-height: 1.15;
  }

  p {
    font-size: 1em;
    /* 1x body copy size = 16px */
  }


ol {
  font-size: 16px;
  /* equivalent to 16px */
}

li {
  font-size: 16px;
  /* equivalent to 16px */
}

  .global-nav-items__container {
    display: none;
  }

  .help-center__section .global-nav-items__container {
      display: inline-block;
    }

  .hamburger-menu-container {
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 30px;
    height: 38px;
    cursor: pointer;
    z-index: 99999;
  }

  .hamburger-menu-container.active {
    display: inline-block;
    position: fixed;
    right: 30px;
    top: 28px;
  }

  .hamburger-icon {
    position: relative;
    width: 30px;
    height: 2px;
    background: #343030;
    top: 18px;
    transition: all 0.3s ease;
  }

  .hamburger-icon:before,
  .hamburger-icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #343030;
    transition: all 0.3s ease;
  }

  .hamburger-icon:before {
    top: -10px;
    right: 0;
  }

  .hamburger-icon:after {
    top: 10px;
    right: 0;
  }

  .hamburger-menu-container.active .hamburger-icon {
    background: rgba(0,0,0,0);
  }

  .hamburger-menu-container.active .hamburger-icon:before {
    top: 0;
    transform: rotate(45deg);
    background: #343030;
  }

  .hamburger-menu-container.active .hamburger-icon:after {
    top: 0;
    transform: rotate(135deg);
    background: #343030;
  }

  .c-hero__nav .hamburger-icon,
  .c-hero__nav .hamburger-icon:before,
  .c-hero__nav .hamburger-icon:after  {
    background: white;
  }

  .hamburger-icon:before,
  .hamburger-icon:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #343030;
    transition: all 0.3s ease;
  }

  .hamburger-icon:before {
    top: -10px;
    right: 0;
  }

  .hamburger-icon:after {
    top: 10px;
    right: 0;
  }

  .hamburger-menu-container.active .hamburger-icon {
    background: rgba(0,0,0,0);
  }

  .hamburger-menu-container.active .hamburger-icon:before {
    top: 0;
    transform: rotate(45deg);
    background: #343030;
  }

  .hamburger-menu-container.active .hamburger-icon:after {
    top: 0;
    transform: rotate(135deg);
    background: #343030;
  }

  .mobile-nav__btn {
    padding-top: 15px;
  }

  .mobile-nav__btn .o-button {
    font-size: 1.5em;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .menu-overlay ul {
    width: 100%;
    padding: 0px 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    z-index: 100;
  }

  .menu-overlay ul li a {
    color: #343030;
    font-family: 'Nunito';
    font-weight: 900;
    font-size: 1.5em;
    line-height: 2em;
    list-style: none;
    text-decoration: none;
  }

  .menu-overlay a {
    display: inline-block;
  }

  .menu-overlay .container-main a {
    margin-top: 20px;
  }

  .menu-overlay .container-main a img {
    width: 100px;
    vertical-align: bottom;
  }

  .contact-button-modal {
    margin-left: 0px;
  }

  .hero {
    position: relative;
    height: 480px;
  }

  .hero__bg-video__container iframe {
  height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }

  .c-hero__nav {
    margin-top: 20px;
  }

  .container-text-logo {
    position: relative;
  }

  .container-logo img {
    width: 100px;
    height: auto;
    vertical-align: bottom;
  }

  .hero__nav-items {
    display: none;
  }

  .container-main {
      width: 90%;
  }

  .container-main__no-mobile {
      width: 100%;
  }

  .container-text {
    margin-top: 20px;
  }

  .hero-text-container {
    position: absolute;
    top: 53%;
    left: 0;
    transform: translate(0%, -50%);
  }

  .hero-heading {
    max-width: 220px;
    margin: 0 auto;
    margin-bottom: 12px;
  }

  h2.section-heading {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .section-one__lines-left,
  .section-two__lines-right,
  .section-two__lines-left,
  .section-three__lines-right,
  .explore__lines-left,
  .explore__lines-right {
    display: none;
  }

  .section-content__container,
  .section-content-centered__container {
    padding: 40px 0px;
    flex-direction: column-reverse;
    position: relative;
    top: auto;
    transform: none;
  }

  .section-phone__container {
    width: 180px;
    margin-right: 0px;
  }

  .section-laptop__container {
    max-width: 90%;
    margin-right: 0px;
  }

  .partners__container {
    display: block;
    margin-top: 32px;
  }

  .partners__logos__container {
    padding: 16px;
  }

  .partner-logos {
    display: none;
  }

  .partner-logos-tab {
    display: none;
  }

  .partner-logos-mob {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .section-one__container,
  .section-two__container,
  .section-three__container,
  .section-cta__container {
    height: auto;
  }

  .section-three__container .section-content-centered__container {
    margin: 0px;
    width: 100%;
  }

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

  .section-two-feature__container {
    text-align: left;
  }

  .reverse .section-text__container {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .section-text__container {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .section-phones__container {
    width: 288px;
  }

  .explore__single-tour-outer-container {
    width: 100%;
  }

  .section-tour-example__title {
    font-size: 22px;
  }

  .section-tour-example__categories {
    font-size: 16px;
  }

  .section-tour-example_review-text {
    font-size: 14px;
  }

  .section-award__container h3 {
    margin-top: 30px;
  }

  .section-cta__container {
    padding: 20px 0px;
  }

  .section-content__button-centered {
    margin-top: 25px;
  }

  .trav-award-logo {
    margin-right: 0px;
    margin-bottom: 50px;
  }

  .section-text__container_horizontal {
    flex-direction: column;
    align-items: center;
  }

  /* BLOG PAGE */

  .blog__section-container {
    padding: 40px 0px;
  }

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

  .blog__card-container {
    width: 100%;
    margin-bottom: 24px;
  }

  /* BLOG POST PAGE */

  .blog-post__section-container {
    padding: 40px 0px;
  }

  .blog-post__hero-img {
    margin-bottom: 32px;
  }

  /* FOOTER */

  .footer-content__container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-left-content__links {
    display: flex;
    justify-content: center;
  }

  .footer-left-content__links a {
    margin-left: 8px;
    margin-right: 8px;
  }

  .footer__left-content {
    margin-bottom: 20px;
  }

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

  .footer-right-content__store-badges {
    justify-content: center;
  }

  .footer-right-content__store-badges a:nth-child(1) {
    margin-right: 4px;
  }

  .footer-right-content__store-badges a:nth-child(2) {
    margin-left: 4px;
  }



  /* Modals */

  .modal-contact-content {
    width: 85%;
    padding: 25px 15px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
    top: auto;
    transform: none;
  }

  .modal-contact-content.active {
    transform: none;
  }

  .hs-button {
    width: 100%;
  }

  .submitted-message p {
    width: 90%;
  }

  .modal-creator-content {
    width: 80%;
    padding: 20px;
  }

  .modal-creator-content h3 {
    margin-top: 20px;
  }

  .modal-2-content {
    width: 80%;
    padding: 20px;
    height: 430px
  }

  #modal-close-explorer, #modal-close-creator, #modal-close-contact {
    right: 20px;
    top: 8px;
  }

  .modal-heading {
    margin: 25px auto 15px auto;
    max-width: 280px;
  }

  .modal-text {
    margin-bottom: 8px;
  }

  .modal-form-error {
    width: 100%;
  }

  input.form-field {
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
    -webkit-appearance: none;
  }

  input.form-field::placeholder {
    font-size: 14px;
    -webkit-appearance: none;
  }

  input.form-button {
    font-size: 16px;
    padding: 13px;
    width: 100%;
    -webkit-appearance: none;
  }

  .faq-page-title {
    margin-top: 40px;
    width: 90%;
  }

  .accordion-title {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .accordion-answer {
    margin-bottom: 20px;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  button.accordion-question::after,
  button.accordion-question.is-open::after {
    height: 22px;
    margin-left: 20px;
  }

  .modal-share-tour {
    width: 75%;
    padding: 25px 25px;
  }

  /* Explore Page */

  .explore__hero-container {
    padding: 40px 0px;
  }

  .explore-hero__typed-container {
    text-align: center;
  }

  .explore-hero__heading {
    margin: 0 auto;
  }

  .explore-hero__sub-heading {
    text-align: center;
    margin-top: 30px;
  }

  h3.explore-hero__sub-heading {
    text-align: center;
    margin-top: 30px;
    font-size: 1.5em;
    line-height: 1.25em;
  }

  .explore-hero__typed-element {
    margin: 0 auto;
    height: 50px;
    padding-bottom: 0px;
  }

  .explore__lines-left {
    display: none;
  }

  .explore__create-cta__container {
    margin-bottom: 20px;
  }

  .explore__download-cta__container {
    height: auto;
    padding-top: 50px;
  }

  .explore__download-cta-content__contaner {
    flex-direction: column;
    text-align: center;
  }

  .explore__download-cta__container .text-container {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .explore__phones-container {
    width: 100%;
    height: auto;
  }

  .explore__phones-container img {
    position: relative;
    vertical-align: bottom;
  }

  /* Individual Tour Page */

  .c-hero--tour,
  .c-hero-tour--image {
    height: 280px;
  }

  .c-hero-tour--review-stars .usr {
    bottom: 0px;
  }

  .c-hero-tour--share {
    margin-top: 25px;
  }

  .c-hero-tour--share-btn {
    padding: 6px 15px 10px 15px;
  }

  .c-hero-tour--creator-name {
    color: #343030;
    top: 66px;
    transform: none;
    font-size: 1.125em;
    margin-left: 0px;
    width: calc(100% - 100px);
    padding-bottom: 14px;
    border-bottom: 1px solid #D8D8D8;
  }

  .c-hero-tour--creator-image {
    float: right;
  }

  .c-hero-tour--text {
    bottom: auto;
    top: 50%;
    transform: translate(0%, -50%);
  }

  h1.c-hero-tour--heading {
    font-size: 24px;
  }

  .c-hero-tour--reviews,
  .c-hero-tour--time {
    margin-right: 16px;
  }

  .c-hero-tour--review-count,
  .c-hero-tour--time-count,
  .c-hero-tour--distance-count {
    font-size: 0.875em;
    margin-left: 4px;
  }

  .c-hero-tour--creator-details {
    bottom: -50px;
  }

  .popup-cta__button-container {
    max-width: none;
  }

  .tour__content-container {
    margin-top: 80px;
  }

  .c-content-tour--description,
  .c-content-tour--key-details,
  .c-content-tour--tags-container,
  .c-content-tour--reviews-container,
  .c-content-tour--copyright-credits-container {
    width: 90%;
  }


  .c-content-tour--stops,
  .c-content-tour--time {
    margin-right: 10px;
  }

  .c-content-tour--tag {
    padding: 5px 8px;
    font-size: 0.875em;
  }

  .c-content-tour--map-container,
  .c-content-tour--map-visual {
    height: 480px;
  }

  .c-stop-slider--arrows-container {
    display: none;
  }

  .c-content-tour--map-visual {
    border-radius: 0px;
  }

  .c-stop-slider--stop {
    width: 270px;
  }

  .c-stop-slider--stop-name {
    max-width: 200px;
  }

  .c-content-tour--info {
    margin-bottom: 0px;
  }

  /* FAQ Selection */

  .help-center__section {
    height: auto;
  }

  .help-center__content-container {
    height: auto;
    margin-top: 30px;
  }

  .help-center__text-container {
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }

  .help-center__content-container h1 {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px
  }

  .help-center__intro-text {
    font-size: 18px;
  }

  .help-center__app-buttons {
    flex-direction: column;
  }

  .help-center__creator-button p, .help-center__explorer-button p {
    font-size: 20px;
  }

  .help-center__app-buttons {
    text-align: center;
    margin: 30px 0px 50px 0px;
  }

  .help-center__creator-button, .help-center__explorer-button {
    display: block;
    width: 100%;
    margin: 0px;
  }
  .help-center__explorer-button {
    margin-top: 20px;
  }

  .help-center__heading {
    margin-top: 0px;
  }

  /* FAQ Main */

  button.faq-expand-all {
    width: 100%;
    padding: 10px 15px 32px 15px;
    margin-top: 14px;
    float: none;
    height: 40px;
  }

  button.faq-expand-all.expanded {
    width: 100%;
    padding: 10px 15px 32px 15px;
    margin-top: 14px;
    float: none;
    height: 40px;
  }

  #js-toggle-all::after {
    float: none;
    top: 2px;
  }

  #js-toggle-all.expanded::after {
    float: none;
    top: 3px;
  }

  .faq-about {
    margin-top: 10px;
  }

  .footer-faq {
    position: relative;
  }

  /* HubSpot Widget */

  #hubspot-messages-iframe-container {
    z-index: -300000 !important;
    opacity: 0;
    pointer-events: none;
  }