* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", serif;
}

html {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  position: relative;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #121212;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.5em;
  min-width: 375px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  left: 0;
  width: 100vw;
  background: rgba(0, 0, 0, 0.95);
  overflow: hidden;
  padding: 16px 32px 16px 16px;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1024px) {
  header {
    padding: 12px 12px 8px 12px;
    flex-wrap: wrap;
    gap: 16px;
  }
}
header .logo {
  order: 1;
}
header .logo img {
  height: 50px;
}
@media (max-width: 900px) {
  header .logo img {
    height: 36px;
  }
}
header .menu {
  order: 2;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: start;
  list-style: none;
  flex-grow: 2;
  margin: 0;
}
header .menu li {
  margin: 0;
  padding: 0;
  font-size: 1.3em;
  font-weight: 600;
}
header .menu li a {
  color: #fff;
  text-decoration: none;
}
header .menu li a:hover {
  text-decoration: underline;
}
header .menu li.phone_li {
  display: none;
}
@media (max-width: 1024px) {
  header .menu li.phone_li {
    display: block;
  }
  header .menu li.phone_li a {
    display: inline-block;
    padding: 10px 16px 10px 56px;
    background-color: #fff;
    border-radius: 0.4em;
    text-decoration: none;
    color: #121212;
    font-weight: 700;
    width: fit-content;
    font-size: 0.9em;
    background-repeat: no-repeat;
    background-image: url("/images/phone2.svg");
    background-position: 14px center;
    background-size: 1.3em;
  }
}
@media (max-width: 1024px) {
  header .menu {
    padding: 0px;
    border-radius: 0.4em;
    display: none;
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    order: 5;
    box-sizing: border-box;
    max-height: 70vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header .menu::-webkit-scrollbar {
    display: none;
  }
  header .menu li {
    padding: 12px 16px 12px 16px;
    box-sizing: border-box;
  }
}
header .phone {
  order: 3;
  display: block;
  padding: 8px 12px 8px 48px;
  background-color: #fff;
  border-radius: 0.4em;
  text-decoration: none;
  color: #121212;
  font-weight: 700;
  background-repeat: no-repeat;
  background-image: url("/images/phone2.svg");
  background-position: 12px center;
  background-size: 1.5em;
}
@media (max-width: 1024px) {
  header .phone {
    display: none;
  }
}
header .burger {
  order: 4;
  display: none;
}
@media (max-width: 1024px) {
  header .burger {
    display: block;
  }
}

#start {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 1024px) {
  #start {
    height: auto;
    aspect-ratio: 1.2/1;
  }
}
#start .icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  width: 3em;
  aspect-ratio: 1/1;
  opacity: 0.5;
  background-color: #fff;
  border-radius: 1.5em;
}
#start .icon img {
  width: 70%;
}
#start .swipe {
  bottom: 24px;
  right: 24px;
  display: none;
}
@media (max-width: 1024px) {
  #start .swipe {
    display: flex;
  }
}
#start .left {
  top: calc(50% - 1.5em);
  left: 24px;
}
@media (max-width: 1024px) {
  #start .left {
    display: none;
  }
}
#start .right {
  top: calc(50% - 1.5em);
  right: 24px;
}
@media (max-width: 1024px) {
  #start .right {
    display: none;
  }
}
#start .moto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 24px);
  display: none;
  justify-content: center;
  align-items: end;
  z-index: 100;
  pointer-events: none;
  text-align: center;
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
  text-shadow: #000 1px 0 10px;
  font-family: "Manrope";
}
@media (max-width: 1280px) {
  #start .moto {
    font-size: 2em;
    height: calc(100% - 16px);
  }
}
@media (max-width: 900px) {
  #start .moto {
    font-size: 1.5em;
  }
}
#start .slider {
  z-index: 6;
  z-index: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  #start .slider {
    height: unset;
    aspect-ratio: 1.2/1;
  }
}
#start .slider .slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100vw;
  display: flex;
  justify-content: center;
  height: 100vh;
}
#start .slider .slide img {
  width: 100%;
  object-fit: cover;
  object-position: 0 82px;
}
@media (max-width: 1024px) {
  #start .slider .slide img {
    object-position: 0 56px;
    object-fit: cover;
  }
}
@media (max-width: 1024px) {
  #start .slider .slide {
    height: unset;
    aspect-ratio: 1.2/1;
  }
}

