/* Header */
header {
  position: sticky;
  top: 12px;
  z-index: 1001;
}
nav {
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  border-radius: 20px;
  border: solid var(--black-10) 1px;
  background-color: var(--white-85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
nav > div {
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
nav > div:first-child {
  justify-content: start;
}
nav > div:last-child {
  justify-content: end;
}
nav menu {
  display: flex;
  /* padding: 4px 0px; */
}
nav menu a {
  padding: 12px 16px;
  margin: 0 4px;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: 0.2s background;
  line-height: 1rem;
  position: relative;
}

nav menu a:hover {
  background-color: var(--black-04);
}
nav menu hr {
  border-color: var(--black-10);
  border-style: solid;
  border-left: none;
  border-width: 1px;
  padding: 8px 0;
}

/* Mobile Menu */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

#mobileMenu.active {
  opacity: 1;
  visibility: visible;
}
/* UI */
.ui {
  display: flex;
  height: 80vh;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.ui div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 1rem;
  border: solid 1px var(--black-05);
  background: var(--white);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.05);
}
.ui h1 {
  font-size: 3rem;
}
.ui textarea {
  font-family: "PP Editorial";
  font-size: 3rem;
  outline: none;
  border: none;
  resize: none;
  background: transparent;
}
.ui img {
  width: auto;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  height: 87vh;
  height: 87svh;
  max-height: 1200px;
  position: relative;
}
.hero h1 {
  width: 72%;
  margin: auto;
  text-align: center;
  animation: hero 2s;
}
@keyframes hero {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero h1 div {
  display: inline-block;
  height: 1em;
  width: 4px;
  background-color: var(--primary);
  vertical-align: text-top;
  animation: cursor 1.5s infinite cubic-bezier(0.79, 0.14, 0.15, 0.86);
  border-radius: 1px;
  margin-left: -0.5rem;
}
@keyframes cursor {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hero-blog-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  background-color: var(--black-50);
  color: var(--white);
  gap: 0.5rem;
  transition: 0.2s;
}
.hero-blog-banner:hover {
  background-color: var(--black-60);
  scale: 1.02;
}
.hero-blog-banner img {
  height: 1em;
  transform-origin: top;
}
.hero-blog-banner:hover img {
  animation: bell 1.1s;
}

@keyframes bell {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Bento */
.bento {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.bento > div {
  display: flex;
  flex-direction: column;
  background-color: var(--black-02);
  outline: solid 1px var(--black-05);
  border-radius: 12px;
  flex-shrink: 1;
  flex-grow: 1;
  padding: 4rem 0;
  align-items: center;
  justify-content: center;
}
.bento .w-40 {
  width: calc(40% - 0.5rem);
}
.bento .w-60 {
  width: calc(60% - 0.5rem);
}
.bento .w-50 {
  width: calc(50% - 0.5rem);
}
.bento .w-100 {
  width: 100%;
}
.bento p,
.bento h4,
.bento h5,
.bento h6 {
  width: 80%;
  text-align: center;
}
.bento p {
  color: var(--black-60);
}
.bento h4 {
  font-weight: 600;
  font-size: 4rem;
  color: var(--black-80);
  margin: 0;
}
.bento h5 {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--black-80);
  margin: 0;
}
.bento h6 {
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--black-80);
  margin: 0;
}
.bento img {
  align-self: center;
  margin-top: 1rem;
  max-width: calc(100% - 2rem);
}
.bento a {
  color: var(--primary);
  text-decoration: none;
}
.bento .marquee {
  padding: 0;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}
.bento .marquee p {
  font-size: 1.25rem;
  color: var(--black-50);
  width: unset;
}
.bento .marquee swiper-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 3.5rem;
  margin: 0;
  padding: 0 1rem;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  border-radius: 100px;
  border: solid 1px var(--black-05);
}
.bento .marquee swiper-container::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(249, 249, 249, 80%) 2%,
    rgba(249, 249, 249, 0) 40%,
    rgba(249, 249, 249, 0) 60%,
    rgba(249, 249, 249, 80%) 98%
  );
  z-index: 10;
}

