@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kumbh Sans', sans-serif;
}
h1 {
  font-size: 2.3em;
  margin-bottom: 20px;
}
h4 {
  font-size: 16px;
  font-weight: 400;
  color: #4a4b5e;
  transition: .2s;
}
h4:hover {
  color: #f47c57;
}
p {
  font-size: 12px;
  color: #787887;
}
body {
  min-height: 100vh;
  background-image: linear-gradient(to bottom, #af67e9, #6565e7);
  display: flex;
  justify-content: center;
  align-items: center;
}
main {
  background-color: #fff;
  width: 920px;
  height: 510px;
  border-radius: 1.5em;
  display: grid;
  grid-template-columns: 43% 57%;
  grid-template-rows: 100%;
  
}
.first-section {
  background-image: url(../images/bg-pattern-desktop.svg);
  background-size: 250%;
  background-repeat: no-repeat;
  background-position: 103% 67%;
  display: flex;
  align-items: center;
  position: relative;
}
.first-section .box-image {
  position: absolute;
  left: -95px;
  top: 40%;
}
.first-section .first-content {
  overflow: hidden;
}
.first-section .first-content picture img {
  width: 450px;
  margin-left: -80px;
  transition: .4s;
  user-select: none;
}
.second-section {
  padding: 70px;
}
.second-section .second-content>div {
  border-bottom: 1px solid hsl(240, 5%, 91%);
}
.second-section .second-content>div>div{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

/* JAVASCRIPT */
.hidden {
  display: none!important;
}
.image-rotate {
  transition: .3s;
  transform: rotate(180deg)!important;
}
.active {
  font-weight: 700;
  transition: .3s;
}
