.about {
  background-color: var(--background-color);
  color: var(--color-white);
  position: relative;
  padding-top: 50px;
  margin-top: 50px;
}
@media (max-width: 450px) {
  .about {
    padding-top: 20px;
    margin-top: 20px;
  }
}
.about .container {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 0 0 40px;
  gap: 40px;
  height: 100%;
  /* border: 1px solid red; */
}
@media (max-width: 1140px) {
  .about .container {
    flex-direction: column;
    align-items: center;
  }
}
.about .my-info,
.about .education {
  /* height: 100%; */
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px;
  align-items: flex-start;
  border: 2px solid var(--main-color);
  transition: 800ms;
  box-shadow: inset 0px 0px 20px -7px var(--main-color);
}
.about .my-info:hover,
.about .education:hover {
  /* box-shadow: 0 0 20px 6px var(--main-color); */
  box-shadow: inset 0px 0px 32px -7px var(--main-color);
}
.about .education {
  width: 1120px;
  align-items: flex-start;
  position: relative;
}
.about .education .certificates {
  text-align: left;
}
.about .education ul {
  text-align: left;
}
@media (max-width: 1668px) {
  .about .my-info,
  .about .education {
    /* height: fit-content; */
    width: fit-content;
  }
  .about .education {
    padding: 5px 10px;
  }
  .about .my-info h2,
  .about .education h2 {
    font-size: 16px;
    margin-right: 0;
  }
  .about .education li {
    margin: 6px 0;
  }
}
@media (max-width: 1140px) {
  .about .my-info,
  .about .education {
    width: 90%;
    /* height: 260px; */
    padding-right: 0;
  }
  .about .education {
    /* height: 410px; */
  }
  .about .my-info h2,
  .about .education h2 {
    font-size: 18px;
    margin-right: 0;
  }
  .about .education li {
    font-size: 14px;
    margin: 18px 0;
  }
}
@media (max-width: 360px) {
  .about .my-info,
  .about .education {
    width: 90%;
    height: fit-content;
    padding-right: 0;
    padding-left: 6px;
  }
  .about .education {
    height: fit-content;
  }
  .about .my-info h2,
  .about .education h2 {
    font-size: 14px;
    margin-right: 0;
  }
  .about .education li {
    font-size: 12px;
    margin: 18px 0;
  }
}
.about .my-info h2,
.about .education h2 {
  margin: 4px;
}
.about .my-info h2 span,
.about .education h2 span {
  color: var(--main-color);
}
.about .my-info a,
.about .education a {
  color: var(--color-white);
  transition: var(--main-transition);
}
.about .my-info a:hover,
.about .education a:hover {
  color: var(--main-color);
}
