.link-modal {
  cursor: pointer;
}
.new-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: end;
  align-items: center;
}
.new-modal-content {
  background-color: var(--light-surface-neutral-0);
  padding: 0 100px 0;
  height: 100%;
  width: 747px;
}
.new-modal-close {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  right: 20px;
  top: 20px;
}
.header-new-modal {
  padding: 90px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.header-new-modal-title {
  font-size: 32px;
  font-family: var(--title-font-family);
  line-height: 42px;
  letter-spacing: var(--letter-spacing);
  margin: 0;
  font-weight: 700;
  max-width: 441px;
  width: 100%;
}
.hidden-scroll {
  overflow: hidden;
}
.hidden-header {
  display: none;
}
.content-new-modal p {
  color: var(--light-text-neutral-500);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: var(--letter-spacing);
}
.content-new-modal h2 {
  color: var(--light-text-neutral-600);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--title-font-family);
  line-height: 140%;
  letter-spacing: var(--letter-spacing);
}
.new-modal-close-container-end {
  margin: 64px 0;
}
.new-modal-close-end {
  background-color: var(--light-surface-neutral-200);
  padding: 16px 46px;
  border-radius: 100px;
  font-size: 16px;
}
.slide-in-right {
  animation: slideInRight 0.3s forwards;
}
.two_col__subtitle-h2 p {
  margin-bottom: 32px;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.slide-in-top {
  animation: slideInTop 0.3s forwards;
}
@keyframes slideInTop {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .new-modal-content {
    padding: 0 32px 0 24px;
  }
  .new-modal-close svg {
    width: 32px;
  }
  .header-new-modal-title {
    font-size: 24px;
    line-height: 32px;
  }
  .content-new-modal p {
    font-size: 16px;
  }
  .new-modal-close-container-end {
    margin: 32px;
    text-align: center;
  }
  .two_col__image_mobile {
    margin-bottom: 32px;
  }
}
