html,
body,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: #1f2937;
}
.hero-section {
  display: flex;
}
.hero-section > div {
  width: 33.33vw;
}
.main-section {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-section h2 {
  font-size: clamp(2rem, 4vw, 5rem);
  text-align: right;
  line-height: clamp(2.2rem, 4vw, 5.2rem);
  font-family: "Playfair Display", serif;
}
.main-section h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.57rem);
  text-align: right;
  font-weight: 500;
  padding: 10px 0 0;
  line-height: clamp(1.28rem, 3vw, 1.6rem);
  font-family: "Playfair Display", serif;
}

.main-section p {
  font-size: clamp(0.85rem, 1.4vw, 1.12rem);
  text-align: right;
  margin: 0;
  padding: 10px 0;
  opacity: 0.8;
}
.top-section {
  display: flex;
  align-items: end;
  justify-content: end;
}
.top-section a {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 0 20px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}
.top-section a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.bottom-section {
  height: 33.33vw;
  position: relative;
  overflow: hidden;
}
.bottom-section::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 33.33vw;
  height: 33.33vw;
  background: #f04c47;
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.main-section-top {
  padding: 5%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f04c47;
  gap: 30px;
}
.logo {
  padding: 5%;
}
.logo img {
  width: 30%;
  min-width: 150px;
}

.influencer-section {
  display: flex;
  flex-direction: column;
}

.influencer-photo {
  background: #1f2937;
  position: relative;
  overflow: hidden;
}

