@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

.container {
  max-width: 896px;
  width: 100%;
  margin: auto;
}
.header {
 
  display: flex;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
.header-logo {
  width: 547px;
  height: 140px;
}

.header-text {
  margin-left: 22px;
  font-size: 36px;
  font-family: "Montserrat";
}

.item {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
 
}
.parent {
  align-items: center;
  width: 896px;
  height: 748px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
}



.footer{
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact{
  font-size: 20px;
  font-family: "Montserrat";
  margin-left: auto;
  /* margin-left: 20px; */
  /* margin-left: auto; */
}

.wrapper:hover .box:not(:hover) {
  /* background-color: #1B1B1B; */
  opacity:0.2;
  transition: 0.5s;
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-auto-columns: minmax(260px, auto);
  grid-auto-rows: minmax(260px, auto);
  grid-gap: 1em;
  /* justify-items: stretch;
  align-items: stretch; */
}

.wrapper > div{
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  justify-content: center;
  
 
}



.box1 {
  grid-row: 1;
  width: 100%;
  height: 100%;
}
.box2 {
  grid-row: 2;
  width: 100%;
  height: 100%;
}
.box3 {
  grid-row: 1/3;
  width: 100%;
  height: 100%;
}
.box4 {
  grid-row: 1/3;
  width: 100%;
  height: 100%;
}
.box5 {
  grid-row: 3;
  width: 100%;
  height: 100%;
}
.box6 {
  grid-column: span 2;
  grid-row: 3;
  width: 100%;
  height: 100%;
  
}
.box7 {
  grid-column: 1/2;
  grid-row: 4/6;
  width: 100%;
  height: 100%;
}
.box8 {
  grid-column: 2/3;
  grid-row: 4/6;
  width: 100%;
  height: 100%;
}
.box9 {
  grid-column: 3;
  grid-row: 4;
  width: 100%;
  height: 100%;
}
.box10 {
  grid-column: 3;
  grid-row: 5;
  width: 100%;
  height: 100%;
  
}