html,
body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  background-color: #f6f6f6;
}

#parent-container {
  display: flex;
  overflow: hidden;
}

/* LEFT DESIGN */

#left-col {
  width: 45vw;
  height: 100vh;
  position: relative;
  background: #003da5;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

#left-vector {
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 50;
}

#woman {
  position: absolute;
  width: 70%;
  right: -18%;
  bottom: 0;
  z-index: 60;
}

#right-vector {
  position: absolute;
  width: 55%;
  height: 60%;
  top: 2rem;
  right: 0;
  z-index: 50;
}

/* RIGHT DESIGN */

#right-col {
  width: 55%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#info-content {
  position: absolute;
  width: 45%;
  top: 30%;
  padding: 0 6px;
  z-index: 50;
}

h2 {
  font-family: "Outfit";
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #003da5;
}

p {
  font-family: "Outfit";
  font-size: 15px;
  color: #003da5;
  margin-bottom: 25px;
  text-align: justify;
}

a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit";
  width: 80%;
  height: 56px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0px;
  border-radius: 20px;
  text-decoration: none;
  background: #97d700;
  color: #ffffff;
}

a:active {
  scale: 99%;
}

#logo-comfandi {
  position: absolute;
  width: 120px;
  top: 24px;
  right: 24px;
}

#arc {
  position: absolute;
  width: 350px;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 2500px) {
  #woman {
    position: absolute;
    width: 55%;
    right: -10%;
    bottom: 0;
    z-index: 60;
  }
}

@media only screen and (max-width: 1024px) {
  #parent-container {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    position: relative;
  }

  #left-col {
    display: none;
  }

  #right-col {
    width: 100%;
    height: 100%;
  }

  #info-content {
    top: 25%;
    width: 85%;
  }

  #right-vector {
    display: none;
  }

  #woman {
    display: none;
  }

  #arc {
    bottom: 0;
  }

  a {
    width: 100%;
  }
}