.influencer-text {
  height: 33.33vw;
  background: linear-gradient(90deg, #5c0730 0%, #a4185c 40%, #f04c47 100%);
}
@media (min-aspect-ratio: 1/1) {
  .top-height {
    min-height: 40vw;
  }
}
@media (max-aspect-ratio: 1/1) {
  .top-height {
    min-height: 55vh;
  }
}
.influencer-text {
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  gap: 30px;
}
.influencer-text h2 {
  font-size: clamp(2rem, 3vw, 5rem);
  text-align: right;
  line-height: clamp(2.2rem, 3vw, 5.2rem);
  font-family: "Playfair Display", serif;
}

.influencer-text h3 {
  font-size: clamp(1rem, 2vw, 1.57rem);
  text-align: right;
  font-weight: 500;
  padding: 10px 0 0;
  line-height: clamp(1.2rem, 2vw, 1.7rem);
  font-family: "Playfair Display", serif;
}
.influencer-text p {
  font-size: clamp(0.85rem, 1.4vw, 1.12rem);
  text-align: right;
  margin: 0;
  padding: 10px 0;
  font-family: "Playfair Display", serif;
}
.teachus-link {
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 5% 0;
}
.teachus-link a {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;

  padding: 0 5px 0 20px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  gap: 10px;
}
.teachus-link a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.teachus-link a svg {
  fill: #fff;
  height: 1.25em;
  width: 1.25em;
}
.influencer-details {
  padding: 5%;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 40%,

    rgba(0, 0, 0, 0.8) 100%
  );
}
.influencer-details h2 {
  font-size: 22px;
}
.influencer-details h3 {
  font-size: 16px;
  font-weight: normal;
}
.influencer {
  position: absolute;
  flex: 1;
  display: flex;
  flex-direction: column;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.influencer.active {
  opacity: 1;
  pointer-events: auto;
}
.influencer-pic {
  flex: 1;
  overflow: hidden;
}
.influencer-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  position: absolute;
  right: 5%;
  top: 5%;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.carousel-dots span {
  width: 20px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots span.active {
  background: white;
  transform: scale(1.4);
}

.influencer-action {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  gap: 10px;
}
.influencer-action a {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;

  padding: 0 20px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.influencer-action a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.influencer-action a.highlight {
  background: #f04c47;
  border-color: #f04c47;
}
.wht-mks-different {
  display: flex;
  padding: 10% 5% 0;
  gap: 5%;
}
.wht-mks-different > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wht-mks-different > div img {
  margin-bottom: 5%;
}
.wht-mks-different h3 {
  font-size: clamp(1rem, 2vw, 1.57rem);
  text-align: center;

  padding: 10px 0 0;
  line-height: clamp(1.2rem, 2vw, 1.7rem);
}
.wht-mks-different p {
  font-size: 18px;
  text-align: center;
  margin: 0;
  padding: 10px;
}
.page-content {
  padding: 10%;
}
.page-content h2 {
  font-size: clamp(2rem, 3vw, 5rem);
  text-align: center;
  line-height: clamp(2.2rem, 3vw, 5.2rem);
  font-family: "Playfair Display", serif;
}
.page-content h4 {
  font-size: clamp(1rem, 2vw, 1.57rem);
  text-align: center;
  font-weight: 500;
  padding: 10px 0 0;
  line-height: clamp(1.2rem, 2vw, 1.7rem);
  font-family: "Playfair Display", serif;
}
footer {
  background: #212121;
  padding: 10%;
  color: #fff;
  text-align: center;
}

.influencer-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.influencer {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
}

.influencer.prev {
  transform: translateX(-100%);
  opacity: 1;
  z-index: 1;
}

.influencer.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.influencer.next {
  transform: translateX(100%);
  opacity: 1;
  z-index: 1;
}

.getstarted-button {
  display: flex;
  justify-content: flex-end;
  padding: 2.55% 0;
}
.getstarted-button a {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  background: #fff;

  padding: 0 0 0 40px;
  border-radius: 30px;
  cursor: pointer;
  color: #f04c47;
  text-decoration: none;
}
.getstarted-button a svg {
  fill: #f04c47;
}
.getstarted-button a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.hero-section {
  background: url(../images/apple-ipad.png) no-repeat 5% center;
  background-size: auto calc(90% - 230px);
}
.text-section {
  padding-top: 5vw;
}
@media (max-width: 1200px) {
  .influencer-details h3 {
    font-size: 14px;
  }
  .influencer-action a {
    font-size: 12px;
    height: 32px;
  }
  .wht-mks-different p {
    font-size: 14px;
  }
  .page-content {
    padding: 5%;
  }
  .wht-mks-different {
    padding: 5% 0 0;
  }
}
@media (max-width: 1200px) {
  .getstarted-button a {
    font-size: 18px;
  }
  .wht-mks-different {
    gap: 2.5%;
  }
  .wht-mks-different p {
    padding: 5px;
  }
}

@media (max-width: 750px) {
  .main-section {
    background: url(../images/apple-ipad.png) no-repeat center top;
    background-size: calc(100% - 20px) auto;
    padding-top: 30vh;
  }
  .hero-section {
    flex-direction: column;
    background: none;
  }
  .hero-section > div {
    width: 100%;
  }
  .top-section {
    position: absolute;
    right: 0;
    top: 0;
    padding: calc(5% + 10px) 5% 5%;
  }
  .top-section a {
    color: #f04c47;
    border: 1px solid #ddd;
  }
  .logo img {
    width: auto;
    height: 40px;
  }
  .text-section {
    padding: 0;
  }
  .bottom-section {
    display: none;
  }
  .main-section-top.top-height {
    min-height: 0;
    gap: 0;
  }
  .getstarted-button {
    padding-bottom: 0;
  }
  .main-section h2 {
    text-align: center;
    font-size: 60px;
    line-height: 1.1em;
  }
  .main-section h3 {
    text-align: center;
    font-size: 30px;
    line-height: 1.1em;
  }
  .main-section p {
    font-size: 16px;
    text-align: center;
  }
  .getstarted-button {
    justify-content: center;
  }
  .influencer {
    width: 90%;
  }
  .influencer-pic img {
    object-position: top;
  }
  .carousel-dots {
    left: 5%;
    right: auto;
  }
  .influencer-text h2,
  .influencer-text h3 {
    text-align: left;
  }
  .influencer-text {
    padding: 5%;
    height: auto;
  }
  .teachus-link {
    justify-content: start;
  }
  .teachus-link {
    padding: 10px 0 0;
  }
  .wht-mks-different {
    flex-direction: column;
    gap: 30px;
  }
  .wht-mks-different h3 {
    font-size: 18px;
  }
  .wht-mks-different > div {
    padding: 20px 0;
  }
}
@media (max-width: 500px) {
  .top-section a {
    font-size: 14px;
  }
  .main-section h2 {
    font-size: 40px;
  }
  .main-section h3 {
    font-size: 25px;
  }
  .main-section-top,
  .influencer-details,
  .influencer-text,
  .page-content {
    padding: 20px;
  }
}
.logo a {
  text-decoration: none;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 0 5% 5%;
}
.popup.show {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.3);
}
.popup-content {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  min-height: 50vh;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  position: relative;
  padding: 60px 20px 20px;
}

.popup.show .popup-content {
}

.close {
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  height: 40px;
  width: 40px;

  border-radius: 50%;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.close svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.popup-content h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: clamp(2rem, 3vw, 4rem);
  font-family: "Playfair Display", serif;
  padding-bottom: 10px;
}
.popup-content h3 {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.57rem);

  font-weight: 500;

  line-height: clamp(1.28rem, 3vw, 1.6rem);
  font-family: "Playfair Display", serif;
}
.popup-content p {
  text-align: center;
  width: 80%;
  margin: 10px auto;
  opacity: 0.8;
}
.Browse-button {
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}
.Browse-button a {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  padding: 0 5px 0 20px;
  text-decoration: none;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  background: #fff;
  min-width: 300px;
  justify-content: space-between;
  font-size: 18px;
}
.Browse-button a svg {
  height: 40px;
  width: 40px;
  fill: #000;
}
.Browse-button a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.popup-content {
  background: linear-gradient(45deg, #5c0730 0%, #a4185c 40%, #f04c47 100%);
  color: #fff;
  max-height: 100%;
  overflow: auto;
  overflow-x: hidden;
}
.advantage {
  display: flex;
  gap: 10px;
margin: 0 auto;
    justify-content: center;
   
}
.advantage h4 {
  font-size: 18px;
}
.advantage h5 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.advantage strong {
  display: block;
  font-weight: 600;
}
.advantage li {
  padding-bottom: 10px;
}
.advantage span {
  opacity: 0.7;
}
@media (max-width: 600px) {
  .advantage {
    gap: 10px;
  }
  .popup-content p{
    width: 100%;
  }
  .advantage li{
    padding-bottom: 5px;
  }
  .advantage {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  
}
