header {
  overflow: auto;
  display: grid;
  grid-template-columns: 100%;
  position: relative;
  height: 80vh;
  padding: 8px;
}

.imgAndCircle {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 8px;
}
.brand-circle {
  height: 210px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50%;
  background: var(--primary-color);
  left: 50%;
  transform: translate(-50%);
  cursor: pointer;
  top: 20px;
  border: 2px solid var(--background-color);
}
.brand-circle .text {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: anim 25s linear infinite;
  color: var(--background-color);
  font-family: var(--heading-font);
  font-weight: 900;
}
.brand-circle .text span {
  position: absolute;
  left: 50%;
  color: var(--background-color);
  top: 3%;
  font-size: 1.2em;
  transform-origin: 0 100px;
}
.white_box {
  height: 120px;
  width: 120px;
  background: var(--background-color);
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-family: var(--heading-font);
  font-weight: 900;
  color: var(--font-color);
  transform: translateX(-50%);
  left: 30%;
  transition: 0.4s;
}
.white_box img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--background-color);
  transition: 0.7s;
}

header #nameOfPage {
  color: var(--font-color);
  text-align: center;
  display: flex;
  align-items: center;
  margin: auto;
}

/* _---------------after the header sections-------- */

#information {
  display: grid;
  padding: 50px 24px 8px;
  background: var(--background-color);
}
#information .categorys {
  display: grid;
  grid-template-rows: 33% 33% 33%;
  max-width: 350px;
}
#information .categorys .eachList {
  display: grid;
  margin: 10px 0;
  align-items: flex-start;
  grid-template-columns: 50% 55%;
}
#information .categorys .eachList .list {
  color: var(--font-color);
  word-break: keep-all;
}
#information .story_behind {
  color: var(--font-color);
  word-break: keep-all;
  font-size: 18px;
  padding: 48px 0;
}
#img_displays {
  width: 100%;
  padding: 50px 24px 8px;
  position: relative;
  background: var(--background-color);
  margin-bottom: 30px;
}
#img_displays img,
#want_to_see {
  width: 100%;
  margin: 8px 0;
  height: 100%;
}
#want_to_see {
  background: #17ffab;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
#follower {
  width: 90px;
  aspect-ratio: 1;
  background: var(--background-color);
  border-radius: 0%;
  position: absolute;
  /*   filter: blur(15px); */
  pointer-events: none;
  display: block;
  z-index: 5;
  inset: 0;
  transform: translate(-50%, -50%);
}
.noselect {
  margin: 10px 0;
  background: var(--background-color);
  width: 50%;
  height: 20%;
  z-index: 6;
  transition: 0.3s;
  font-weight: 900;
  position: relative;
  cursor: pointer;
  border: none;
  box-shadow: none;
}
.noselect h6 {
  color: var(--primary-color);
  font-size: 23px;
  font-family: var(--heading-font);
  z-index: 10;
  position: relative;
  transition: all 0.2s ease-in-out 0.2s;
  transition-delay: 0.2s;
}
.noselect:after {
  content: "";
  background-color: whitesmoke;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0px;
  transition: all 0.6s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.noselect:active:after {
  width: 100%;
  transform: scaleX(1);
}
.noselect:hover:after {
  width: 100%;
  transform: scaleX(1);
}
.noselect:hover {
  scale: 1;
}
.noselect:hover > h6 {
  color: var(--background-color);
}
.noselect:active {
  scale: 0.98;
}

@media (max-width: 1100px) and (min-width: 600px) {
  
  
  header {
    height: 90dvh;
    grid-template-rows: 60% 1fr;
  }
  .imgShower {
    height: 100%;
  }
  header #nameOfPage {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 48px auto;
  }

  #information {
    display: grid;
    padding: 50px 24px 8px;
    background: var(--background-color);
  }
  #information .categorys {
    display: grid;
    grid-template-rows: 50% 50%;
    max-width: 350px;
  }
  #information .categorys .eachList {
    display: grid;
    margin: 5px 0;
    align-items: flex-start;
    grid-template-columns: 44% 55%;
  }
  #information .categorys .eachList .list {
    color: var(--font-color);
    word-break: keep-all;
    font-size: 22px;
    min-width: max-content;
    max-width: 50%;
  }
  #information .story_behind {
    color: var(--font-color);
    word-break: keep-all;
    font-size: 22px;
    margin: 50px 0 0;
    padding: 48px 0;
  }

  #img_displays img {
    width: 1fr;
    margin: 10px 0;
  }
}

