@import url("https://fonts.googleapis.com/css2?family=Delius+Unicase:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}

.cities h2 {
  color: #000;
  text-align: center;
  font-family: "Delius Unicase", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.cities .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 370px 370px 370px;
  gap: 30px;
  grid-template-areas: "tower eve-street eve-street" "day-street day-street white-building" "night-street bridge bridge";
}
.cities .items .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.cities .items .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cities .items .item .text {
  display: flex;
  justify-content: space-between;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  background: linear-gradient(0deg, #241F24 0%, rgba(91, 91, 91, 0.45) 34.11%, rgba(187, 186, 192, 0.26) 62.5%);
}
.cities .items .item .text .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px 20px 0 20px;
  opacity: 0;
  transition: 1s;
}
.cities .items .item .text .header a {
  padding: 10px;
  border-radius: 8px;
  background: rgba(224, 224, 224, 0.5);
}
.cities .items .item .text .header a:hover {
  background: #E0E0E0;
}
.cities .items .item .text .footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cities .items .item .text .footer .author {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.cities .items .item .text .footer .date {
  color: #E0E0E0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cities .items .item:hover .text {
  background: unset;
}
.cities .items .item:hover .text .header {
  opacity: 1;
}
.cities .items .item:nth-child(1) {
  grid-area: tower;
}
.cities .items .item:nth-child(2) {
  grid-area: eve-street;
}
.cities .items .item:nth-child(3) {
  grid-area: day-street;
}
.cities .items .item:nth-child(4) {
  grid-area: white-building;
}
.cities .items .item:nth-child(5) {
  grid-area: night-street;
}
.cities .items .item:nth-child(6) {
  grid-area: bridge;
}

.nature h2 {
  color: #000;
  text-align: center;
  font-family: "Delius Unicase", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.nature .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 370px 770px 370px;
  gap: 30px;
  grid-template-areas: "mountain sea sea" "rocks rocks sunset" "flower-field flower-field tree";
}
.nature .items .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.nature .items .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nature .items .item .text {
  display: flex;
  justify-content: space-between;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  background: linear-gradient(0deg, #241F24 0%, rgba(91, 91, 91, 0.45) 34.11%, rgba(187, 186, 192, 0.26) 62.5%);
}
.nature .items .item .text .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px 20px 0 20px;
  opacity: 0;
  transition: 1s;
}
.nature .items .item .text .header a {
  padding: 10px;
  border-radius: 8px;
  background: rgba(224, 224, 224, 0.5);
}
.nature .items .item .text .header a:hover {
  background: #E0E0E0;
}
.nature .items .item .text .footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.nature .items .item .text .footer .author {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.nature .items .item .text .footer .date {
  color: #E0E0E0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nature .items .item:hover .text {
  background: unset;
}
.nature .items .item:hover .text .header {
  opacity: 1;
}
.nature .items .item:nth-child(1) {
  grid-area: mountain;
}
.nature .items .item:nth-child(2) {
  grid-area: sea;
}
.nature .items .item:nth-child(3) {
  grid-area: rocks;
}
.nature .items .item:nth-child(4) {
  grid-area: sunset;
}
.nature .items .item:nth-child(5) {
  grid-area: flower-field;
}
.nature .items .item:nth-child(6) {
  grid-area: tree;
}

.people {
  margin-bottom: 120px;
}
.people h2 {
  color: #000;
  text-align: center;
  font-family: "Delius Unicase", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  margin-top: 120px;
  margin-bottom: 80px;
}
.people .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 370px);
  gap: 30px;
  grid-template-areas: "item-1 item-2 item-3" "item-4 item-2 item-5" "item-6 item-7 item-5" "item-6 item-8 item-8" "item-9 item-9 item-10";
}
.people .items .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.people .items .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.people .items .item .text {
  display: flex;
  justify-content: space-between;
  position: absolute;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  background: linear-gradient(0deg, #241F24 0%, rgba(91, 91, 91, 0.45) 34.11%, rgba(187, 186, 192, 0.26) 62.5%);
}
.people .items .item .text .header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px 20px 0 20px;
  opacity: 0;
  transition: 1s;
}
.people .items .item .text .header a {
  padding: 10px;
  border-radius: 8px;
  background: rgba(224, 224, 224, 0.5);
}
.people .items .item .text .header a:hover {
  background: #E0E0E0;
}
.people .items .item .text .footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.people .items .item .text .footer .author {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.people .items .item .text .footer .date {
  color: #E0E0E0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.people .items .item:hover .text {
  background: unset;
}
.people .items .item:hover .text .header {
  opacity: 1;
}
.people .items .item:nth-child(1) {
  grid-area: item-1;
}
.people .items .item:nth-child(2) {
  grid-area: item-2;
}
.people .items .item:nth-child(3) {
  grid-area: item-3;
}
.people .items .item:nth-child(4) {
  grid-area: item-4;
}
.people .items .item:nth-child(5) {
  grid-area: item-5;
}
.people .items .item:nth-child(6) {
  grid-area: item-6;
}
.people .items .item:nth-child(7) {
  grid-area: item-7;
}
.people .items .item:nth-child(8) {
  grid-area: item-8;
}
.people .items .item:nth-child(9) {
  grid-area: item-9;
}
.people .items .item:nth-child(10) {
  grid-area: item-10;
}

/*# sourceMappingURL=style.css.map */
