.photogallery {
  padding: 60px 0
}
.photogallery__container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto
}
.photogallery__title {
  text-align: left;
  color: #5b9118;
  font-family: "Roboto Slab",sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px
}
.photogallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px
}
.photogallery__row {
  display: flex;
  justify-content: space-between;
  gap: 56px 20px;
  width: 100%
}
.photogallery__row-title {
  font-family: "Liberation Sans",sans-serif!important;
  color: #35404f;
  font-weight: 700;
  font-size: 18px;
  line-height: 17px;
  display: none
}
.photogallery__left {
  width: 74%
}
.photogallery__right {
  width: 24%
}
.photogallery__right img {
  width: 100%
}
.photogallery__link {
  display: none;
  width: 100%
}
.photogallery__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin: 30px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border: none;
  background-color: transparent;
  color: #35404f!important
}
.photogallery__button svg {
  transform: rotate(360deg);
  transition: transform .3s
}
.photogallery__button.active svg {
  transform: rotate(180deg);
  transition: transform .3s
}
@media (max-width:1240px) {
  .photogallery__title {
    font-size: 30px
  }
}
@media (max-width:1140px) {
  .photogallery__left {
    width: 68%
  }
  .photogallery__right {
    width: 30%
  }
}
@media (max-width:768px) {
  .photogallery {
    padding: 40px 0
  }
  .photogallery__title {
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 30px
  }
  .photogallery__wrapper {
    flex-wrap: wrap
  }
  .photogallery__row {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 15px 15px 20px;
    background-color: #fff
  }
  .photogallery__row-title {
    display: block
  }
  .photogallery__left {
    width: 100%
  }
  .photogallery__left img {
    width: 100%;
    height: auto
  }
  .photogallery__right {
    width: 100%
  }
  .photogallery__right img {
    display: none
  }
  .photogallery__link {
    display: flex
  }
  .photogallery__button {
    margin: 40px 0
  }
}