#home_section {
  position: relative;

  max-width: 1920px;
  margin-inline: auto;

  margin-bottom: 10%;
  min-height: 700px;
}

#home_section .overlay {
  width: 100vw;
  height: 840px;
  max-height: 840px;

  padding-top: 3.25rem;

  overflow: hidden;

  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: -100;
}

#home_section .overlay::before {
  content: "";
  height: 100%;
  width: 150%;
  background-color: var(--light-blue);
  transform: skewY(-2deg);

  position: absolute;
  bottom: -4rem;
  left: 0;
  z-index: -999;
}

#home_section .content {
  margin-inline: 7.375rem;
  width: calc(100% - (7.375rem * 2));
  max-width: 1920px;

  padding: 3rem calc(3rem + 1.75rem) 2rem 3rem;
  background-color: var(--purple);
  border-radius: 16px 16px 0 0;

  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;

  position: absolute;
  top: 1.375rem;
  z-index: 10;
}

#home_section .content::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--purple);
  transform: skewY(-3deg);
  border-radius: 16px;

  position: absolute;
  bottom: -9%;
  left: 0;
  z-index: -999;
}

#home_section .content .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;

  flex: 1.25;

  color: #fff;
  text-align: left;

  max-width: 720px;
}

#home_section .content .info h2 {
  font-size: 2.25rem;
  line-height: 2.875rem;
  letter-spacing: 0.36px;
  font-weight: 500;
  margin-bottom: 0;

  color: #fff;

  opacity: 0.75;
}

#home_section .content .info h1 {
  font-size: 4rem;
  line-height: 4.375rem;
  color: #fff;

  margin-bottom: 0.5rem;
}

#home_section .content .info p {
  font-family: "freight-sans-pro", sans-serif;
  font-weight: 300;

  line-height: 1.75rem;

  opacity: 0.75;
}

#home_section .content .info .bullet_list .item span {
  color: var(--light-blue);
}

#home_section .content .info .buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
}

#home_section .content .info button.button {
  background-color: #fff;
  border: 2px solid #fff;

  color: var(--purple);
  width: 290px;
  padding-block: 8px;

  margin-top: calc(2.25rem - 1.75rem);

  transition: border 0.3s;
}

#home_section .content .info button.button.invert {
  background-color: transparent;
  color: #fff;
}

#home_section .content .info button.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

#home_section .content .info button.button:hover {
  border: 2px solid #5b23b1;
  color: #5b23b1;
}

#home_section .content .form_container {
  margin-top: 4rem;
  padding: 2.375rem 3rem;
  background-color: #fff;
  border-radius: 12px;

  max-width: 530px;
  width: 100%;

  flex: 1;

  text-align: center;
  position: relative;
}

#home_section .content .form_container::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #fff;
  transform: skewY(-3deg);
  border-radius: 12px;

  position: absolute;
  top: -1rem;
  left: 0;
  z-index: -1;
}

#home_section .content .form_container .form_overlay {
  width: 100%;
  height: 100%;
  background-color: var(--light-blue);
  border-radius: 12px;

  position: absolute;
  right: -1.75rem;
  top: -1rem;
  z-index: -2;
}

#home_section .content .form_container .form_overlay::before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: var(--light-blue);
  transform: skewY(-3deg);
  border-radius: 12px;

  position: absolute;
  top: -1.75rem;
  left: 0;
  z-index: -2;
}

#home_section .content .form_container h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: var(--purple);
  max-width: 280px;

  margin-bottom: 2.375rem;
  margin-inline: auto;
}

#home_section .content .form_container .form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
#home_section .content .form_container .form button {
  padding: 0.75rem 2.25rem;
}

#home_section .content .form_container .form .fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;

  width: 100%;
}

#home_section .content .form_container .form .fields .field {
  display: grid;

  width: 100%;
}

#home_section .content .form_container .form .fields .name {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

#home_section .content .form_container .form .fields .field label {
  font-family: "freight-sans-pro", sans-serif;
  color: #212121;
  font-size: 1.125rem;
  text-align: left;
}

#home_section .content .form_container .form .fields .field input {
  flex: 1;

  outline: none;
  border-radius: 3px;
  border: 1px solid #b7b7b780;
  background-color: #f8f8f8;

  padding: 0.825rem 0.5rem;

  transition: transform 0.3s, background 0.3s;
}

