@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  font-size: 5.31vw;
}
:root {
  --brandColor: #802a8f;
  --darkColor: #2d2d2d;
  --lightgray: #2d2d2db2;
  --lightpink: #ffacc2;
  --titleColor: #eb88a3;
  --lightyellow: #fdfaed;
  --white: #fffffe;
  --graycolor: #5c575e;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.title {
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--titleColor);
  line-height: 120%;
}
.sub-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brandColor);
  line-height: 120%;
}
.container-wrapper {
  width: 100%;
  padding: 0 1.09rem;
}
.hide-sm {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .video-container__iframe {
    height: 7rem;
    width: 100%;
  }
}
.video-container__iframe {
  height: 11rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 2.76vw;
  }
  .title {
    font-size: 0.3rem;
  }
  .sub-title {
    font-size: 0.75rem;
    line-height: 120%;
  }
  .container-wrapper {
    padding: 0 1.88rem;
  }
  .hide-md {
    display: none !important;
  }
  .hide-sm {
    display: flex !important;
  }
}
