.cora-page--about--container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}

.cora-page--about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* height: 100dvh; */
  padding: var(--cora-header-height) 0;
}

.cora-page--about--col.col1 {
  position: relative;
  z-index: 55;
}

.cora-page--about--col1--sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  align-items: center;
  position: sticky;
  top: var(--cora-header-height);
  height: calc(100dvh - (var(--cora-header-height) * 2));
  padding-top: 60px;
}

.cora-page--about--img {
  display: flex;
  position: relative;
  margin-top: auto;
}

.cora-page--about--img img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 40dvh;
  max-width: 40dvh;
  position: relative;
  z-index: 50;
}

.cora-page--about--img--el.el1 {
  position: absolute;
  width: 406px;
  height: 406px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  background: #0B24B1;
  /* box-shadow: 0px 0px 120px 180px #0B24B1; */
  /* box-shadow: 0px 0px 120px 165px #0B24B1; */
  border-radius: 100%;
  overflow: hidden;
  z-index: 20;
  display: flex;
  filter: blur(50px);

  will-change: transform;
  backface-visibility: hidden;
}

.cora-page--about--img--el.el2 {
  position: absolute;
  width: 1050px;
  height: 1050px;
  background: #A5A4EB;
  /* box-shadow: 0px 0px 250px 200px #A5A4EB; */
  /* box-shadow: 0px 0px 140px 200px #A5A4EB; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  outline-color: #A5A4EB;
  outline-width: 1px;
  outline-offset: 1px;
  border: 1px solid #A5A4EB;
  z-index: 15;
  transition: 0.3s;
  opacity: 0;
  display: flex;
  pointer-events: none;

  filter: blur(75px);
  will-change: opacity;
  backface-visibility: hidden;
}

.cora-page--about--img--el.el3 {
  position: absolute;
  width: 1150px;
  height: 1150px;
  background: #F1D4F1;
  /* box-shadow: 0px 0px 250px 150px #F1D4F1; */
  /* box-shadow: 0px 0px 150px 150px #F1D4F1; */
  z-index: 10;
  border-radius: 100%;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #F1D4F1;
  outline-color: #F1D4F1;
  outline-width: 1px;
  transition: 0.3s;
  opacity: 0;
  display: flex;
  pointer-events: none;

  filter: blur(75px);
  will-change: opacity;
  backface-visibility: hidden;
}

.cora-page--about--img:hover .cora-page--about--img--el.el2,
.cora-page--about--img:hover .cora-page--about--img--el.el3 {
  opacity: 1;
}

@media(max-width: 768px) {

  .cora-page--about--img.active .cora-page--about--img--el.el2,
  .cora-page--about--img.active .cora-page--about--img--el.el3 {
    opacity: 1;
  }
}

.cora-page--about--name {
  margin: auto 0 7px;
  border-top: 1px solid var(--cora-text);
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--cora-text);
  padding: 20px 0;
  text-transform: uppercase;
  font-family: var(--cora-font-primary);
  font-weight: 200;
  font-size: 26px;
  z-index: 60;
}

.cora-page--about--col.col2 p:first-child {
  margin-top: 0;
}

.cora-page--about--col.col2 p:last-child {
  margin-bottom: 0;
}

.cora-page--about--text {
  /* margin: -4px 0 30px; */
  margin: 0;
  font-size: 28px;
  font-weight: 200;
  line-height: 1.3;
}

.cora-page--about--col.col2 {
  position: relative;
  z-index: 60;
}

.cora-page--about--col.col3 {
  position: relative;
  z-index: 65;
}

.cora-page--about--col3--sticky {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100dvh - (var(--cora-header-height) * 2));
  position: sticky;
  top: var(--cora-header-height);
}

.cora-page--about--text2 {
  margin: 0 0 7px;
  padding: 15px 0;
  width: 100%;
  border-top: 1px solid var(--cora-text);
  border-bottom: 1px solid var(--cora-text);
  text-align: left;
  font-size: 32px;
  font-family: var(--cora-font-secondary);
  line-height: 1.1;
  font-weight: 500;
  color: var(--cora-primary);
}


@media (max-width: 1400px) {
  .cora-page--about--col.col2 {
    font-size: 14px;
  }

  .cora-page--about--text {
    font-size: 22px;
  }

  .cora-page--about--text2 {
    font-size: 26px;
  }
}

@media(max-width: 1160px) {
  .cora-page--about {
    height: auto;
    min-height: 100dvh;
    justify-content: flex-start;
  }

  .cora-page--about--container {
    grid-template-columns: 300px minmax(0, 1fr);
    grid-template-areas:
      "aboutCol1 aboutCol2"
      "aboutCol1 aboutCol3";
    column-gap: 105px;
  }

  .cora-page--about--col.col1 {
    grid-area: aboutCol1;
  }

  .cora-page--about--col.col2 {
    grid-area: aboutCol2;
  }

  .cora-page--about--col.col3 {
    grid-area: aboutCol3;
    display: flex;
  }

  .cora-page--about--col3--sticky {
    height: auto;
    gap: 45px;
  }

  .cora-page--about--name {
    margin-bottom: 0;
  }

  .cora-page--about--text2 {
    font-size: 22px;
    margin-bottom: 0;
  }

  .cora-page--about--img--el.el1 {
    width: 320px;
    height: 320px;
  }

  .cora-page--about--img--el.el2 {
    width: 750px;
    height: 750px;
  }

  .cora-page--about--img--el.el3 {
    width: 850px;
    height: 850px;
  }
}

@media(max-width: 992px) {
  .cora-page--about--container {
    column-gap: 70px;
  }
}

@media(max-width: 768px) {
  .cora-page--about {
    overflow: hidden;
  }

  .cora-page--about--container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "aboutCol1"
      "aboutCol2"
      "aboutCol3";
  }

  .cora-page--about--col1--sticky {
    height: auto;
    position: relative;
    top: initial;
    padding-top: 50px;
  }

  .cora-page--about--img img {
    max-width: 260px;
  }

  .cora-page--about--img--el.el1 {
    width: 260px;
    height: 260px;
  }

  .cora-page--about--img--el.el2 {
    width: 650px;
    height: 650px;
  }

  .cora-page--about--img--el.el3 {
    width: 750px;
    height: 750px;
  }
}