/* titles change */
.titlesContainers {
  width: 80%;
  margin: 50px auto 80px;
  display: flex;
  max-width: 1183px;
  position: relative;
  color: #000000;
  font-size: 16px;
  line-height: 20px;
}
.titlesContainers::after {
  content: "";
  height: 3px;
  background: #d6001a;
  width: calc((102% / 6) + 1%);
  position: absolute;
  bottom: -16px;
  -webkit-transition: left 0.5s ease-in-out;
  -o-transition: left 0.5s ease-in-out;
  transition: left 0.5s ease-in-out;
}
.titlesContainers[data-title-selected-id="1"]::after {
  left: -1%;
}
.titlesContainers[data-title-selected-id="2"]::after {
  left: calc((100% / 6) - 0.5%);
}
.titlesContainers[data-title-selected-id="3"]::after {
  left: calc((100% / 6) * 2 - 0.5%);
}
.titlesContainers[data-title-selected-id="4"]::after {
  left: calc((100% / 6) * 3 - 0.5%);
}
.titlesContainers[data-title-selected-id="5"]::after {
  left: calc((100% / 6) * 4 - 0.5%);
}
.titlesContainers[data-title-selected-id="6"]::after {
  left: calc((100% / 6) * 5);
}
.titlesContainers::before {
  content: "";
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  width: 102%;
  position: absolute;
  bottom: -15px;
  left: -1%;
}
.titleChange {
  text-align: center;
  cursor: pointer;
  flex-basis: 100%;
}
.titleChange.selected {
  font-weight: 600;
}
.mainDiv {
  display: none;
}
.mainDiv.selected {
  display: block;
}
/* end titles change */

.cataloguesContainer {
  width: 100%;
  height: auto;
}
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.bkImg {
  width: 100%;
  height: 28vw;
  object-fit: cover;
  object-position: center;
}

.info {
  color: #000000;
  width: 60%;
  max-width: 456px;
}
.text {
  font-size: 14px;
  line-height: 18px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.logoImg {
  width: auto;
  display: block;
  max-width: 300px;
}
.row:nth-child(odd) .info {
  margin-left: 13%;
}
.row:nth-child(even) .info {
  margin: auto;
}
.redLineBtn {
  width: 150px;
}
@media screen and (max-width: 1100px) {
  .row {
    display: flex;
    flex-direction: column;
  }
  .row:nth-child(even) {
    flex-direction: column-reverse;
  }
  .bkImg {
    height: 31vh;
  }
  .logoImg {
    max-width: 100%;
    width: 215px;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .info {
    width: 90%;
    margin: auto;
  }
  .row:nth-child(odd) .info {
    margin: auto;
  }
  .viewMoreGo {
    margin-top: 15px;
    margin-bottom: 35px;
  }
  .text {
    font-size: 13px;
    line-height: 17px;
  }
  .redLineBtn {
    margin-bottom: 40px;
  }
}
