.divPageTitle {
  margin-top: 50px;
}

.AboutCover {
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 50vh;
  z-index: -1;
  background-color: #CFD0CE;
  text-align: center;
}

.AboutCover:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: black;
  opacity: .5;
}

.AboutCover img {
  margin: auto;
  height: 50vh;
}

.txtTitle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: var(--bbBlack);
  word-wrap: break-word;
}

.AboutTitle {
  color: var(--bbWhite);
  font-size: 10vw;
  font-family: 'Segoe UI Black';
}

.AboutInfo {
  display: flex;
  flex-wrap: wrap;
  margin: 40px;
  max-width: 1024px;
}

@media only screen and (min-width: 800px){
  .AboutInfo {
    flex-wrap: nowrap;
    column-gap: 20px;
    margin: 40px auto;
  }
}

.imgAbout {
  width: 100%;
  margin: auto;
  border-radius: 1.3rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media only screen and (min-width: 800px){
  .imgAbout {
    width: 30%;
    max-width: 300px;
    margin: auto 20px;
  }
}

.AboutInfo p {
  max-width: 800px;
  margin: 20px auto;
  padding: 0;
}

.divContactButton {
  width: 100%;
}

.btn {
  margin: 0 auto 60px auto;
  display: block;
}