* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100%;
  width: 100%;
  font-family: "Roboto", sans-serif;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit; /* Inherit the color from the parent */
}
#main {
  height: 100%;
  width: 100%;
}
#about {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  place-items: center;
  padding-top: 100px;
  margin-bottom: 2rem;
}
#about #business-summary {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
#about #business-summary #top-left {
  height: 100%;
  width: 100%;
  grid-area: 1 / 1 /2 /2;
  overflow: hidden;
  align-self: center;
}
#about #business-summary #top-left h1 {
  padding: 0 25px;
  font-size: 3.5rem;
  text-transform: uppercase;
}
#about #business-summary #top-left h1:nth-child(2n) {
  text-align: end;
}
#about #business-summary #top-right {
  height: 100%;
  width: 100%;
  grid-area: 1 / 2 /2 /2;
  display: grid;
  place-items: center;
}
#about #business-summary #top-right p {
  font-size: 16px;
  font-weight: 600;
}
#about #business-summary #top-right ul li {
  position: relative;
  padding-left: 24px;
  line-height: 3.5;
  font-size: 16px;
  font-weight: 500;
}
#about #business-summary #top-right ul li::before {
  position: absolute;
  top: 18px;
  left: 0;
  content: " ";
  width: 20px;
  height: 20px;
  opacity: 1;
  background-image: url("https://res.cloudinary.com/wasimmohammad/image/upload/v1708191119/CyborgwaveNew/favicon/favicon_vk398p.png");
  background-size: 100%;
  background-position: center;
}
#about #business-summary #bottom {
  height: 100%;
  width: 100%;
  grid-area: 2/1/3/3;

}
#about #business-summary #bottom p {
  font-size: 18px;
  padding: 14px 25px 14px 25px;
  text-align: justify;
  hyphens: auto;
  line-height: 1.5;
}

#about .business-image {
  background-color: white;
  border: 2px solid black;
  border-radius: 2rem;
  width: 550px;
  height: auto;
}

#about #business-image-card {
  display: grid;
  filter: drop-shadow(0px 1px 2px rgba(60, 64, 67, 0.3))
    drop-shadow(0px 2px 6px rgba(60, 64, 67, 0.15));
  text-align: center;
  place-items: center;
}

#about #project-numbers {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
  width: 200px;
  height: 500px;
}

#about .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 15%;
  border: 1px solid black;
  border-bottom: 10px solid #ed2728;
}

#about .container .text {
  text-align: center;
}

#about span.num {
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
#about span.text {
  font-size: 1rem;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 500;
  line-height: 0;
}
.about_values {
  overflow: hidden;
  margin-top: 30px;
}
.about_values h1 {
  font-size: 40px;
  color: #000000;
  text-align: center;
  margin: 25px 0 50px 0;
}
.about_valuesli li {
  width: 25%;
  float: left;
  padding: 15px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.about_valuesli li:after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  content: "";
  display: none;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #000;
}
.about_valuesli li.active:after {
  display: block;
}
.about_valuesli li.active,
.about_valuesli li:hover {
  background: #000000;
  color: #ffffff;
  border-radius: 20px 0;
}
.about_valuesDiv {
  padding: 40px;
  display: none;
}
.about_valuesDiv .title {
  width: 20%;
  float: left;
  font-size: 30px;
  color: #000000;
  padding: 60px 0;
  font-weight: 600;
  text-align: center;
}
.about_valuesDiv .txt {
  width: 75%;
  float: right;
  padding: 25px 0;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  #about {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    margin-bottom: 2rem;
    gap: 50px;
  }
  #about #business-summary {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #about #business-summary #top-left {
    margin: 10px 0;
  }
  #about #business-summary #top-right {
    height: fit-content;
    margin: 10px 0;
  }
  #about #business-summary #top-left h1 {
    padding: 0 60px;
    font-size: 12vw;
    line-height: 1.5;
    text-transform: uppercase;
  }
  #about #business-summary #top-right p {
    font-size: 5vw;
    font-weight: 600;
    padding: 12px 0;
  }
  #about #business-summary #top-right ul li {
    font-size: 20px;
  }
  #about #business-summary #top-right ul li::before {
    top: 25px;
  }
  #about .business-image {
    background-color: white;
    border: 2px solid black;
    border-radius: 2rem;
    width: 80%;
    height: auto;
  }
  #about #business-summary #bottom p {
    font-size: 18px;
    padding: 15px;
    text-align: justify;
    hyphens: auto;
    line-height: 1.5;
  }
  .about_values h1 {
    font-size: 7vw;
    color: #000000;
    text-align: center;
    margin: 25px 0 50px 0;
  }
  .about_valuesDiv {
    width: 100%;
    display: none;
    align-self: center;
  }
  .about_valuesDiv .title {
    width: 100%;
    padding: 20px;
    font-size: 7vw;
    text-align: center;
  }
  .about_valuesDiv .txt {
    width: 100%;
    float: none;
    text-align: justify;
    padding: 10px;
    font-size: 16px;
    line-height: 1.8;
  }
  .about_valuesli {
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Optionally, center items vertically */
}
  .about_valuesli li {
    width:fit-content;
    display: flex;
    float:left;
    padding: 10px;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #ddd;
  }
}
