#about{
  padding: 100px 0;
  background-color: #f1f1f1;
}


.section-title{
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 20px;
  color: #444;
}


.section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #444;
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #f1f1f1;
  left: calc(50% - 12px);
  bottom: -7px;
}

.about-content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-pic{
  width: 175px;
  height: 175px;
  min-width: 175px;
  border-radius: 50%;
  margin-right: 100px;
  background-image: linear-gradient(155deg, rgba(45, 52, 54, 0.55), rgba(45, 52, 54, 0.35)), url(images/hero-bg.jpg);
  background-position: center;
  background-size: cover;
  border: 3px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(17, 17, 17, .14);
  position: relative;
}

.about-pic-initial{
  font-family: 'Caveat', cursive;
  font-size: 92px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-pic::after{
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 169, 74, 0.55);
}

.aboutme{
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #48dbfb;
  margin-bottom: 12px;
}

.about-text{
  flex: 1;
}

.about-text-card{
  background-color: #f1f1f1;
  padding: 30px;
  margin-left: -20px;
  border: 3px solid #48dbfb;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, .14);
}

.about-text h3{
  margin: 10px 0;
  color: #444;
  font-size: 16px;
}

.about-text h3 span:nth-child(1):after,
.about-text h3 span:nth-child(2):after
{
  content: "";
  width: 6px;
  height: 6px;
  background-color: #444;
  display: inline-block;
  border-radius: 50%;
  margin: 0 14px;
}

.about-text p{
  font-size: 17px;
  text-align: justify;
  line-height: 26px;
  margin-bottom: 16px;
}

.about-text p:last-child{
  margin-bottom: 0;
}

.about-mission{
  font-weight: 600;
  color: #444;
  text-align: left !important;
}

.about-signature{
  margin-top: 20px;
  font-family: 'Caveat', cursive;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy-light);
}

.about-signature span{
  color: var(--cyan-dark);
}

@media screen and (max-width: 900px){
  #about{
    padding: 60px 0;
  }

  .section-title{
    margin-bottom: 50px;
    font-size: 26px;
  }

  .about-content{
    flex-direction: column;
    text-align: center;
  }

  .about-pic{
    margin: 0 0 30px;
  }

  .about-text-card{
    margin-left: 0;
    padding: 24px 20px;
  }

  .about-text p{
    text-align: left;
    font-size: 15px;
    line-height: 24px;
  }

  .about-signature{
    font-size: 28px;
  }
}