.bento .marquee swiper-slide {
  padding: 0.4rem 0rem;
  height: unset;
}
.bento .marquee swiper-slide.swiper-slide-prev p,
.bento .marquee swiper-slide.swiper-slide-next p {
  filter: blur(3px);
  scale: 0.95;
  transform-origin: center;
}
.bento .marquee swiper-slide.swiper-slide-prev p {
  /* color: #ff85a5; */
}
.bento .marquee swiper-slide.swiper-slide-next p {
  /* color: #ef5949; */
}
.bento .marquee swiper-slide p {
  text-align: center;
  color: var(--black);
  transition: 0.5s;
  font-weight: bold;
}
.bento .students {
  background-image: url("/assets/img/students.hash-d6baae58.png");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8rem 0 1.5rem;
  align-items: start;
}
.bento .students > * {
  width: 60%;
  margin-left: 2rem;
  text-align: left;
}
/* Platforms */
.platforms > div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.platforms > h2 {
  width: 60%;
}
.platforms > p {
  color: var(--black-50);
  width: 60%;
  margin-bottom: 2.5rem;
}
.platforms .lecturer {
  position: relative;
  grid-area: 1 / 1 / 3 / 2;
}
.platforms .desktop {
  position: relative;
  grid-area: 1 / 2 / 2 / 3;
}
.platforms .mobile {
  position: relative;
  grid-area: 2 / 2 / 3 / 3;
}
.platforms .tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  outline: solid 1px var(--black-05);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
}
.platforms img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Curriculum */
.curriculum > h2 {
  width: 60%;
}
.curriculum > p {
  color: var(--black-60);
  width: 60%;
  margin-bottom: 2.5rem;
}
.curriculum object {
  width: 100%;
}
.curriculum object.mobile {
  display: none;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.features > div {
  display: flex;
  flex-direction: column;
  background-color: var(--black-02);
  border-radius: 2rem;
  height: 80vh;
  height: 80svh;
  max-height: 1200px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.features > div > h2 {
  width: 60%;
}
.features > div > p {
  color: var(--black-60);
  width: 60%;
  margin-bottom: 1rem;
}
.features > div > object {
  width: 100%;
}
.features > div > object.mobile {
  display: none;
}

/* Quote */
.quote swiper-container {
  width: 100%;
  --swiper-theme-color: var(--primary);
}
.quote .testimonial {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.quote img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 999px;
  flex-shrink: 0;
}
.quote blockquote {
  font-size: 2rem;
  font-family: "PP Editorial";
}
.quote p {
  color: var(--black-60);
}
.testimonials-carousel swiper-container {
  --swiper-theme-color: #000;
  --swiper-pagination-color: #000;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bottom: 0.5rem;
}
.testimonials-carousel swiper-slide {
  display: flex;
  height: auto;
  text-align: left;
  padding-bottom: 3rem;
}
.testimonials-carousel swiper-slide > div {
  width: 100%;
}

.clients swiper-container {
  display: flex;
  gap: 2rem;
}
.clients swiper-slide {
  width: 15%;
  max-width: 150px;
  /* opacity: 0.5; */
}
.clients swiper-slide img {
  width: 100%;
  aspect-ratio: 2.5/1;
  object-fit: contain;
  filter: saturate(0);
}
/* Pricing */
/* .pricing p {
  color: var(--black-50);
}
.pricing > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem 0 1rem;
}
.pricing > div > div {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 13.75rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: var(--black-02);
  border: solid 1px var(--black-05);
  border-radius: 1.5rem;
}
.pricing > div > div.primary {
  position: relative;
  background: var(--black-05);
  box-shadow:
    0px 27px 107px 0px rgba(0, 0, 0, 0.06),
    0px 11.28px 44.702px 0px rgba(0, 0, 0, 0.04),
    0px 6.031px 23.9px 0px rgba(0, 0, 0, 0.04),
    0px 3.381px 13.398px 0px rgba(0, 0, 0, 0.03),
    0px 1.796px 7.116px 0px rgba(0, 0, 0, 0.02),
    0px 0.747px 2.961px 0px rgba(0, 0, 0, 0.02);
}
.pricing > div > div.primary::after {
  content: "Popular";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  color: var(--white);
  background: var(--black);
}
.pricing > div > div.addons {
  background: none;
  border: none;
}
.pricing > div > div.addons a.btn {
  background: var(--black-05);
  border: solid 1px var(--black-05);
  color: var(--black);
  margin-top: 1rem;
}
.pricing > div > div.addons ul li::before {
  content: url("/assets/img/addon.hash-fb84d90f.svg");
}
.pricing > div > div h3 {
  font-family: "PP Editorial";
  font-size: 2rem;
}
.pricing > div > div hr {
  width: 100%;
  margin: 1.25rem 0;
}

.pricing > div > div ul {
  /* list-style-image: url("/assets/img/check.hash-658b67c9.svg"); */
  padding: 0;
  margin: 0 0 2.5rem;
}
.pricing > div > div ul p {
  margin: 0 0 1rem 0;
}

.pricing > div > div li {
  display: flex;
  margin: 1rem 0;
  gap: 0.5rem;
}
.pricing > div > div li p {
  color: inherit;
  margin: 0;
  padding: 0;
}
.pricing > div > div li:first-of-type {
  margin-top: 0;
}
.pricing > div > div li:last-of-type {
  margin-bottom: 0;
}
.pricing > div > div li::before {
  content: url("/assets/img/check.hash-658b67c9.svg");
  font-size: 1em;
  height: 1em;
}

.pricing > div > div a.btn {
  margin-top: auto;
} */
.popup iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.popup.addons > div > div {
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  align-items: stretch;
  border-radius: 1.5rem;
  border: solid 1px var(--black-05);
  background: var(--black-02);
  margin-bottom: 1rem;
}
.popup.addons > div > div h5 {
  font-size: 1.25rem;
  font-weight: 700;
}
.popup.addons > div > div p {
  color: var(--black-50);
}
.popup.addons .prices {
  display: flex;
  flex-shrink: 0;
}
.popup.addons .prices > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-left: solid 1px var(--black-10);
  padding-left: 1.5rem;
  margin-left: 1.5rem;
}
.popup.addons .prices p {
  color: var(--black);
}
.popup.addons .prices small {
  color: var(--black-50);
}
/* Mission */
.mission div {
  width: 60%;
  text-align: center;
  margin: auto;
}
.mission p {
  color: var(--black-60);
}
.mission img {
  max-width: 100%;
}
/* Blog Banner */
.blog-banner {
  background-color: var(--black-02);
  border: solid 1px var(--black-05);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  text-decoration: none;
}
.blog-banner .cards {
  position: relative;
  width: 24rem;
  height: 12rem;
}
.blog-banner .cards img {
  position: absolute;
  top: 0rem;
  left: 0;
  object-fit: cover;
  transition: 0.5s;
  user-select: none;
}
.blog-banner .cards img:first-child {
  top: -1rem;
  left: -2rem;
}
.blog-banner .cards img:last-child {
  top: 1rem;
  left: 2rem;
}
.blog-banner:hover .cards img:first-child {
  transform: scale(1.01) translate(-0.5rem, -1.5rem);
}
.blog-banner:hover .cards img:last-child {
  transform: scale(1.01) translate(0.5rem, -0.5rem);
}
.blog-banner p {
  color: var(--black-60);
}
/* Team */
.team > h2 {
  width: 60%;
  margin-bottom: 3rem;
}
.team > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
  column-gap: 1rem;
}

