.about-container{
  position: relative;
  overflow: hidden;

  background: #000;
  width: 100%;
  height: 100%;
  padding-bottom: 5vw;
}

/* Title */
.about-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(0.5rem, 4vw);
}
.about-heading h1{
  color: #fff;
  font-size: min(8rem, 20vw);
}

/* Selector */
.about-selector ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: min(3rem, 8vw);
}
.about-selector ul li a{
  color: #fff;
  font-size: min(2rem, 6vw);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}
.about-selector ul li a:hover{
  color: #000;
  background: #fff;
  border: 1px solid #fff;
  padding: 0 0.5rem;
}

.about-row-container{
  display: flex;
  flex-direction: column;
}
.row-content{
  display: flex;
  flex-direction: row;
  border: 1px solid #fff;
  margin: 2rem 8rem;
}
.row-content img{
  position: relative;
  width: 20rem;
}
.row-desc{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.row-desc h1{
  color: #fff;
  font-size: 4rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.row-desc p{
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: 2rem;
  text-align: justify;
}