/* page bg */

.pageBg {
  position: relative;
  width: 100%;
  height: 205px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.bgImage {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bgText {
  font-family: poppinSemiBold;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #186eb7;
}

/* agent */

.agent {
  padding-top: 30px;
  background-color: #ffffff;
  padding-bottom: 50px;
}

.agentList {
  row-gap: 25px;
  margin-top: 50px;
}
.agentCard {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  background-color: #ffff;
}

.agentPhoto {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.agentName {
  font-size: 16px;
  font-weight: 500;
  font-family: poppinSemiBold;
  line-height: 24px;
}

.agentLocation {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #707070;
  flex: 1;
}

.btn-feature {
  width: 150px;
  background-color: #186eb7;
}

@media only screen and (max-width: 768px) {
  .pageBg {
    height: 155px;
  }
}

@media only screen and (max-width: 576px) {
  .agent {
    padding-top: 0px;
  }

  .pageBg {
    height: 135px;
  }
}