.team img {
  width: 100%;
  border-radius: 0.25rem;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 0.25rem;
}
.team > div > div p:last-child {
  color: var(--black-60);
}
.migros {
  display: flex;
  gap: 2rem;
}
.migros > div {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--black-02);
  border: solid 1px var(--black-05);
  border-radius: 1rem;
}

/* Legal */
.legal {
  max-width: 800px;
}
.legal a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.2s;
}
.legal a:hover {
  opacity: 0.5;
}

/* Blog */
.blog h1 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: 3rem;
}
.blog img {
  max-width: 100%;
  border-radius: 12px;
  aspect-ratio: 2/1;
  object-fit: cover;
  outline: solid 1px transparent;
  transition: 0.5s;
  margin-bottom: 0.5rem;
}
.blog a {
  text-decoration: none;
  position: relative;
  padding: 0.5rem;
  padding-bottom: 1rem;
  border-radius: 1.25rem;
  margin: -0.5rem;
  transition: 0.5s;
  border: solid 1px transparent;
}
.blog a:hover {
  background-color: var(--black-02);
  scale: 1.01;
}
.blog a:hover > img {
  outline: solid 1px var(--black-05);
}
.blog h2 {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.blog h3 {
  font-family: "PP Editorial";
  margin-top: 0.25rem;
  font-size: 1.125rem;
  transition: color 0.2s;
}
.blog small {
  color: var(--black-60);
}
.blog .gallery {
  display: grid;
  gap: 1.5rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 10rem;
}
.blog .gallery > div {
  flex: 1;
}
.blog .gallery > a.highlight {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}
.blog .gallery > a.highlight h3 {
  font-size: 1.5rem;
}
.blog .gallery img {
  width: 100%;
}
.blog .featured {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--white);
  color: var(--black);
  padding: 0.25rem 0.75rem;
  font-size: 0.675rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 12px;
}