#home_section .form_container .form .fields .field input:hover,
#home_section .form_container .form .fields .field input:focus {
  border: 3px solid var(--purple-hover);
  background-color: #fcfcfc;

  padding: calc(0.825rem - 2px) calc(0.5rem - 2px);

  transform: scale(102%);
}

#home_section .content .form_container .privacy_policy_terms {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #5c5c5c;

  margin-top: 1.75rem;
}

#home_section .content .form_container .privacy_policy_terms a {
  color: #5c5c5c;
}

#check_scanning_process {
  padding-block: 5rem 7.5rem;

  text-align: left;
}

#check_scanning_salesforce {
  padding-block: 7.5rem;

  position: relative;
}

#check_scanning_salesforce::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--soft-blue);
  transform: skewY(-2deg);

  position: absolute;
  left: 0;
  top: 0;
  z-index: -999;
}

#worry_free {
  padding-top: 9rem;
  padding-bottom: 10rem;
}

#testimonial {
  padding-block: 7.5rem;
  background-color: var(--soft-blue);
}

#testimonial .content h3 {
  font-size: 1.75rem;
}

#testimonial .content .ratings {
  display: flex;
  align-items: center;
  gap: 1.125rem;

  margin-top: 1.125rem;
  margin-bottom: 2.25rem;
}

#testimonial .content .ratings img {
  width: fit-content;
}

#testimonial .content p {
  font-family: "museo-sans", sans-serif;
  font-weight: 300;
}

#accuracy_and_security {
  padding-top: 7.5rem;
  padding-bottom: 6rem;
}

#automate_compilance_tasks {
  padding-top: 6rem;
  padding-bottom: 4.5rem;
}

#check_processing {
  margin-block: calc(2rem + 7.5rem);
  text-align: left;

  position: relative;
  overflow-x: hidden;
  padding-block: 2rem;

  height: 37.5rem;
}

#check_processing h2 {
  font-size: 4rem;
  line-height: 4.375rem;
  max-width: 600px;
}

#check_processing #outdated {
  height: 31.25rem;
  width: 100%;

  background-color: var(--light-blue);

  display: flex;
  align-items: center;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);

  z-index: 0;
}

#check_processing #outdated .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.75rem;

  width: 100%;
  max-width: 1920px;
  margin-inline: auto;

  padding-left: 10%;

  color: var(--purple);
  z-index: 1;
}

#check_processing #automated.wrapper {
  max-width: none;
}

#check_processing #user_goal_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);

  z-index: 100;
}

#check_processing #automated {
  background-color: var(--purple);
  color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding-left: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.75rem;

  position: absolute;
  right: -60%;
  top: 50%;
  transform: translateY(-50%);

  z-index: 1;
}

#check_processing #automated span {
  color: #fff;
}

#check_processing #automated::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: var(--purple);
  border-radius: 16px;

  position: absolute;
  left: -10%;
  top: 0;
  transform: skewX(15deg);

  z-index: -1;
}

#why_check_scanning {
  padding-bottom: 7.5rem;
}

#why_check_scanning .flex_gap_64 {
  grid-template-columns: 1.3fr 1fr;
}

#why_check_scanning .flex_gap_64 .content {
  max-width: 800px;
}

#who_uses_payology {
  padding-block: 7.5rem;

  position: relative;
}

#who_uses_payology::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--soft-blue);
  transform: skewY(-2deg);

  position: absolute;
  left: 0;
  top: 0;
  z-index: -999;
}

#npsp_extension {
  padding-top: 10rem;

  padding-bottom: calc(13.125rem + (16.25rem - 4.25rem));
}

@media only screen and (min-width: 2000px) {
  #home_section {
    margin-bottom: 0;
  }

  #check_scanning_process {
    padding-top: 13.25rem;
  }
}

@media only screen and (max-width: 1700px) {
  #home_section .content {
    margin-inline: 1.125rem;
    width: calc(100% - 1.125rem * 2);
  }
}

@media only screen and (max-width: 1440px) {
  #home_section .content .info .buttons {
    gap: 1rem;
  }

  #home_section .content .info .buttons .button {
    width: 250px;
  }
}