@media (min-width: 1101px) {
  header {
    display: grid;
    grid-template-columns: 47% 50%;
    grid-template-rows: 100%;
    align-items: center;
    justify-content: space-between;
    height: 55dvh;
    padding: 48px;
  }
  .imgAndCircle .brand-circle {
    transform: scale(1.4);
    left: 25px;
  }
  header #nameOfPage {
    color: var(--font-color);
    text-align: center;
    display: flex;
    align-items: center;
    margin: auto 0 0 0;
    position: relative;
    bottom: -30px;
    left: -10px;
  }
  .imgShower {
    height: 100%;
  }
  #information .story_behind {
    color: var(--font-color);
    word-break: keep-all;
    font-size: 18px;
    padding: 0;
  }

  #information {
    display: grid;
    padding: 50px 48px 8px;
    background: var(--background-color);
    grid-template-columns: 50% 50%;
  }
  #information .categorys {
    display: grid;
    grid-template-rows: auto;
    max-width: 400px;
  }
  #information .categorys .eachList {
    display: grid;
    margin: 0;
    align-items: flex-start;
    grid-template-columns: 50% 55%;
    grid-template-rows: 0;
  }
  #img_displays {
    height: max-content;
    padding: 50px 48px 8px;
    position: relative;
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 2%;
    background: var(--background-color);
    margin-bottom: 84px;
  }
  #img_displays img {
    width: 100%;
    margin: 0;
  }
  header h1 {
    color: white;
    position: relative;
    font-size: 50px;
    text-align: center;
  }
  footer {
    height: 100vh;
    width: 100vw;
    display: flex;
    background: var(--placeholder);
    padding: 24px;
  }
  #Hire {
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    margin: 0;
    padding: 0;
    border-radius: 0 0 150px;
    display: flex;
    position: relative;
    overflow: hidden;
    justify-content: left;
    align-items: center;
  }
  #Hire h1 {
    font-size: 18.5vw;
    height: auto;
    position: absolute;
    top: 0vh;
    text-align: left;
    width: 100%;
    left: -1vw;
    transform: scaleX(1);
    font-family: var(--heading-font);
    font-weight: 900;
    color: var(--placeholder);
    line-height: 11vw;
    text-wrap: nowrap;
  }
  #Hire ul {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0%;
  }
  #Hire ul li {
    margin: 10px 10px;
    padding: 20px 10px 0;
    text-align: center;
  }
  #Hire ul li a {
    text-decoration: none;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--background-color);
  }
  #Hire .brand-circle2 {
    height: 210px;
    width: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    background: transparent;
    right: 43px;
    transform: translate(0%, 0%) scale(1.4);
    bottom: 41px;
    border: 2px solid var(--background-color);
    cursor: pointer;
    transition: 0.4s;
  }
  #Hire .brand-circle2:hover {
    background: #191d162a;
  }
  #Hire .brand-circle2:hover > .white_box img {
    opacity: 0;
    width: 0;
    height: 0;
  }
  /* #Hire .brand-circle2:hover > */
  #Hire .brand-circle2 .letter {
    width: 100%;
    height: 100%;
    position: absolute;
    animation: anim 25s linear infinite;
    color: var(--background-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-weight: 900;
  }
  #Hire .brand-circle2 .letter span {
    position: absolute;
    left: 50%;
    top: 3%;
    font-size: 1.2em;
    transform-origin: 0 100px;
  }
  @keyframes anim {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
  .white_box {
    height: 120px;
    width: 120px;
    background: var(--background-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 900;
    color: var(--font-color);
    transition: 0.4s;
  }
  #Hire p {
    position: absolute;
    bottom: 2vh;
    text-align: center;
    left: 2vw;
    transform: translateX(0%);
    color: var(--background-color);
    font-family: var(--heading-font);
    font-size: 13px;
  }
}
