@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-ExtraBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Suit;
  src: url('../fonts/SUIT-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --maintxt: #000;
  --white: white;
  --primary: #e79896;
  --background: #f1f1f1;
  --placeholder: #e0e0e0;
  --subtxt: #999;
  --sub: #000;
  --line1: #eee;
  --blue: #5800dc;
  --sub1: #f4f8f7;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--maintxt);
  letter-spacing: -.05em;
  word-break: keep-all;
  text-wrap: balance;
  font-family: Suit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

h1 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 800;
  line-height: 1.3em;
}

h2 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 800;
  line-height: 1.3em;
}

h3 {
  color: var(--maintxt);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.3em;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 30;
  background-color: var(--white);
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.container.grid-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.horizontal {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-between {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical {
  flex-flow: column;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.vertical-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.gap-3em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.gap-05em {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
}

.grid-2 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.grid-2.gap-2em {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.grid-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.text {
  color: var(--maintxt);
  font-size: 1.25em;
  line-height: 1.3em;
}

.text-big {
  color: var(--maintxt);
  font-size: 1.5em;
  line-height: 1.3em;
}

.text-small {
  color: var(--maintxt);
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
}

.text-small.navtxt {
  justify-content: center;
  align-items: center;
  font-weight: 800;
}

.text-small.navtxt:hover, .text-small.navtxt.w--current, .text-small.colored {
  color: var(--primary);
}

.gutter-1em {
  width: 100%;
  height: 1em;
}

.gutter-2em {
  width: 100%;
  height: 2em;
}

.gutter-3em {
  width: 100%;
  height: 3em;
}

.gutter-4em {
  width: 100%;
  height: 4em;
}

.gutter-5em {
  width: 100%;
  height: 5em;
}

.section {
  padding-top: 7em;
  padding-bottom: 7em;
}

.vertical-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-right {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.horizontal-left {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.horizontal-right {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.horizontal-middle {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.horizontal-between-middle {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.horizontal-between-bottom {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.horizontal-bottom {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.section-nobtm {
  padding-top: 5em;
}

.section-big {
  padding-top: 11em;
  padding-bottom: 11em;
}

.section-big-nobtm {
  padding-top: 7em;
}

.slide {
  width: 100%;
  height: auto;
}

.link-block {
  color: #222;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
}

.whitetxt {
  color: #fff;
}

.en {
  font-family: Poppins;
  font-weight: 300;
}

.width100 {
  width: 100%;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.height100 {
  height: 100%;
}

.vertical-center-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.herotop {
  z-index: 2;
  width: 100%;
  height: 100dvh;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative;
}

.text-huge {
  font-size: 2em;
  line-height: 1.5em;
}

.btn {
  color: #051328;
  cursor: pointer;
  background-color: #e7e7e7;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  font-family: Poppins;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.swiper-content {
  background-color: var(--primary);
  text-align: left;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 3em;
  padding: 3em;
  position: relative;
  overflow: hidden;
}

.photobox {
  border-radius: 1em;
  width: 90%;
  max-width: 30em;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 12px #0003;
}

.navbar-button-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.viraltitle {
  color: var(--maintxt);
  text-align: center;
  text-transform: uppercase;
  margin-top: .1em;
  font-family: Sb Aggro;
  font-size: 5em;
  font-weight: 500;
  line-height: 1em;
}

.card {
  background-color: #fff;
  border-radius: 2em;
  width: 100%;
  padding: 2.5em;
}

.horizontal-left-middle {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gap-4em, .gap-5em {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
}

.horizontal-between-stretch {
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.vertical-left-between {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.vertical-left-center {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.horizontal-left-bottom {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.sugessbtn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.card1 {
  color: #fff;
  background-color: #5208b9;
  background-image: url('../images/section4-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.34%;
  height: 100%;
  padding: 1.5em;
  display: flex;
}

.horizontal-right-center {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo {
  width: auto;
  height: 2em;
}

.bold {
  font-weight: 800;
}

.box {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--background);
  border-radius: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2em;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.box.gap-1em {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}

.button {
  border: 1px solid var(--placeholder);
  color: var(--maintxt);
  text-align: center;
  white-space: nowrap;
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  height: 2em;
  padding: 0 1em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1em;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--white);
}

.button.big {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big:hover {
  background-color: var(--background);
  color: var(--primary);
}

.button.big1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.big2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label {
  color: var(--subtxt);
  background-color: #fff0;
  border-style: none;
  border-radius: 0;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
}

.button.label:hover {
  color: var(--maintxt);
}

.button.small {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-radius: 1em;
}

.button.small:hover {
  background-color: var(--background);
  color: var(--primary);
}

.button.small1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
}

.button.small1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.small2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
}

.button.small2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label1 {
  color: var(--primary);
  background-color: #fff0;
  border-style: none;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.button.label1:hover {
  color: var(--maintxt);
}

.button.big3 {
  background-color: var(--white);
  color: var(--subtxt);
  border-style: none;
  border-radius: 1em;
  width: 100%;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.big3:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle3 {
  background-color: var(--white);
  color: var(--subtxt);
  border-style: none;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle3:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle {
  background-color: var(--sub);
  color: var(--white);
  text-transform: uppercase;
  border-style: none;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle:hover {
  background-color: var(--background);
  color: var(--sub);
}

.button.middle1 {
  background-color: var(--background);
  color: var(--subtxt);
  border-style: none;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle1:hover {
  background-color: var(--placeholder);
  color: var(--maintxt);
}

.button.middle2 {
  background-color: var(--background);
  color: var(--primary);
  border-style: none;
  height: 3.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-weight: 800;
}

.button.middle2:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button.label2 {
  color: var(--maintxt);
  background-color: #fff0;
  border-style: none;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
}

.button.label2:hover {
  color: var(--subtxt);
}

.button.label3 {
  color: var(--white);
  background-color: #fff0;
  border-style: none;
  border-radius: 0;
  height: 1.5em;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.button.label3:hover {
  color: var(--subtxt);
}

.button.small3 {
  background-color: var(--white);
  color: var(--primary);
  border-style: none;
}

.button.small3:hover {
  background-color: var(--primary);
  color: var(--white);
}

.graytxt {
  color: var(--subtxt);
}

.gap-025em {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
}

.width33 {
  width: 33.3333%;
}

.width50 {
  width: 50%;
}

.openbtn {
  background-color: var(--placeholder);
  color: var(--white);
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  transition: background-color .2s;
  display: flex;
}

.openbtn:hover {
  background-color: var(--subtxt);
}

.sugessbtn-2 {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -.5em;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
}

.modal {
  z-index: 50;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.popuparea {
  z-index: 2;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: var(--white);
  border-radius: 2em;
  flex-flow: column;
  width: 100%;
  max-width: 30em;
  padding: 2em 1.5em;
  display: flex;
  position: relative;
}

.modalbg {
  z-index: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #00000040;
  position: absolute;
  inset: 0%;
}

.modal-image {
  width: 100%;
  height: auto;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 10em;
  padding-right: 10em;
}

.controller {
  z-index: 25;
  border-top: 1px solid var(--line1);
  background-color: #fff;
  padding-top: .75em;
  padding-bottom: 1em;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.controller-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.controller-box {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--subtxt);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: .75em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.controller-box.w--current {
  color: var(--primary);
}

.code-embed {
  width: 2em;
  height: 2em;
}

.gap-1-5em {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
}

.image-3 {
  width: 100%;
  height: auto;
}

.background-video {
  aspect-ratio: 16 / 9;
  border-radius: 1em;
  width: 100%;
  height: auto;
}

.section1 {
  background-image: linear-gradient(#fffc, #fffc), url('../images/pdt2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 7em;
  padding-bottom: 7em;
}

.footer {
  background-color: #000;
  flex-flow: column;
  padding-top: 7em;
  padding-bottom: 7em;
  display: flex;
}

.wrapdown {
  flex-flow: wrap;
  display: flex;
}

.image-4 {
  filter: invert();
  width: auto;
  height: 2em;
}

.div-block-3 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.footer-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  display: grid;
}

.slide-nav {
  z-index: 19;
  justify-content: flex-end;
  align-items: center;
  height: .5em;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 2em;
  left: auto;
  right: 0;
}

.image-7 {
  z-index: 1;
  width: 100%;
  height: auto;
  position: relative;
}

.div-block-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block-1._1 {
  align-items: flex-end;
}

.right-arrow-2 {
  z-index: 20;
  background-color: var(--sub);
  color: #fff;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: auto auto 2rem 0;
}

.right-arrow-2:hover {
  color: #de5b91;
}

.slider-container {
  background-color: #eee;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50em;
  display: flex;
  overflow: hidden;
}

.slide-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.mask {
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.slide-2 {
  width: 100%;
  height: 100%;
}

.image-5 {
  width: auto;
  height: .35em;
}

.slide-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-slider {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1120px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.left-arrow-2 {
  z-index: 20;
  border: 1px solid var(--sub);
  color: #b89c72;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: auto auto 4.25rem 0;
}

.left-arrow-2:hover {
  color: #de5b91;
}

.image-6 {
  filter: brightness(0%);
  width: auto;
  height: .35em;
}

.image-8 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-2 {
  aspect-ratio: 16 / 4;
  border-radius: 1em;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section3 {
  padding-top: 5em;
  padding-bottom: 7em;
}

.tabs-menu {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.section2 {
  padding-top: 7em;
}

.tab-link {
  background-color: var(--background);
  color: var(--maintxt);
  border-radius: 2em;
  padding: .5em 1.5em;
}

.tab-link.w--current {
  background-color: var(--sub);
  color: var(--white);
}

.text-block {
  z-index: 3;
  color: var(--white);
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1em;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.div-block-4 {
  z-index: 2;
  background-color: #0000004d;
  position: absolute;
  inset: 0%;
}

.section4 {
  background-color: var(--background);
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 13em;
  padding-bottom: 10em;
  display: flex;
}

.image-1 {
  width: auto;
  height: 3em;
}

.section5 {
  min-height: 80vh;
  padding-top: 10em;
  padding-bottom: 10em;
}

.container-1 {
  width: 90%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.devideline {
  background-color: var(--line1);
  width: 100%;
  height: 1px;
  margin-top: .5em;
  margin-bottom: .5em;
}

.hamburger {
  display: none;
}

.pc {
  display: block;
}

.sidebar {
  z-index: 50;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: #000000b3;
  flex-flow: column;
  display: none;
  position: fixed;
  inset: 0%;
}

.text-block-2 {
  background-color: var(--white);
  color: var(--maintxt);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  font-size: 2em;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  background-color: var(--background);
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
  flex-flow: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .container.grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .horizontal-between {
    flex-flow: column;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .horizontal-between-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .swiper-content {
    width: 100%;
    margin-bottom: 0;
  }

  .navbar-button-container {
    justify-content: space-between;
    align-items: flex-end;
    width: 3em;
    height: 2em;
  }

  .viraltitle {
    font-size: 3em;
  }

  .horizontal-between-stretch {
    flex-flow: column;
  }

  .card1 {
    width: 100%;
    height: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .button.middle1 {
    width: 100%;
  }

  .modal {
    justify-content: center;
    align-items: flex-end;
  }

  .popuparea {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    max-width: none;
  }

  .controller {
    display: block;
  }

  .div-block-3 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .slide-nav {
    flex-direction: column;
    width: 30px;
    height: 80px;
    bottom: 15px;
  }

  .image-7, .div-block-1 {
    width: 100%;
  }

  .slider-container {
    height: auto;
    padding-top: 8em;
  }

  .slide-center {
    height: auto;
  }

  .slide-content {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
  }

  .div-block-2 {
    aspect-ratio: 16 / 8;
  }

  .hamburger {
    flex-flow: column;
    justify-content: space-between;
    width: 3em;
    height: 1.5em;
    display: flex;
  }

  .pc {
    display: none;
  }

  .div-block-5 {
    background-color: var(--sub);
    width: 100%;
    height: 2px;
    padding: 0;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 12px;
  }

  .viraltitle {
    font-size: 2.5em;
  }

  .modal {
    overflow: hidden;
  }

  .slide-nav {
    margin-bottom: -10px;
    bottom: 20px;
  }

  .image-7 {
    align-self: center;
  }
}


@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Suit';
  src: url('../fonts/SUIT-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}