.customBranding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 60px 20px;
  gap: 60px;
}

.brandingProcess {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 40px;
  gap: 60px;
  background-color: rgba(255, 255, 255, 0.8);
}

.brandingRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}


.bHead {
  font-family: Or;
  font-size: 25px;
  padding: 0 20px 0 20px;
  text-align: center;
  color: black;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.bHead span {
  color: #dd0000;
}

.brandingContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.bpCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 270px;
  height: 270px;
  cursor: pointer;
  position: relative;
}

.bpCardImage {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(221,0,0,0.7);
  z-index: 20;
  overflow: hidden;
}

.bpCardImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 10%;
}

.bpCard p {
  font-family: Or;
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  z-index: 22;
}

.bpCard i {
  font-size: 50px;
  z-index: 22;
  color: white;
}

.bpCard p span {
  color: white;
  font-family: Os;
}

.jHead {
  font-family: Os;
  font-size: 40px;
  text-align: right;
  color: black;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.jHead span {
  color: #dd0000;
}

.brImageSection {
  width: 500px;
  height: 400px;
  overflow: hidden;
  border: 3px solid red;
  border-top: none;
  border-left: none;
  padding: 20px;
}

.brImageSection img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.brandingColumn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin-left: 40px;
}

@media (max-width: 768px) {
  .brandingRow {
    flex-direction: column;
    gap: 50px;
  }
  .bpCard {
    width: 185px;
    height: 185px;
  }
  .brImageSection {
    width: 400px;
    height: 300px;
  }
  .bpCard p {
    font-size: 15px;
    line-height: 20px;
  }
  .brandingColumn {
    align-items: center;
    gap: 50px;
    margin-left: 0;
  }
  .jHead {
    text-align: center;
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 992px) {
  .brandingRow {
    flex-direction: column;
    gap: 50px;
  }
  .brandingColumn {
    align-items: center;
    gap: 50px;
    margin-left: 0;
  }
  .jHead {
    text-align: center;
    padding: 0 20px 0 20px;
  }
}