section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 24px 0 24px 0;
}
section iframe {
  width: 60%;
  aspect-ratio: 720/405;
  padding: 0;
  margin: 16px 0 8px 0;
}
@media (max-width: 1024px) {
  section iframe {
    width: 100%;
  }
}
section p {
  color: #fff;
  font-weight: 300;
  text-align: left;
  padding: 0 16px 0 16px;
  margin: 0;
  box-sizing: border-box;
  width: 60%;
  font-size: 1em;
  line-height: 1.8em;
}
@media (max-width: 1024px) {
  section p {
    width: 100%;
  }
}
section p a {
  color: #121212;
  text-decoration: underline;
}
section p.quote {
  /*&:before {
    content: "\00ab";
    font-family: serif;
    margin-right:.1em;

    color: #121212;
    font-size: 2em;
    line-height: 1;
    text-align: center;
    }
  &:after {
      content: "\00bb";
      font-family: serif;

      color: #121212;
      font-size: 2em;
      line-height: 1;
      text-align: center;
      margin-left:.1em;
      }*/
}
section img {
  width: 80%;
  height: auto;
  padding: 0;
  margin: 16px 0 16px 0;
}
@media (max-width: 1024px) {
  section img {
    width: 100%;
  }
}
section h2 {
  font-family: "Manrope";
  font-size: 1.8em;
  padding: 0 16px 0px 16px;
  margin: 0;
  color: #fff;
  line-height: 1.3em;
  width: 80%;
  text-align: left;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  section h2 {
    width: 100%;
    font-size: 1.5em;
  }
}

#video {
  background-color: #e7e9e3;
}
#video h2, #video p {
  color: #121212;
  width: 60%;
}
@media (max-width: 1024px) {
  #video h2, #video p {
    width: calc(100% - 16px);
  }
}

#features {
  background-color: #ffffff;
  border-top: 3px #e7e9e3 solid;
  color: #121212;
}
#features p, #features h2 {
  color: #121212;
  width: 60%;
}
@media (max-width: 1024px) {
  #features p, #features h2 {
    width: calc(100% - 16px);
  }
}
#features .features_container {
  margin: 8px 0 0 0;
  width: 60%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1280px) {
  #features .features_container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  #features .features_container {
    width: calc(100% - 32px);
  }
}
#features .features_container .feature {
  position: relative;
  overflow: hidden;
  background-color: #e7e9e3;
  padding: 24px 16px 24px calc(4em + 32px);
  box-sizing: border-box;
  border-radius: 0.4em;
}
@media (max-width: 900px) {
  #features .features_container .feature {
    padding: 24px 16px 16px 16px;
  }
}
#features .features_container .feature p, #features .features_container .feature h3 {
  padding: 0;
  margin: 0;
}
#features .features_container .feature p {
  width: 100%;
  padding: 12px 0 0 0;
  box-sizing: border-box;
}
#features .features_container .feature .icon2 {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 2em;
  width: 4em;
  aspect-ratio: 1/1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 2.4em;
}
@media (max-width: 900px) {
  #features .features_container .feature .icon2 {
    left: unset;
    right: 16px;
    width: 2em;
    border-radius: 1em;
    background-size: 1.2em;
  }
}
#features a.rider_link {
  color: #121212;
  display: block;
  margin: 14px 0 0px 0;
  background-color: #fff;
  line-height: 1em;
  font-weight: 700;
  padding: 16px 56px 16px 24px;
  border-radius: 0.4em;
  text-decoration: underline;
  background-repeat: no-repeat;
  background-image: url("/images/mic.svg");
  background-position: calc(100% - 16px) center;
  background-size: 2em;
}
#features .icecream {
  background-image: url("/images/skull6.svg");
  background-color: #fff;
}
#features .tie {
  background-image: url("/images/skull1.svg");
  background-color: #fff;
}
#features .star {
  background-image: url("/images/skull3.svg");
  background-color: #fff;
}
#features .mixer {
  background-image: url("/images/skull2.svg");
  background-color: #fff;
}
#features .dance {
  background-image: url("/images/skull4.svg");
  background-color: #fff;
}
#features .trio {
  background-image: url("/images/skull5.svg");
  background-color: #fff;
}