.blog .tag-filter {
  margin-bottom: 4rem;
  display: flex;
  gap: 0.5em;
}
.blog .tag-filter button {
  padding: 0.75em 1.5em;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  color: rgb(0, 0, 0, 0.6);
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
}
.blog .tag-filter button:hover {
  scale: 1.05;
}
.blog .tag-filter button.active {
  background: rgba(0, 188, 31, 0.1);
  color: rgba(0, 188, 31, 1);
}
/* .blog .tag-filter button:nth-child(2) {
  background: rgba(61, 103, 255, 0.1);
  color: rgba(61, 103, 255, 1);
}
.blog .tag-filter button:nth-child(2).active {
  background: rgba(61, 103, 255, 1);
  color: #fff;
}

.blog .tag-filter button:nth-child(3) {
  background: rgba(128, 0, 255, 0.1);
  color: rgba(128, 0, 255);
}
.blog .tag-filter button:nth-child(3).active {
  background: rgba(128, 0, 255);
  color: #fff;
} */

/* Blog Posts */
.post {
  margin: 3rem auto 10rem;
  max-width: 700px;
  padding: 0 1rem;
}
.post * {
  margin: 1rem 0;
  hyphens: auto;
  word-break: break-word;
}
.post h1 {
  font-size: 2.5rem;
}
.post h2 {
  font-family: inherit;
  font-size: 2rem;
  margin-top: 2.5rem;
  font-weight: bold;
}
.post h3 {
  font-family: inherit;
  font-size: 1.25rem;
  margin-top: 2.5rem;
  font-weight: bold;
}
.post h4 {
  font-family: inherit;
  font-size: 1.5rem;
  margin-top: 2.5rem;
  font-weight: bold;
}
.post h5 {
  font-family: inherit;
  font-size: 1.25rem;
  margin-top: 2.5rem;
  font-weight: bold;
}
.post h6 {
  font-family: inherit;
  font-size: 1rem;
  margin-top: 2.5rem;
  font-weight: bold;
}

.post p {
  line-height: 1.5;
}
.post hr {
  margin: 4rem 0;
}
.post a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.2s;
}
.post a:hover {
  opacity: 0.5;
}
.post img {
  max-width: 100%;
  border-radius: 4px;
  margin: 0;
}
.post video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  margin: 0;
  background-color: var(--black-05);
}
.post em {
  color: var(--black-60);
}
.post tr {
  display: flex;
  margin: 0;
}
.post td {
  border: solid 1px var(--black-10);
  background: var(--black-02);
  padding: 1rem 1rem;
  margin: 0.25rem;
  width: 100%;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-align: center;
}
.post .date {
  font-weight: 600;
  color: var(--black-50);
  font-size: 0.75rem;
}
.post-full img {
  width: 100%;
  height: 80vh;
  height: 80svh;
  min-height: 400px;
  margin-top: -76px;
  object-fit: cover;
}
/* Footer */
footer {
  background-color: var(--black-04);
  color: var(--black);
  padding-top: 8rem;
}
footer hr {
  border-color: var(--black-10);
}
footer section > div {
  display: flex;
  gap: 2rem;
}
footer section > div p {
  color: var(--black);
}
footer section > div a {
  text-decoration: none;
  color: var(--black);
}
footer a.btn {
  border: solid 1px var(--black);
  display: inline-block;
  margin-top: 0.75rem;
}
footer .mission {
  width: 100%;
  margin-bottom: 8rem;
  text-align: center;
  color: var(--black);
}
footer .actions {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 120px));
  gap: 4rem;
}
footer .actions ul > li {
  margin-bottom: 0.25rem;
}

footer .actions p {
  color: var(--black-50);
  /* width: 60%; */
}
footer .actions a:hover {
  color: var(--black-50);
  /* width: 60%; */
}

