:root {
  --section-rotate: 9vw;
}

::-moz-selection {
  background-color: #9dc3c1;
  color: #fff;
}

::selection {
  background-color: #9dc3c1;
  color: #fff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Rubik', 'Roboto', sans-serif;
  color: #777;
  background-color: #f7f7f7;
  /*padding: 3rem;*/
  padding-top: 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  background-color: #f7f7f7;
  padding: 8rem 6.4rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.span-all-rows {
  grid-row: 1 / -1;
}

.ma-bt-md {
  margin-bottom: 3rem !important;
}

.ma-bt-lg {
  margin-bottom: 3.5rem !important;
}

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

.line {
  margin: 6rem 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.alert {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1.6rem 15rem;
  -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--success {
  background-color: #9dc3c1;
}
.alert--error {
  background-color: #eb4d4b;
}

/*.heading-secondary {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#9dc3c1),
    to(#9dc3c1)
  );
  background-image: linear-gradient(to right, #9dc3c1, #9dc3c1);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  display: inline-block;
}
*/

.heading-secondary--error {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #444;
  letter-spacing: -0.5px;
  font-weight: 700;
  border-radius: 0.5rem;

  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff7730),
    to(#eb4d4b)
  );
  background-image: linear-gradient(to right, #ff7730, #eb4d4b);
}

.heading-primary span,
.heading-tertirary span {
  padding: 1rem 1.5rem;
  line-height: 1;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background-image: linear-gradient(to bottom right, #777, #444);
}

.heading-tertirary {
  font-size: 2.75rem;
  text-align: right;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  width: 70%;
  z-index: 10;
}

.btn,
.btn:link,
.btn:visited {
  font-size: 1.6rem;
  padding: 1.4rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-weight: 400;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*Add later when we use this for the button in form*/
  border: none;
  cursor: pointer;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn:focus {
  outline: none;
  background-color: #f7f7f7;
}

.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}

.btn--green {
  background-color: #9dc3c1;
  color: #fff;
}
.btn--green::after {
  background-color: #9dc3c1;
}

.btn--small {
  padding: 1.25rem 3rem !important;
  font-size: 1.4rem !important;
}

.btn-small,
.btn-small:link,
.btn-small:visited {
  background-color: #9dc3c1;
  color: #fff;
  font-size: 1.4rem;
  padding: 1.25rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  border: none;
}

.btn-small:hover {
  background-color: #777;
}

.btn-text:link,
.btn-text:visited {
  color: #444;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn-text:hover {
  background-color: #444;
  color: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-text:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-text:focus {
  outline: none;
  outline: 3px solid #777;
  outline-offset: 3px;
}

.header {
  background-color: #444;
  padding: 0 5rem;
  height: 8rem;
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*margin-bottom: 30px;*/
}
/*
@media only screen and (max-width: 62.5em) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
*/
.header__logo img {
  height: 4.4rem;
}
/*
@media only screen and (max-width: 62.5em) {
  .header__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1.5rem;
  }
}
*/

.section-header {
  position: relative;
  height: 38vw;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
}

.header__hero {
  height: 100%;
}

.header__hero-img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: 50% 25%;
  object-position: 50% 25%;
}

.header__hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background-image: linear-gradient(to right bottom, #777, #444);
  opacity: 0.85;
}

.heading-box {
  position: absolute;
  bottom: 13vw;
  left: 50%;
  top: 35%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.heading-box__group {
  color: #f7f7f7;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heading-box__detail {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.heading-box__detail svg {
  margin-right: 0.8rem;
}
.heading-box__detail:not(:last-child) {
  margin-right: 4rem;
}
.heading-box__icon {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  -webkit-filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
}

.section-description {
  background-color: #fcfcfc;
  margin-top: calc(0px - var(--section-rotate));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-description > * {
  padding: 0 8vw;
  padding-top: 14vw;
  padding-bottom: calc(1vw + var(--section-rotate));
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.description-box .description {
  margin-right: 5rem;
}
.description-box .description__text {
  font-size: 1.7rem;
}
.description-box .description__text:not(:last-child) {
  margin-bottom: 2rem;
}

.overview-box {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.overview-box__group:not(:last-child) {
  margin-bottom: 7rem;
}
.overview-box__detail {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
.overview-box__detail svg {
  margin-right: 1.25rem;
}
.overview-box__detail:not(:last-child) {
  margin-bottom: 2.25rem;
}
.overview-box__icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: #777;
}
.overview-box__label {
  font-weight: 700;
  margin-right: 2.25rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.overview-box__text {
  text-transform: capitalize;
}
.overview-box__img {
  border-radius: 50%;
  height: 3.5rem;
  margin-right: 1.25rem;
}

.section-pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  clip-path: polygon(
    0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
  -webkit-clip-path: polygon(
    0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
  margin-top: calc(0px - var(--section-rotate));
  position: relative;
  z-index: 1000;
}

.picture-box__img {
  display: block;
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
}
.picture-box__img--1 {
  padding-top: 15%;
}
.picture-box__img--2 {
  padding-bottom: 15%;
}
.picture-box__img--3 {
  padding-bottom: 27%;
}

.section-map {
  position: relative;
  height: 65rem;
  margin-top: calc(0px - var(--section-rotate));
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.marker {
  background-image: url('../img/pin.png');
  background-size: cover;
  width: 32px;
  height: 40px;
  cursor: pointer;
}

.mapboxgl-popup {
  max-width: 25rem;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Lato', sans-serif;
  padding: 1.5rem !important;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.section-reviews {
  margin-top: calc(0px - var(--section-rotate));
  padding: calc(5rem + var(--section-rotate)) 0;
  position: relative;
  z-index: 1000;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background: linear-gradient(to right bottom, #777, #444);
  clip-path: polygon(
    0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
  -webkit-clip-path: polygon(
    0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%
  );
}

.reviews {
  padding: 5rem 0;
  display: grid;
  grid-column-gap: 6rem;
  grid-auto-flow: column;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.reviews__card {
  width: 30rem;
  padding: 4rem;
  background-color: #f7f7f7;
  border-radius: 3px;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  scroll-snap-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews:before,
.reviews:after {
  content: '';
  width: 2rem;
}
.reviews__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
.reviews__avatar-img {
  height: 4.5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}
.reviews__user {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.reviews__text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}
.reviews__rating {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__star {
  height: 2rem;
  width: 2rem;
  margin-right: 1px;
}
.reviews__star--active {
  fill: #777;
}
.reviews__star--inactive {
  fill: #bbb;
}

.section-cta {
  margin-top: calc(0px - var(--section-rotate));
  padding: 3rem;
  padding-bottom: 11rem;
  padding-top: calc(15rem + var(--section-rotate));
  background-color: #f7f7f7;
}

.cta {
  position: relative;
  max-width: 105rem;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  padding: 9rem 5rem 9rem 21rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
}
.cta__img {
  height: 15rem;
  width: 15rem;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
  box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
}
.cta__img--logo {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background: linear-gradient(to right bottom, #777, #444);
  z-index: 10;
  -webkit-transform: translate(-35%, -50%);
  transform: translate(-35%, -50%);
}
.cta__img--logo img {
  width: 100%;
}
.cta__img--1 {
  -webkit-transform: translate(-10%, -50%) scale(0.97);
  transform: translate(-10%, -50%) scale(0.97);
  z-index: 9;
}
.cta__img--2 {
  -webkit-transform: translate(15%, -50%) scale(0.94);
  transform: translate(15%, -50%) scale(0.94);
  z-index: 8;
}
.cta__content {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  grid-gap: 0.7rem;
  grid-auto-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cta__text {
  font-size: 1.9rem;
  font-weight: 400;
}

.user-view {
  background-color: #fff;
  max-width: 120rem;
  margin: 0 auto;
  min-height: 100vh;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-view__menu {
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background-image: linear-gradient(to right bottom, #777, #444);
  padding: 4rem 0;
}
.user-view__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7rem 0;
}
.user-view__form-container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.footer {
  background-color: #444;
  padding: 3rem 4rem 3rem 4rem;
  font-size: 1.4rem;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer__logo {
  /*-ms-flex-item-align: center;*/
  align-self: center;
}
/*
@media only screen and (max-width: 50em) {
  .footer__logo {
    grid-row: 1;
  }
}
*/
.footer__logo img {
  width: 5rem;
}
.footer__nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-evenly;
  column-gap: 1.6rem;
}

.footer__nav a {
  color: #f7f7f7;
  text-decoration: none !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer__nav a:hover,
.footer__nav a:active {
  color: #777;
}
.footer__copyright {
  justify-self: center;
  color: #f7f7f7;
}
/*
@media only screen and (max-width: 50em) {
  .footer__copyright {
    justify-self: center;
  }
}
*/

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-nav-list {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
}
/*
@media only screen and (max-width: 37.5em) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
*/

.nav--type {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
/*
@media only screen and (max-width: 62.5em) {
  .nav--type {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav--type {
    margin-bottom: 0;
  }
}
*/
.nav--user {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.nav__el,
.nav__el:link,
.nav__el:visited {
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.nav__el:hover,
.nav__el:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  text-shadow: 0 0.7rem 1rem black;
}
.nav__el:not(:last-child) {
  margin-right: 3rem;
}
/*
@media only screen and (max-width: 37.5em) {
  .nav__el:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
}
*/

.nav__el:focus {
  outline: none;
}
.nav__el--cta {
  padding: 1rem 3rem;
  border-radius: 10rem;
  border: 1px solid currentColor !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav__el--cta:link,
.nav__el--cta:visited {
  background-color: #fd9113;
}

.nav__el--cta:hover {
  background-color: #f7f7f7;
  color: #777;
  text-shadow: none;
  border-color: #f7f7f7;
}
.nav__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*
@media only screen and (max-width: 37.5em) {
  .nav__search {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1.2rem;
  }
}
*/
.nav__search-btn {
  background: none;
  border: none;
  margin-right: 0.8rem;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.nav__search-btn svg {
  height: 2rem;
  width: 2rem;
  fill: #f7f7f7;
}
.nav__search-input {
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f7f7f7;
  padding-bottom: 3px;
  border-bottom: 1px solid #999;
  width: 18rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__search-input::-webkit-input-placeholder {
  color: #999;
}
.nav__search-input:-ms-input-placeholder {
  color: #999;
}
.nav__search-input::-ms-input-placeholder {
  color: #999;
}
.nav__search-input::placeholder {
  color: #999;
}
.nav__search-input:focus {
  outline: none;
  width: 25rem;
  border-bottom: 1px solid currentColor;
}
.nav__user-img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.side-nav {
  list-style: none;
}
.side-nav li {
  margin: 1rem 0;
  border-left: 0 solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav--active,
.side-nav li:hover {
  border-left: 4px solid #fff !important;
}
.side-nav--active a {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.side-nav a:link,
.side-nav a:visited {
  padding: 1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav a:hover,
.side-nav a:active {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.side-nav svg {
  height: 1.9rem;
  width: 1.9rem;
  fill: #f7f7f7;
  margin-right: 2rem;
}

.admin-nav {
  margin-top: 5.5rem;
}
.admin-nav__heading {
  margin: 0 5rem 1.5rem 4rem;
  padding-bottom: 3px;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #f2f2f2;
  border-bottom: 1px solid currentColor;
}

.card-container {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 7rem;
}

.card {
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card__header {
  position: relative;
}
.card__picture {
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 22rem;
}
.card__picture-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#777),
    to(#444)
  );
  background-image: linear-gradient(to right bottom, #777, #444);
  opacity: 0.7;
}
.card__picture-img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1.75rem;
  grid-column-gap: 2rem;
  padding: 2.5rem 3rem;
}
.card__sub-heading {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  grid-column: 1 / -1;
}
.card__text {
  grid-column: 1 / -1;
  font-size: 1.5rem;
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 0.75rem;
}
.card__data {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card__data svg {
  margin-right: 0.7rem;
}
.card__icon {
  height: 2rem;
  width: 2rem;
  fill: #444;
}
.card__footer {
  background-color: #f7f7f7;
  padding: 2.5rem 3rem;
  border-top: 1px solid #f1f1f1;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: auto;
}
.card__footer-value {
  font-weight: 700;
}
.card__footer-text {
  color: #999;
}
.card__ratings {
  grid-row: 2 / 3;
}
.card .btn-small,
.card .btn {
  grid-row: 1 / 3;
  justify-self: end;
  -ms-flex-item-align: center;
  align-self: center;
}

.error {
  /* position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  max-width: 80rem;
  text-align: center;
}
.error__title {
  margin-bottom: 6.4rem;
}
.error__emoji {
  font-size: 3.75rem;
  margin-left: 1rem;
}
.error__msg {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 50rem;
  margin: 0 auto;
}

.login-form {
  margin: 0 auto;
  max-width: 55rem;
  background-color: #fff;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  padding: 5rem 7rem;
  border-radius: 5px;
}

.form__input {
  display: block;
  font-family: inherit;
  font-size: 1.5rem;
  color: inherit;
  padding: 1.25rem 1.75rem;
  border: none;
  width: 100%;
  background-color: #fff;
  background-color: #f2f2f2;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Pseudo element (a visible thing that isn't really in the DOM).
      Also needs -ms- */
}
.form__input:focus {
  outline: none;
  border-bottom: 3px solid #9dc3c1;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #bbb;
}

.form__group:not(:last-child) {
  margin-bottom: 2.5rem;
}

.form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form__photo-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}

.form__user-photo {
  height: 7.5rem;
  width: 7.5rem;
  border-radius: 50%;
  margin-right: 2rem;
}

.form__upload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form__upload:focus + label {
  outline: 3px solid #444;
  outline-offset: 3px;
}

.form__upload + label {
  color: #444;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.form__upload + label:hover {
  background-color: #444;
  color: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contact-form {
  margin: 0 auto;
  max-width: 80rem;
  /*background-color: #fff;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);*/
  padding: 2rem 2rem;
  border-radius: 5px;

  font-size: 1.6rem;
}

.contact-form span {
  font-size: 3.6rem;
  vertical-align: middle;
  margin-right: 2rem;
}

.contact-text,
.contact-address {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 1rem;
}

.contact-address {
  font-weight: 600;
  font-size: 2rem;
}

/* --- TOAST NOTIFICATION STARTS --- */
.toast-notification {
  position: fixed;
  text-decoration: none;
  z-index: 999999;
  max-width: 300px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  display: flex;
  padding: 10px;
  transform: translate(0, -150%);
  font-family: 'Roboto';
}
.toast-notification .toast-notification-wrapper {
  flex: 1;
  padding-right: 10px;
  overflow: hidden;
}
.toast-notification .toast-notification-wrapper .toast-notification-header {
  padding: 0 0 5px 0;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  word-break: break-all;
  color: #4f525a;
}
.toast-notification .toast-notification-wrapper .toast-notification-content {
  font-size: 14px;
  margin: 0;
  padding: 0;
  word-break: break-all;
  color: #4f525a;
}
.toast-notification .toast-notification-close {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 4px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.2);
}
.toast-notification .toast-notification-close:hover {
  color: rgba(0, 0, 0, 0.4);
}
.toast-notification.toast-notification-top-center {
  transform: translate(calc(50vw - 50%), -150%);
}
.toast-notification.toast-notification-bottom-left,
.toast-notification.toast-notification-bottom-right {
  transform: translate(0, 150%);
}
.toast-notification.toast-notification-bottom-center {
  transform: translate(calc(50vw - 50%), 150%);
}
.toast-notification.toast-notification-dark {
  background-color: #2d2e31;
}
.toast-notification.toast-notification-dark
  .toast-notification-wrapper
  .toast-notification-header {
  color: #edeff3;
}
.toast-notification.toast-notification-dark
  .toast-notification-wrapper
  .toast-notification-content {
  color: #edeff3;
}
.toast-notification.toast-notification-dark .toast-notification-close {
  color: rgba(255, 255, 255, 0.2);
}
.toast-notification.toast-notification-dark .toast-notification-close:hover {
  color: rgba(255, 255, 255, 0.4);
}
.toast-notification.toast-notification-success {
  background-color: #c3f3d7;
  border-left: 4px solid #51a775;
}
.toast-notification.toast-notification-success
  .toast-notification-wrapper
  .toast-notification-header {
  color: #51a775;
}
.toast-notification.toast-notification-success
  .toast-notification-wrapper
  .toast-notification-content {
  color: #51a775;
}
.toast-notification.toast-notification-success .toast-notification-close {
  color: rgba(0, 0, 0, 0.2);
}
.toast-notification.toast-notification-success .toast-notification-close:hover {
  color: rgba(0, 0, 0, 0.4);
}
.toast-notification.toast-notification-error {
  background-color: #f3c3c3;
  border-left: 4px solid #a75151;
}
.toast-notification.toast-notification-error
  .toast-notification-wrapper
  .toast-notification-header {
  color: #a75151;
}
.toast-notification.toast-notification-error
  .toast-notification-wrapper
  .toast-notification-content {
  color: #a75151;
}
.toast-notification.toast-notification-error .toast-notification-close {
  color: rgba(0, 0, 0, 0.2);
}
.toast-notification.toast-notification-error .toast-notification-close:hover {
  color: rgba(0, 0, 0, 0.4);
}
.toast-notification.toast-notification-verified {
  background-color: #ffdf77;
  border-left: 4px solid #f55f20;
}
.toast-notification.toast-notification-verified
  .toast-notification-wrapper
  .toast-notification-header {
  color: #f55f20;
}
.toast-notification.toast-notification-verified
  .toast-notification-wrapper
  .toast-notification-content {
  color: #f55f20;
}
.toast-notification.toast-notification-verified .toast-notification-close {
  color: rgba(0, 0, 0, 0.2);
}
.toast-notification.toast-notification-verified
  .toast-notification-close:hover {
  color: rgba(0, 0, 0, 0.4);
}
.toast-notification.toast-notification-dimmed {
  opacity: 0.3;
}
.toast-notification.toast-notification-dimmed:hover,
.toast-notification.toast-notification-dimmed:active {
  opacity: 1;
}
/* --- TOAST NOTIFICATION ENDS --- */

/* Inherited from the d3 project */
/* Integrate to this project later */

/* ---visualization.css--- */
.axis-x text,
.axis-y text {
  font-family: 'Roboto';
  font-size: 12px;
}

.price-line {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
}

.metric-line {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
}

.ratio-line {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
}

.ratio-one-line {
  fill: none;
  stroke: #808080;
  stroke-width: 2px;
  stroke-dasharray: 5, 5;
}

.map-flawed-line {
  fill: none;
  stroke: #808080;
  stroke-width: 2px;
  stroke-dasharray: 5, 5;
}

.tooltip-line {
  fill: none;
  stroke: #222323;
  stroke-width: 1px;
}

.tooltip-line-x {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 2, 2;
  opacity: 0.7;
}

.tooltip-text {
  fill: #000;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Roboto';
}

.tooltip-fair-text {
  font-size: 12px;
  font-weight: 900;
  font-family: 'Roboto';
}

.tooltip-date-text {
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 900;
}

.tooltip-map-text {
  fill: #f7f7f7;
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 900;
}

.rank-circle-label {
  fill: #f7f7f7;
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 900;
}

/* VALUATION PAGE */

.value-main-container {
  color: #f7f7f7;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 5rem;
  margin: 0 auto;
  margin-bottom: 3rem;
  position: relative;
}

.value-info-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  background-color: #f7f7f7;
  column-gap: 5rem;
  border-radius: 1rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.info-block {
  /* align-self: flex-start; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  row-gap: 2rem;
  column-gap: 2rem;
}

.logo-name-el {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.value-chart-container {
  display: grid;
  /* height: 100px; */
  grid-column: 1 / 2;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  row-gap: 1.5rem;
}

#map-chart {
  grid-column: 2 / -1;
}

/* Control block */
.ctrl-valuation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 7.5rem;
  background-color: #444;
  height: 8rem;
  margin-bottom: 3rem;
  z-index: 99;

  /* flex-direction: row; */
}

.tick-block {
  display: flex;
  align-items: center;
}

.ticker-label-block {
  margin-right: 3rem;
  width: 10rem;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes blurOutIn {
  0% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    filter: blur(8px);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
}

.ticker-label-block p {
  font-size: 3rem;
  font-weight: 500;
  color: #f7f7f7;
  text-align: right;
  font-family: 'Rubik';
  ext-overflow: ellipsis;
  transition: transform 0.3s ease;
}

.ticker-label-block p.animate {
  animation: blurOutIn 0.8s forwards;
}

.form-block {
  margin-right: 5rem;
  position: relative;
}

.dropdown-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.ticker-input-container {
  margin-right: auto;
}

.logo-container {
  width: 7.5rem;
  height: 7.5rem;
}

#company-logo {
  mix-blend-mode: multiply;
  border-radius: 10%;
}

#company-logo:hover {
  cursor: pointer;
}

.info-el {
  min-width: 20rem;
}

.info-el--1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.info-el--2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.info-el--3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.info-el--4 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.info-el--5 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.info-el--6 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* 8 and 9 has been deleted */

.asis-date-el {
  position: absolute;
  top: 2%;
  left: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  white-space: pre;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.comp-name {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;

  /* text-align: center; */
}

.info-title {
  font-size: 1.6rem;
  font-weight: 400;
}

.info-value {
  font-size: 2rem;
  font-weight: 700;
}

.log-switch {
  display: none;
}

/* TICKER INPUT FIELD */
.form--valuation {
  margin-right: auto;
}
.ticker-input-container {
  position: relative;
  font-weight: 400;
  /*padding-top: 5px;
  margin-bottom: 5px;*/
}

.ticker-input-container input {
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f7f7f7;
  padding: 0.8rem;
  border-radius: 0.5rem;
  outline: none;
  width: 25rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.ticker-input-container .ticker-placeholder {
  position: absolute;
  left: 0.6rem;
  top: calc(50%);
  color: #777;
  font-size: 2rem;
  transform: translateY(-60%);
  transition:
    top 0.3s ease,
    color 0.3s ease,
    font-size 0.3s ease;
}

.ticker-input-container input:valid + .ticker-placeholder,
.ticker-input-container input:focus + .ticker-placeholder {
  top: -2.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #f7f7f7;
}

/* DROPDOWN STYLES */
.dropdown-value {
  position: relative;
  width: 20rem;
  height: 4rem;
}

.dropdown-metric {
  order: 1;
  width: 22rem;
}

.dropdown-period {
  order: 2;
  width: 15rem;
}

.dropdown-base {
  order: 3;
  width: 15rem;
}

.dropdown-value::before {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2.8rem;
  width: 1.2rem;
  height: 0.3rem;
  background: #f7f7f7;
  z-index: 10;
  transform: rotate(40deg);
  transition: 0.5s;
}

.dropdown-value.active {
  /* position: relative; */
  z-index: 100;
}

.dropdown-value.active::before {
  right: 2rem;
}

.dropdown-value::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.2rem;
  height: 0.3rem;
  background: #f7f7f7;
  z-index: 10;
  transform: rotate(-40deg);
  transition: 0.5s;
}

.dropdown-value.active::after {
  right: 2.8rem;
}

.dropdown-value input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  padding: 2rem 2rem 1.2rem 1.2rem;
  font-size: 2rem;
  color: #f7f7f7;
  font-weight: 400;
  background: #444;
  outline: none;
  /* border: none; */
  border: 0.2rem solid #f7f7f7;
}

.option-value {
  color: #f7f7f7;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.dropdown-value .option-value {
  position: absolute;
  top: 110%;
  width: 100%;
  background: #444;
  border-radius: 0.5rem;
  font-size: 2rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  font-weight: 400;
  border: 0.2rem solid #f7f7f7;
}

.dropdown-value.active .option-value {
  visibility: visible;
  opacity: 1;
}

.dropdown-value .option-value div {
  padding: 0.3rem 2rem;
  cursor: pointer;
}

.dropdown-value .option-value div:hover {
  background-color: #f7f7f7;
  color: #444;
  font-weight: 400;
}

.option-value--metric div[data-value='EV to EBITDA'] {
  /* Add your specific styles for EV to EBITDA here */
  color: #666; /* Change the color as needed */
  /* Change the font-weight as needed */
}

.dropdown-title {
  position: absolute;
  background-color: #444;
  color: #f7f7f7;
  font-size: 1.6rem;
  font-weight: 400;
  top: -1.2rem;
  left: 1rem;
  padding: 0 0.5rem;
}

/* ---CHART AREA--- */
/* PRICE CHART */
#price-chart {
  background-color: #444;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
}

#metric-chart {
  background-color: #444;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  padding: 10px;
  border-radius: 10px 10px 10px 10px;
  position: relative;
}

#ratio-chart {
  background-color: #444;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  padding: 10px;
  border-radius: 10px 10px 10px 10px;
  position: relative;
}

/* Common chart label styles for all charts */
.chart-label::after {
  position: absolute;
  color: #f7f7f7;
  font-size: 2rem;
  font-weight: 400;
  transform: translateY(-50%) translateX(-50%) rotate(-90deg);
  top: 50%;
  left: 2%;
  transition:
    opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
  opacity: 1;
}

#price-chart::after {
  content: var(--priceChartLabel, 'Price vs Fair Value');
}

#ratio-chart::after {
  content: var(--ratioChartLabel, 'Rel. Metric');
}

#metric-chart::after {
  content: var(--metricChartLabel, 'Metric');
}

/* Fade out and slide up effect */
.chart-label.fade-out::after {
  opacity: 0;
  transform: translateY(-10%) translateX(-50%) rotate(-90deg);
}

/* Fade in and slide from down to up effect */
.chart-label.fade-in::after {
  opacity: 1;
  transform: translateY(-90%) translateX(-50%) rotate(-90deg);
}

#map-chart {
  background-color: #444;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
}

#map-chart::after {
  content: var(--mapChartLabel, 'Overall Rank - Industry (Metric)');
  left: 4%;
  white-space: nowrap;
}

.autocomplete-list {
  position: absolute;
  top: 2.6rem;
  list-style-type: none;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.autocomplete-list li {
  background-color: #444;
  color: #f7f7f7;
  padding-left: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  border-left: 2px solid #f7f7f7;
  border-right: 2px solid #f7f7f7;
}

.autocomplete-list li:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: 2px solid #f7f7f7;
}

.autocomplete-list li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 2px solid #f7f7f7;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.autocomplete-list li:hover {
  background-color: #f7f7f7;
  color: #444;
}

/* --- scrollBar --- */
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: rgba(68, 68, 68, 0.97);
  border-radius: 0;
  margin-block: 0;
}

.autocomplete-list::-webkit-scrollbar-track {
  margin-block: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #f7f7f7;
  border-radius: 100vw;
  border: 3px solid #444;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s,
    visibility 1s;
}

.loader--visible {
  opacity: 1;
  visibility: visible;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: '';
  width: 5rem;
  height: 5rem;
  border: 1rem solid #f7f7f7;
  border-top-color: #9dc3c1;
  border-radius: 50%;
  animation: loading 1s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/* Checkbox for TTM */
.checkbox-ttm {
  position: absolute;
  top: 25%;
  left: 105%;
}

.checkbox-ttm .cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.checkbox-ttm .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-ttm .cbx span:first-child {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  transform: scale(1);
  vertical-align: middle;
  border: 0.2rem solid #f7f7f7;
  transition: all 0.2s ease;
}
.checkbox-ttm .cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0.4rem;
  fill: none;
  stroke: #444;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.6rem;
  stroke-dashoffset: 1.6rem;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-ttm .cbx span:first-child:before {
  content: '';
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  transition-delay: 0.2s;
}
.checkbox-ttm .cbx span:last-child {
  position: relative;
  top: -4.6rem;
  left: -0.3rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f7f7f7;
}
.checkbox-ttm .cbx span:last-child:after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background: #f7f7f7;
  transform-origin: 0 0;
  /*transform: scaleX(0);*/
  transform: scaleX(1);
  transition: all 0.3s ease;
}
.checkbox-ttm .cbx:hover span:first-child {
  /*border-color: #777;*/
}

.checkbox-ttm .inp-cbx:checked + .cbx span:first-child {
  border-color: #f7f7f7;
  background: #f7f7f7;
  animation: check-15 0.6s ease;
}
.checkbox-ttm .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-ttm .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.checkbox-ttm .inp-cbx:checked + .cbx span:last-child {
  color: #f7f7f7;
  transition: all 0.3s ease;
}
.checkbox-ttm .inp-cbx:checked + .cbx span:last-child:after {
  /*transform: scaleX(1);
  transition: all 0.3s ease;*/
  transform: scaleX(0);
}

@keyframes check-15 {
  50% {
    transform: scale(1.2);
  }
}

/******************/
/* LANDING PAGE */
/******************/

/* REUSABLE */
.gen-container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

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

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

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

.heading-primary,
.heading-secondary,
.heading-tertiary {
  color: #444;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fd9113;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

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

.add-padding-h {
  padding: 3.2rem 0;
}

.add-shadow {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.add-border-rad-30 {
  border-radius: 30px;
}

.hide {
  display: none;
}

/* NAVIGATION */

.btn-mobile-nav {
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
}

.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(68, 68, 68, 0.97);
  z-index: 99;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 8rem;
}

.stickyCtrl .ctrl-valuation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #444;
  z-index: 99;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.stickyCtrl .value-info-container {
  margin-top: 11rem;
}

/* HERO SECTION */
.section-hero {
  background-color: #cee1e0;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  /*height: 108rem;*/
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9.6rem;
}

.hero-description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4.8rem;
  color: #444;
}

.canvas-hero {
  /*width: 60rem;
  height: 51rem;*/
  width: 100%;
}

.hero-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-hero:link,
.btn-hero:visited {
  display: inline-block;
  background-color: #444;
  font-size: 2rem;
  text-decoration: none;
  color: #f7f7f7;
  padding: 1.6rem 3.2rem;
  border-radius: 10px;
}

/* KEY FEATURES SECTION */

.section-key {
  padding: 9.6rem 0;
  background-color: #fff;
}

.step-img-box,
.how-img-box,
.member-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-img-box {
  position: relative;
}

.key-lottie-container-data,
.key-lottie-container-research,
.key-lottie-container-framework {
  pointer-events: none;
  width: 70%;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: -1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* RISK SECTION */
.section-risk {
  padding: 9.6rem 0;
  background-color: #f7f7f7;
}

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

.risk-img {
  margin-bottom: 3.2rem;
  width: 7.5rem;
  height: 7.5rem;
}

.risk-title {
  font-size: 2rem;
  color: #444;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.risk-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* HOW IT WORKS SECTION */
.section-how {
  padding: 9.6rem 0;
  background-color: #fff;
}

.how-ytb-box {
  margin-bottom: 1.6rem;
}

.how-img {
  width: 100%;
}

.how-img,
.ytb-img {
  cursor: pointer;
}

/* MEMBER SECTION */
.section-member {
  padding: 9.6rem 0;
  background-color: #f7f7f7;
}

.member-desc {
  font-size: 1.8rem;
  line-height: 1.8;
}

.member-desc span {
  font-size: 3.6rem;
  vertical-align: bottom;
  padding-right: 1.8rem;
}

.member-img-box {
  position: relative;
}

.member-lottie-container-conf,
.member-img {
  width: 75%;
}

.member-lottie-container-conf {
  width: 40rem;
  position: absolute;
  pointer-events: none;
}

.member-img {
  cursor: pointer;
}