@media only screen and (max-width: 1240px) {
  #home_section .content {
    margin-inline: 0;
    width: calc(100%);
    border-radius: 0;
    padding-left: 1.125rem;
    padding-right: 2.5rem;
  }

  #home_section .content::before {
    border-radius: 0;
  }

  #home_section .content .info h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  #home_section .content .info h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  #home_section .content .form_container .form .fields {
    gap: 0.5rem;
  }

  #home_section .content .form_container h2 {
    margin-bottom: 1.5rem;
  }

  #check_scanning_process {
    padding-top: 11rem;
  }

  #check_processing h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: -0.72px;
    max-width: 300px;
  }

  #check_processing #outdated .wrap {
    padding-left: 4.5rem;
  }

  #why_check_scanning .flex_gap_64 {
    grid-template-columns: 1fr;
  }

  #why_check_scanning .flex_gap_64 .content {
    max-width: 720px;
  }
}

@media only screen and (max-width: 1020px) {
  #home_section .non_mobile,
  #home_section .overlay {
    display: none;
  }

  #home_section .overlay::before {
    background-color: transparent;
  }

  #home_section .content {
    width: 100%;

    margin-inline: auto;
    border-radius: 0;
    justify-content: flex-start;

    position: relative;
  }
  #home_section .content::before {
    border-radius: 0;

    bottom: -10%;

    transform: skewY(-8deg);
  }

  #home_section .content .info {
    gap: 1.125rem;
  }

  #home_section .content .info .buttons .button {
    padding-block: 0.875rem;
    margin: 0;
  }

  #home_section .content .info button.button {
    margin-top: calc(2.25rem - 1.125rem);
  }

  #home_section .content .info button.button.only_mobile {
    padding-block: 0.875rem;
  }

  #home_section .content .info button.button.on_mobile {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;

    opacity: 80%;
  }

  #home_section .content .info button.button.on_mobile img {
    filter: brightness(9999%);
  }

  #home_section .content .info button.button.on_mobile:hover {
    border: 2px solid #5b23b1;
    background-color: #fff;
    color: #5b23b1;
  }

  #home_section .content .info button.button.on_mobile:hover img {
    filter: brightness(120%);
  }

  #check_scanning_salesforce {
    background-color: var(--soft-blue);

    margin-top: 10%;
    padding-top: 2.5rem;
  }

  #check_scanning_salesforce::before {
    height: 50%;
    top: -10%;

    transform: skewY(-8deg);
  }

  #check_scanning_salesforce .bg_one_plate_r::before {
    z-index: 0;
  }

  #worry_free {
    padding-top: 6.25rem;
  }

  #testimonial {
    position: relative;

    margin-top: 10%;
    padding-top: 0;
  }

  #testimonial::before {
    content: "";

    width: 100%;
    height: 50%;

    position: absolute;
    top: -10%;
    left: 0;
    background-color: var(--soft-blue);

    transform: skewY(-8deg);
    z-index: -999;
  }

  #testimonial .content {
    text-align: center;
  }

  #testimonial .content .ratings {
    justify-content: center;
  }

  #check_processing {
    height: 65rem;

    overflow: initial;
    margin-block: 0;
  }

  #check_processing #outdated {
    height: 100%;

    align-items: flex-start;
    padding-inline: 1.125rem;
    padding-top: 6.25rem;
    background-color: transparent;

    top: 0;
    left: 0;
    transform: none;
  }

  #check_processing #outdated .wrap {
    padding: 0;
    padding-inline: calc(6.5rem - 1.125rem);
    padding-top: 1rem;
  }

  #check_processing #automated {
    left: 0;
    height: 40%;
    top: 60%;

    border-radius: 0;
    margin: 0;
    padding-inline: 6.5rem;
    padding-top: 2rem;

    justify-content: flex-start;

    transform: none;
  }

  #check_processing #outdated::before {
    content: "";
    width: 100%;
    height: 80%;
    border-radius: 0;

    background-color: var(--light-blue);

    transform: skewY(6deg);
    position: absolute;
    top: 50px;
    left: 0;
  }
  #check_processing #automated::before {
    width: 100%;
    height: 50%;
    border-radius: 0;

    transform: skewY(-6deg);
    top: -25%;
    left: 0;
  }

  #why_check_scanning {
    padding-top: 5.875rem;
    padding-bottom: 10rem;
  }

  #who_uses_payology {
    background-color: var(--soft-blue);

    padding-block: 4.5rem;
    margin-top: 10%;
  }

  #who_uses_payology::before {
    height: 50%;

    top: -10%;

    transform: skewY(-8deg);
  }

  #who_uses_payology .bg_one_plate_r::before {
    z-index: 0;
  }
  #who_uses_payology .bg_one_plate_r img {
    position: relative;
    z-index: 1;
  }

  #npsp_extension {
    padding-top: 4.5rem;
    padding-bottom: 8.625rem;
  }
}

