*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --text-color: #1e1f36;
  --text-secondary: #4b4c5f;
  --context-color: #787887;
  --orange: #f47b56;
  --border-color: #e8e8ea;
}

html {
  font-size: 62.5%;
  font-family: "Kumbh Sans", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: linear-gradient(to bottom, #b068e9, #6463e7);
  padding: 14.8rem 2.4rem;
}

main {
  margin-inline: auto;
  background: #fff;
  border-radius: 2.3rem;
  box-shadow: 0 5rem 5rem -2rem rgba(53, 18, 122, 0.5);
  position: relative;
  padding-top: 13.2rem;
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.img-box {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -25%);
  z-index: 3;
}

.main-img-wrapper {
  width: 23.7rem;
  position: relative;
}

.img-decoration {
  position: absolute;
  bottom: -3rem;
  left: 0;
}

.content {
  padding: 0 2.4rem 3rem;
}

h1 {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 4.4rem;
  text-align: center;
}

/* Accordion Start */
.question {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 0fr;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease-out;
  margin-bottom: 1.8rem;
}
.question.collapsed {
  grid-template-rows: auto 1fr;
  padding-bottom: 1.6rem;
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-right: 1rem;
  width: 100%;
  gap: 0.5rem;
  height: 3.6rem;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-secondary);
  text-align: start;
  transition: color 0.3s;
}
.collapsed .question-header {
  font-weight: bold;
}
.collapsed .question-header img {
  transform: rotate(180deg);
}
.question-header img {
  transition: transform 0.2s;
}
.question-header:hover {
  color: var(--orange);
}

.question-content {
  overflow: hidden;
}
.question-content p {
  margin-top: 0.3rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--context-color);
}

@media (min-width: 1100px) {
  body {
    padding: 0;
  }
  main {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 51rem;
  }
  .img-container {
    position: relative;
    transform: unset;
    left: 0;
    top: 0;
    width: 100%;
  }
  .main-img-wrapper {
    display: flex;
    align-items: center;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .img-main {
    transform: translateX(-8rem);
    z-index: 2;
    position: relative;
  }
  .img-decoration {
    bottom: -17rem;
    left: unset;
    right: 9.5rem;
    z-index: 1;
  }
  .img-box {
    display: block;
  }
  .content {
    height: 100%;
    padding: 0;
    padding-top: 6.5rem;
    padding-right: 9.5rem;
  }
  h1 {
    text-align: start;
  }
}/*# sourceMappingURL=style.css.map */