#content .container {
  margin-top: 30px;
}
#content .container .title {
  text-align: left;
  margin-left: 25px;
}
#content .container .agents {
  display: flex;
  flex-wrap: wrap;
}
#content .container .agents .agent {
  margin: 10px 20px;
  width: 100px;
  height: 100px;
  border-radius: 10%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#content .container .agent-content {
  display: flex;
  flex-wrap: wrap;
  margin: 25px;
  align-items: center;
  gap: 128px;
}
#content .container .agent-content .description {
  flex: 1;
  gap: 38px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-size: 18px;
}
#content .container .agent-content .description .agent-title img {
  height: 100px;
}
#content .container .agent-content .thumbnail {
  flex: 1;
  text-align: right;
}
#content .container .agent-content .thumbnail img {
  width: 100%;
}
#content .container .products {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
#content .container .products .product {
  flex-basis: 20%;
  padding: 10px;
  box-sizing: border-box;
}
#content .container .products .product .product-content {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
#content .container .products .product .product-content .thumbnail {
  padding-bottom: 100%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  margin-bottom: 20px;
  position: relative;
  display: block;
}
#content .container .products .product .product-content .thumbnail .magnifier {
  width: 20px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: white;
  padding: 5px;
  border-radius: 30px;
}
.agent-detail {
  margin-bottom: 50px;
}
.agent-detail p {
  margin-left: 25px;
  margin-right: 25px;
}
.agent-detail.hide {
  display: none!important;
}
@media only screen and (max-width: 480px) {
  #content .container .title {
    margin: 0 0 20px;
  }
  #content .container #agent-detail .agent-content {
    flex-direction: column;
    gap: 50px;
    margin: 0;
  }
  #content .container #agent-detail .agent-content .description {
    order: 1;
  }
  #content .container #agent-detail .agent-content .bottom-image {
    order: 2;
  }
  #content .container .products .product {
    flex-basis: 50%!important;
  }
  #content .container .agent-detail .title {
    margin-left: 0!important;
  }
  #content .container .agent-detail p {
    margin-left: 0!important;
    margin-right: 0!important;
  }
}

