:root {
  --color-txtlink: #2817e7;
  --color-white1: hsl(0, 0%, 100%);
  --color-black: hsl(0, 0%, 0%);
  --color-gray1: hsl(0, 0%, 95%);
  --color-gray2: hsl(0, 0%, 80%);
  --color-gray3: hsl(0, 0%, 60%);
  --color-gray4: hsl(0, 0%, 30%);
  --color-blue1: hsl(200, 85%, 60%);
  --color-blue2: hsl(214, 79%, 60%);
  --color-blue3: hsl(214, 79%, 40%);
  --color-orange1: hsl(35, 100%, 50%);
  --color-orange2: hsl(35, 100%, 60%);
  --color-orange2o: hsla(35, 100%, 60%, 0.7);
  --color-red1: hsl(0, 100%, 50%);
  --color-lblue1: hsl(201, 100%, 96%);
  --color-lblue2: hsl(201, 100%, 80%);
  --color-lblue3: hsl(202, 100%, 41%);
  --color-ibexab1: hsl(114, 45%, 96%);
  --color-green1: hsl(178, 84%, 39%);
  --color-ibexab: hsl(162.2, 91.2%, 26.9%);
}
html {
  scroll-behavior: auto;
}
a {
  text-decoration: none;
  color: var(--color-gray4);
}
a:hover {
  opacity: .8;
  transition: all 0.5s ease;
}
aside {
  & > div {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    place-content: center;
    gap: 1em;
    padding: 1em;
  }
  &.end-box {
    background: var(--color-blue1);
    & > div {
      padding: 5em 1em 0;
      position: relative;
      &::before {
        content: "";
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background: var(--color-white1);
        width: 150px;
        height: 65px;
        position: absolute;
        translate: -50% 0;
        left: 50%;
        top: -1px;
      }
    }
    & .comment {
      font-weight: 600;
      position: relative;
      display: flex;
      align-items: center;
      gap: .5em;
      font-size: clamp(1.0em, 3.0vw, 1.5em);
      width: fit-content;
      margin-inline: auto;
      color: var(--color-white1);
      &::before, &::after {
        content: "";
        width: 1em;
        height: 4px;
        background: var(--color-white1);
      }
      &::before {
        transform: rotate(45deg);
      }
      &::after {
        transform: rotate(-45deg);
      }
    }
  }
  &.btn_entry {
    background: hsla(255, 100%, 100%, .9);
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px 0px 4px 0px hsla(0, 0%, 0%, .2);
    > div {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    &.endposi {
      position: sticky;
      /*padding: 1em;*/
    }
    & div a {
      display: grid;
      place-content: center;
      background: var(--color-orange1);
      color: var(--color-white1);
      line-height: 3;
      border-radius: 5px;
      font-weight: bold;
    }
  }
}
@media only screen and (max-width:768px) {
aside {
  & > div {
    gap: .7em;
    padding: .7em;
  }
  &.btn_entry {
   div a {
      font-size: .8em;
    }
  }
}
}