@media only screen and (max-width: 925px) {
  #home_section .content {
    flex-direction: column;

    padding: 3.625rem 6.5rem 0 6.5rem;
    top: 0.5rem;
  }

  #home_section .content .form_container {
    margin-right: 1.75rem;
  }

  #home_section .content .form_container .form button {
    margin-inline: auto;
  }
}

@media only screen and (max-width: 800px) {
  /*==============TIPOGRAPHY===============*/

  #home_section .content .info h1 {
    font-size: 2.25rem;
    letter-spacing: -0.72px;
    line-height: 2.875rem;
  }

  #home_section .content .info h2 {
    font-size: 1.125rem;
    line-height: 2.25rem;
  }

  #home_section .content .info p {
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
  }

  /*==============COMPONENTS===============*/

  #home_section {
    padding-bottom: 15%;
  }

  #home_section .content {
    margin-inline: 0;
    padding: 3.625rem 1.125rem 2rem 1.125rem;
  }

  #home_section .content .form_container .privacy_policy_terms,
  #home_section .content .form_container .privacy_policy_terms a {
    font-family: "freight-sans-pro", "museo-sans", sans-serif;
  }

  #check_scanning_process {
    padding-bottom: 10rem;
  }

  #check_scanning_salesforce {
    background-color: var(--soft-blue);

    margin-top: 10%;
    padding-top: 2.5rem;
  }

  #check_scanning_salesforce::before {
    height: 50%;
    top: -10%;

    transform: skewY(-8deg);
  }

  #check_scanning_salesforce .bg_one_plate_r::before {
    z-index: 0;
  }

  #worry_free {
    padding-top: 6.25rem;
  }

  #testimonial {
    position: relative;

    margin-top: 10%;
    padding-top: 0;
  }

  #testimonial::before {
    content: "";

    width: 100%;
    height: 50%;

    position: absolute;
    top: -10%;
    left: 0;
    background-color: var(--soft-blue);

    transform: skewY(-8deg);
    z-index: -999;
  }

  #testimonial .content {
    text-align: center;
  }

  #testimonial .content .ratings {
    justify-content: center;
  }

  #check_processing {
    height: 70em;

    overflow: initial;
    margin-block: 0;
  }

  #check_processing h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: -0.72px;
  }

  #check_processing #outdated {
    height: 100%;

    align-items: flex-start;
    padding-inline: 1.125rem;
    padding-top: 6.25rem;
    background-color: transparent;

    top: 0;
    left: 0;
    transform: none;
  }

  #check_processing #outdated .wrap {
    padding: 0;
    padding-top: 1rem;
  }

  #check_processing #automated {
    left: 0;
    height: 40%;
    top: 60%;

    border-radius: 0;
    margin: 0;
    padding-inline: 1.125rem;
    padding-top: 2rem;

    justify-content: flex-start;

    transform: none;
  }

  #check_processing #outdated::before {
    content: "";
    width: 100%;
    height: 80%;
    border-radius: 0;

    background-color: var(--light-blue);

    transform: skewY(10deg);
    position: absolute;
    top: 50px;
    left: 0;
  }
  #check_processing #automated::before {
    width: 100%;
    height: 50%;
    border-radius: 0;

    transform: skewY(-10deg);
    top: -25%;
    left: 0;
  }

  #why_check_scanning {
    padding-top: 5.875rem;
    padding-bottom: 10rem;
  }

  #who_uses_payology {
    background-color: var(--soft-blue);

    padding-block: 4.5rem;
    margin-top: 10%;
  }

  #who_uses_payology::before {
    height: 50%;

    top: -10%;

    transform: skewY(-8deg);
  }

  #who_uses_payology .bg_one_plate_r::before {
    z-index: 0;
  }
  #who_uses_payology .bg_one_plate_r img {
    position: relative;
    z-index: 1;
  }

  #npsp_extension {
    padding-top: 4.5rem;
    padding-bottom: 8.625rem;
  }
}

@media only screen and (max-width: 700px) {
  #home_section .content::before {
    bottom: -5%;
  }

  #check_scanning_process {
    padding-top: 7.5rem;
  }
}

@media only screen and (max-width: 425px) {
  #home_section .content .form_container {
    margin-right: 1.125rem;
    padding-inline: 1.125rem;
  }

  #home_section .content .form_container .form_overlay {
    right: -1.125rem;
  }
}
