/*=========================
        MAIN
=========================*/

.portfolio__main-content {
  margin-left: 80px;
  margin-right: 80px;
}
.main-content_gallery {
  display: flex;
  margin-top: 30px;
  flex-direction: row;
  align-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.main-content_gallery_imgcontainer {
  width: 360px;
  height: 360px;
  border-radius: 16px;
}
.portfolio__phototypes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portfolio__phototypes-container {
  display: flex;
  gap: 20px;
  background-color: #85c079;
  border-radius: 16px;
  height: 300px;
  padding: 25px;
}
.portfolio__phototypes-container-img {
  border-radius: 16px;
  width: 250px;
}
.portfolio__phototypes-container-textbox {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.portfolio__phototypes-container-textbox-title {
  font-family: "Monserrat", sans-serif;
  font-weight: bold;
  color: #2a2c2f;
  font-size: 24px;
}
.portfolio__phototypes-container-textbox-text {
  font-family: "Monserrat", sans-serif;
  font-weight: normal;
  color: #2a2c2f;
  font-size: 18px;
}
.portfolio__phototypes-container-button {
  display: inline-block;
  position: relative;
  margin-left: 726px;
  margin-top: 50px;
  padding: 15px 35px;
  background: #222222;
  color: #ffd700;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.portfolio__phototypes-container-button:hover {
  background: #515151;
}
