.about{
  padding-top: 180px;
}
.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 6%;
}
.about-img {
  flex-basis: 35%;
}
.about-text {
  flex-basis: 60%;
}
.tab-title {
  display: flex;
  margin: 20px 0 40px;
}
.tab-link {
  margin-right: 50px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.tab-link::after {
  content: "";
  width: 0;
  height: 3px;
  left: 0;
  bottom: -8px;
  position: absolute;
  background: #ff004f;
  transition: 0.5s;
}
.tab-link.active-link::after {
  width: 70%;
}
.tab-contents ul li {
  list-style: none;
  margin: 10px 0;
}
.tab-contents ul li span {
  color: #b54769;
  font-size: 16px;
}
.about-text h2 {
  font-size: 55px;
}
.about-text h2 span {
  color: #0ef;
}
.tab-contents {
  display: none;
}
.tab-contents.active-tab {
  display: block;
}
.copy-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 3px solid #7c3aed;
}

/* -----------------------------Services section----------------------- */
.services {
  color: aliceblue;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 4rem;
  padding-top: 220px;
}
.services-container {
  padding: 90px;
}
.sub-title {
  font-size: 50px;
  text-align: center;
  margin-bottom: 70px;
}
.sub-title span {
  color: #0ef;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}
.services-list div {
  background-color: transparent;
  font-size: 13px;
  padding: 40px;
  font-weight: 600;
  border-right: 10px;
  border-radius: 20px;
  transition: background 0.5s, transform 0.5s;
  box-shadow: 1px 1px 20px #012290f7, 1px 1px 40px #0053b8f7;
}
.services-list div i {
  font-size: 50px;
  margin-bottom: 30px;
}
.services-list div h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.services-list div a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
}
.service-item h2 {
  line-height: 1.3;
  padding-top: 1px;
  font-size: 1.5rem;
}

.more {
  display: inline-block;
  padding: 12px 28px;
  background: #0ef;
  font-size: 16px;
  border-radius: 40px;
  color: #081b29;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  animation: slideTop 1s ease forwards;
  animation-delay: 2s;
  box-shadow: 0 0 5px #0ef, 0 0 25px #0ef;
}
.read:hover {
  box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50px cyan, 0 0 100px cyan,
    0 0 200px cyan;
}
.services-list div:hover {
  transform: translateY(-20px);
}