footer .actions form > div {
  display: flex;
  gap: 0.5rem;
}
footer .actions form > div > input[type="image"] {
  width: unset;
  padding: 0 10px;
}
footer .actions form .response.success {
  color: #45c95a;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
footer .actions form .response.error {
  color: #cf3434;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

footer .stores {
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0;
}
footer .stores > a,
footer .stores > div > a {
  height: 2.5rem;
  width: auto;
  display: flex;
  align-items: center;
}
footer .stores > a > img,
footer .stores > div > a > img {
  height: 100%;
}

footer .stores > a::after {
  content: none !important;
}
footer .footnote {
  padding-top: 0.75rem;
  padding-bottom: 2.5rem;
  align-items: center;
}
footer .footnote * {
  font-size: 0.875rem;
}
footer .footnote img {
  margin-left: -0.75rem;
}
footer .footnote .name {
  font-weight: 600;
}
footer .footnote .made-in {
  color: var(--black-50);
}
footer .footnote .copyright {
  color: var(--black-50);
  float: right;
  margin-left: auto;
}
@media only screen and (max-width: 1600px) {
  .team > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1240px) {
  .hero h1 {
    width: 86%;
  }
  .col-10 {
    width: 86%;
  }
}
@media only screen and (max-width: 900px) {
  nav div:has(> menu) {
    display: none;
  }
  nav div:last-of-type {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .bento .marquee {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }
  .bento .marquee swiper-container {
    height: 3rem;
  }
  .bento .marquee swiper-slide p {
    text-align: center;
  }

  .curriculum > h2,
  .curriculum > p,
  .platforms > h2,
  .platforms > p,
  .team > h2 {
    width: 100%;
  }
  .features > div > h2,
  .features > div > p {
    width: 80%;
  }
  .blog-banner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .blog-banner div:last-child {
    margin-top: 4rem;
    margin-bottom: -4rem;
  }
  .quote {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }
  .quote img {
    width: 6rem;
    height: 6rem;
  }
  .popup.addons > div > div {
    flex-direction: column;
    gap: 2rem;
  }
  .popup.addons .prices {
    border-top: solid 1px var(--black-10);
  }
  .popup.addons .prices > div {
    padding-top: 1rem;
  }
  .popup.addons .prices > div:first-of-type {
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
  .mission div {
    width: 100%;
  }
  .team > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .team img {
    aspect-ratio: 5/4;
  }
  .migros > div {
    flex-direction: column;
  }
  .blog .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .mission {
    width: 100%;
  }
  footer .actions p {
    width: 100%;
  }
  footer a.btn {
    display: block;
  }
}

/* Mobile */
@media only screen and (max-width: 500px) {
  .col-12 {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
  .col-10 {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
  .hero h1 {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.25rem;
  }

  /* header nav {
    background-color: var(--white-50);
    border: solid var(--black-05) 1px;
    padding: 8px;
    padding-left: 16px;
    width: unset;
    position: relative;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  } */
  /* nav > div:first-child {
    flex-basis: 0;
  } */
  .popup > div {
    height: 100%;
    width: 100%;
    min-width: none;
    min-height: 0;
    padding: 1rem;
    margin: 0;
    border-radius: 0;
    border: none;
    max-height: unset;
  }
  .bento h4 {
    font-size: 2.5rem;
  }
  .bento h6 {
    font-size: 1.5rem;
  }
  .bento .w-50 {
    width: 100%;
    padding: 2rem 0;
  }
  .bento .students {
    align-items: center;
  }
  .bento .students > * {
    width: 80%;
    margin: 0;
  }
  .platforms > div {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .platforms .lecturer,
  .platforms .desktop,
  .platforms .mobile {
    grid-area: unset;
    height: 13rem;
  }
  .curriculum object {
    display: none;
  }
  .curriculum object.mobile {
    display: block;
  }
  .features {
    margin-top: 10rem;
    margin-bottom: 10rem;
    gap: 2rem;
  }
  .features > div h2,
  .features > div p {
    width: auto;
    padding: 0 1rem;
  }
  .features > div > object {
    display: none;
  }
  .features > div > object.mobile {
    display: block;
    max-height: 50%;
  }
  .clients swiper-slide {
    width: calc(50% - 16px);
  }
  .team > div {
    grid-template-columns: repeat(1, 1fr);
  }
  .team img {
    aspect-ratio: 5/4;
  }
  .quote .testimonial {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
  .quote img {
    width: 5rem;
    height: 5rem;
  }
  .quote blockquote {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .migros > div {
    padding: 1rem;
  }
  .blog .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog h2 {
    font-size: 1.125rem;
  }
  footer .actions {
    flex-direction: column;
  }
}
