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

:root {
  /* text */
  --Very-dark-desaturated-blue: hsl(238, 29%, 16%);
  --Soft-red: hsl(14, 88%, 65%);

  /* background  */

  --Soft-violet: hsl(273, 75%, 66%);
  --Soft-blue: hsl(240, 73%, 65%);

  /* text2 */

  --Very-dark-grayish-blue: hsl(237, 12%, 33%);
  --Dark-grayish-blue: hsl(240, 6%, 50%);

  /* dividers  */

  --Light-grayish-blue: hsl(240, 5%, 91%);
}

body {
  font-family: "Kumbh Sans", sans-serif;
  background-image: linear-gradient(var(--Soft-violet), var(--Soft-blue));
  background-repeat: no-repeat;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.container {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 900px;
  display: flex;
  
  /* overflow: hidden; */
  gap: 2rem;
  width: 100%;
 
}


.card__img {
  background-image: url(./images/bg-pattern-desktop.svg);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  flex: 1;
  position: relative;
  
  padding-bottom: 0;
} 

.card__img__two{
  overflow: visible;
  position: absolute;
  top: 38%;
  left: -26%;
}

.img__one {
  width: 100%;
  position: absolute;
  left: -15%;
  top: 20%;
  
  
}

.img__two {
  width: 100%;
  z-index: 1;
  
  

}

/* card__text section */

.card__text {
  flex: 1;
  color: var(--Dark-grayish-blue);
  padding:5rem 5rem 5rem 3rem;
}

h1 {
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--Very-dark-grayish-blue);
}

.accordion__question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  border: none;
  background-color: transparent;
  font-family: "Kumbh Sans", sans-serif;
  color: var(--Very-dark-desaturated-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.accordion__question:hover{
  color: var(--Soft-red);
}

.accordion__question::after {
  content: "";
  background-image: url(./images/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  background-position: center center;
  transition: transform 500ms ease-in-out;
}

.accordion__question.open{
  font-weight: 700;
  color: black;
}

.accordion__question.open::after {
  transform: rotate(180deg);
}

.accordion__collapse{
  height: 0;
  overflow: hidden;
  
}

.accordion__collapse.open{
  height: auto;
}


.accordion__text {
  line-height: 1.4;

}



hr {
  margin: 0.5rem 0;
  color: var(--Very-dark-desaturated-blue);
}

