.focus{
margin-top: 100px;
margin-bottom: 80px;
}

.focus-cont{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-left: 50px;
  margin-right: 50px;
  gap: 20px;
}

.focus-head{
font-size: 40px;
font-weight: 300;
color: #173c51;
min-width: 400px;
}


.focus-descr{
  display: flex;
  align-items: center;
  width: 500px;
  font-size: 18px;
  font-weight: 200;
  padding-top: 10px;
  min-width: 300px;
}

.focus-pics{
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  gap: 50px;
  margin-top: 60px;
}


.pic{
  height: 180px;
  z-index: 20;
  opacity: 0;
  transition: 0.5s ease-in;
}

.pic:hover{
  box-shadow: 6px 8px 20px 0 rgb(0 0 0 / 50%);
}

.reveal{
opacity: 0;
transition: 1s ease-in;
}

.reveal.active{
  opacity: 1;
}

.focus-line{
  display: flex;
  position: absolute;
  width: 100vw;
  top: 90px;
  height: 1px;
  background-color: #173c51;
}

@media(max-width:1078px){
.focus{
  margin-top: 30px;
}
.focus-descr{
  text-align: center;
}

.focus-head{
  text-align: center;
  font-size: 30px;
}
}

@media(max-width:1170px){
  .pic{
    height: 120px;
  }

  .focus-line{
    top: 60px;
  }
}

@media(max-width:900px){
  .pic{
    height: 80px;
  }

  .focus-line{
    top: 40px;
  }
}

@media(max-width:700px){
  .pic{
    height: 70px;
  }

  .focus-line{
    top: 35px;
  }
}

@media(max-width:620px){
  .pic{
    height: 50px;
  }

  .focus-line{
    top: 25px;
  }
}

@media(max-width:500px){
  .pic{
    margin-left: 20px;
  }
  .focus-pics{
    gap: 20px;
  }

}


