.catalog {
  width: 100%;
  box-sizing: border-box;
  padding: 0 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 30px 0 0;
}


.route {
  display: flex;
  align-items: center;
  gap: 10px;
}

.route a {
  font-size: 18px;
  color: #333;
}

.route a:hover {
  color: #00B7FF;
}

.route hr {
  width: 1px;
  height: 20px;
  border: none;
  background: #333;
  transform: rotate(15deg);
}




.download {
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dowMg {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dowMg img {
  display: block;
  width: 100%;
}

.doeFloat {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(0, 0, 0, .8);
  transition: .4s;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

li:hover .doeFloat {
  top: 0;
}

.doeFloat h5 {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}

.download a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 180px;
  box-sizing: border-box;
  border: 2px solid #408AC2;
  height: 40px;
  font-size: 17px;
  color: #408AC2;
  letter-spacing: 1px;
  font-weight: bold;
  transition: .4s;
}

.download a:hover {
  background: #408AC2;
  color: #fff;
}

@media screen and (max-width:1440px) {

  .download {
    gap: 20px;
  }

}

@media screen and (max-width:1280px) {

  .download a {
    margin: 10px auto;
    width: 120px;
    height: 35px;
    font-size: 15px;
  }

  .catalog {
    padding: 0 5%;
  }

}


@media screen and (max-width:1024px) {

  .download {
    gap: 20px;
    margin: 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }

}
