.hero {
  /* background-color: rgba(255, 0, 0, 0.353); */
  width: 100%;
  height: 700px;
  margin-top: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 50px;
  row-gap: 100px;
}

.hero .text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 20px;
}

.hero .text h1 {
  font-size: 65px;
  color: var(--white-color);
}

.hero .text h1 #owner-name {
  /* color: pink; */
}

.hero .text h4 {
  font-size: 35px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 70px;
}

.hero .text h4 #job {
  color: var(--white-color);
  font-weight: 600;
}

.hero .text .buttons {
  /* border: 1px solid springgreen; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.hero .text .buttons a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 25px;
}
.cv-btn {
  padding: 10px 20px;
  font-weight: 600;
}

.hero .img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  /* background-color: orange; */
  position: relative;
}

.hero #avt_1 {
  width: 400px;
  height: 400px;
  padding: 3px;
  background: linear-gradient(to right, var(--first-color), #c61d70);
  /* background: linear-gradient(to right, var(--first-color), var(--second-color)); */
  border-radius: 100%;
}

#avt_1 img {
}

.availability {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  /* border: 2px solid var(--first-color);  */
  position: absolute;
  right: 15%;
  bottom: 20%;
  animation: glow 10s infinite 5s;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0px var(--availavility-glow-color);
  }
  25% {
    box-shadow: 0 0 20px var(--availavility-glow-color);
  }
  50% {
    box-shadow: 0 0 50px var(--availavility-glow-color);
  }
  75% {
    box-shadow: 0 0 20px var(--availavility-glow-color);
  }
  100% {
    box-shadow: 0 0 0px var(--availavility-glow-color);
  }
}

.tooltip-status {
  color: var(--white-color);
  font-weight: 100;
  margin-top: 20px;
  border-radius: 50px;
  padding: 1% 5%;
  transform: translateY(-100px);
  opacity: 0;
  z-index: -29;
  transition: all 1s;
}

.img .availability:hover + .tooltip-status {
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

@media only screen and (min-width: 1850px) {
  .hero {
    justify-self: center;
    max-width: 2000px;
    align-self: center;
  }
  .hero #avt_1 {
    width: 450px;
    height: 450px;
    padding: 4px;
  }
}

/* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {
  .hero {
    /* background-color: red; */
    width: 100%;
    height: 500px;
    margin: 0;
    column-gap: 70px;
  }

  .hero .text {
    /* order: 2; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    align-content: center;
    flex-wrap: wrap;
  }

  .hero .text h1 {
    font-size: 40px;
  }

  .hero .text h4 {
    font-size: 25px;
    font-weight: 400;

    margin-bottom: 70px;
  }

  .hero .text h4 #job {
    font-weight: 600;
  }

  .hero .text .buttons {
    display: flex;
    flex-direction: rown;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
  }

  .hero .text .buttons a {
    font-size: 15px;
  }

  .hero #avt_1 {
    /* flex-shrink: 0; */
    width: 270px;
    height: 270px;

    border-radius: 100%;
  }

  .availability {
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 50%;
    /* border: 2px solid var(--first-color); */
    position: absolute;
    right: 18%;
    bottom: 20.5%;
  }

  .tooltip-status {
    color: var(--white-color);
    font-weight: 100;
    margin-top: 20px;
    border-radius: 50px;
    padding: 1% 5%;
    transform: translateY(-100px);
    opacity: 0;
    z-index: -29;
    transition: all 1s;
  }
  .tooltip-status h1 {
    font-size: 15px;
  }
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {
  .hero {
    /* background-color: red; */
    width: 100%;
    height: fit-content;
    margin: 100px 0;
    column-gap: 170px;
  }

  .hero .text {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
  }

  .hero .text h1 {
    font-size: 50px;
    color: var(--white-color);
  }

  .hero .text h4 {
    font-size: 35px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 70px;
  }

  .hero .text .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 40px;
  }

  .hero .text .buttons a {
    font-size: 25px;
  }

  .hero #avt_1 {
    /* flex-shrink: 0; */
    width: 350px;
    height: 350px;
    border-radius: 100%;
  }

  .availability {
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 50%;
    /* border: 2px solid var(--first-color); */
    position: absolute;
    right: 18%;
    bottom: 19%;
  }

  .tooltip-status {
    color: var(--white-color);
    font-weight: 100;
    margin-top: 20px;
    border-radius: 50px;
    padding: 1% 5%;
    transform: translateY(-100px);
    opacity: 0;
    z-index: -29;
    transition: all 1s;
  }
  .tooltip-status h1 {
    font-size: 15px;
  }
}


/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {
  
  .hero {
    margin: 100px 0 50px 0;
    /* column-gap: 200px; */
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  .hero .text h1 {
    font-size: 35px;
  }

  .hero .text h4 {
    font-size: 20px;
    margin-bottom: 35px;
  }

  .hero .text .buttons {
    gap: 20px;
  }

  .hero .text .buttons a {
    font-size: 17px;
  }

  .hero #avt_1 {
    width: 200px;
    height: 200px;
  }

  .hero-first-btn {
    margin-top: 10px;
  }

  .availability {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 50%;
    /* border: 2px solid var(--first-color); */
    position: absolute;
    right: 20%;
    bottom: 20.5%;
  }

  .tooltip-status {
    color: var(--white-color);
    font-weight: 100;
    margin-top: 20px;
    border-radius: 50px;
    padding: 1% 5%;
    transform: translateY(-100px);
    opacity: 0;
    z-index: -29;
    transition: all 1s;
  }
  .tooltip-status h1 {
    font-size: 10px;
  }

  #cv-btn {
    height: max-content !important;

    background: linear-gradient(
      to left,
      var(--first-color),
      var(--second-color)
    ) !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }
}
