.abtus{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80vh;
  margin-top: 80px;
  margin-bottom: 0px;
  background: url(images/afriglobal.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.abt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 80vh;
    padding-left: 10px;
    background-color: rgb(12, 12, 12, 0.7);
}
.abt p{
  width: 80%;
  max-width: 600px;
  color: var(--secondary-color);
  margin: 10px;
  text-align: center;
}
.abt button{
  align-items: center;
  max-width: 100px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  margin-bottom: 5px;
  color: var(--text-color);
  background-color: var(--dark-gold);
  border: none;
  padding: 5px 6px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px rgba(31, 29, 29, 0.5);
  flex-shrink: 0;
  min-width: 90px;
  cursor: pointer;
  transition: 0.3s;
}
.abt button:hover{
  color: var(--secondary-color);
  background-color: var(--primary-color);
}



.abtus2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px;
}
.abat{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 100%;
  padding: 10px;
  margin: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3),
                  3px 3px 5px rgb(0, 0, 0, 0.2),
                  inset 0px 0px 0px  rgba(0, 0, 0, 0.2),
                  inset 0px 0px 0px rgb(0, 0, 0, 0.2);
}
.abat h2{
   text-align: center;
   margin: 8px;
   color: var(--primary-color);
}
.abat p{
  text-align: center;
  margin: 6px;
  width: 80%;
}
.abat ul{
   color: var(--primary-color);
}
.abat li{
  margin-left: 15px;
  color: var(--text-color);
  margin: 4px;
}

.team-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px;
  padding-left: 30px;
}
.team-section h2{
  text-align: center;
}
.teams{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}
.team{
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   margin: 15px;
   flex-wrap: wrap;
   width: 320px;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3),
   3px 3px 5px rgb(0, 0, 0, 0.2),
   inset 0px 0px 0px  rgba(0, 0, 0, 0.2),
   inset 0px 0px 0px rgb(0, 0, 0, 0.2);
}
.team1{
  justify-content: center;
  align-items: center;
 flex: 1;
 width: 180px;
 height: 200px;
 overflow: hidden;
}
.team:hover{
 background-color: var(--primary-color);
}
.team:hover .team1 img{
  width: 210px;
  height: 230px;
}
.team:hover .team2 h3{
  color: var(--dark-gold);
}
.team:hover .team2 p{
  color: var(--secondary-color);
}
.team2{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 140px;
 height: 200px;
}
.team1 img{
  width: 180px;
  height: 200px;
}
.team2 h3{
   text-align: center;
   color: var(--primary-color);
   margin: 10px;
   font-size: 16px;
}
.team2 p{
   text-align: center;
   font-size: 12px;
}