#photo {
  background-color: #fff;
  padding: 16px 0 24px 0;
  color: #fff;
  line-height: 0;
  margin: 0 auto 0 auto;
  width: 60%;
}
@media (max-width: 1024px) {
  #photo {
    width: calc(100% - 24px);
    padding: 0px 0 24px 0;
  }
}
#photo p {
  color: #121212;
}
#photo .gallery {
  color: #fff;
  margin: 0;
  margin: 16px 0 0 0;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  background-color: #fff;
  border-radius: 0.2em;
  background-image: url("/images/cover3.webp");
  background-size: contain;
}
@media (max-width: 1024px) {
  #photo .gallery {
    padding: 20px;
  }
}
#photo .gallery img {
  aspect-ratio: 1/1;
  width: 100%;
  padding: 0;
  margin: 0;
  object-fit: cover;
  border-radius: 0.1em;
  opacity: 0.9;
}
#photo a.insta_link {
  color: #121212;
  display: block;
  margin: 14px 0 0px 0;
  background-color: #ffffff;
  text-decoration: underline;
  line-height: 1em;
  font-weight: 700;
  padding: 16px 56px 16px 16px;
  border-radius: 0.4em;
  background-repeat: no-repeat;
  background-image: url("/images/insta_link.svg");
  background-position: calc(100% - 16px) center;
  background-size: 2em;
}

#repertoire {
  background-color: #ffffff;
  border-top: 3px #e7e9e3 solid;
}
#repertoire p, #repertoire h2 {
  color: #121212;
  width: 60%;
}
@media (max-width: 1024px) {
  #repertoire p, #repertoire h2 {
    width: calc(100% - 16px);
  }
}
#repertoire ul.columns {
  background-color: #e7e9e3;
  list-style: none;
  font-weight: 300;
  font-size: 1em;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 60%;
  padding: 12px 16px 12px 16px;
  box-sizing: border-box;
  border-radius: 0.4em;
  margin: 8px 0 0 0;
}
@media (max-width: 1024px) {
  #repertoire ul.columns {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
}
#repertoire ul.columns li {
  padding: 0;
  line-height: 2em;
  margin: 0 0 8px 0;
}
#repertoire ul.columns li:hover span.emoji {
  filter: saturate(1);
}
#repertoire ul.columns li span.emoji {
  filter: saturate(1);
  display: inline-block;
  height: 2em;
  background-color: #fff;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 1em;
  margin-right: 3px;
}
#repertoire img {
  width: 60%;
  border-radius: 0.4em;
  box-sizing: border-box;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #repertoire img {
    width: calc(100% - 32px);
  }
}

footer {
  background-color: #121212;
  text-align: center;
  color: #fff;
  padding: 24px 0 32px 0;
  font-weight: 700;
  font-size: 1em;
  line-height: 2em;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer .social {
  display: flex;
  margin: 0 0 24px 0;
  justify-content: center;
  height: 40px;
  box-sizing: border-box;
  gap: 16px;
}
footer .social a {
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
}
footer .social img {
  height: 100%;
  aspect-ratio: 1/1;
}

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