.sectionProducts {
  padding: 50px 0;
}
.productItem {
  position: relative;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f5f5f5;
  overflow: hidden;
  height: 100%;
}
.productItemImg {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
}
.productItemImg img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.productItemContent {
  padding: 20px 15px 35px;
  background-color: #fff;
  border-top: 1px solid #f5f5f5;
}
.productItemContent h3 {
  text-transform: uppercase;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.productItemContent p {
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: justify;
}
.productItemDownload {
  cursor: pointer;
}
.productItemDownload svg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.productItemDownload img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 14px;
  bottom: 14px;
}
.productCompany img {
  width: 120px;
}
.mainNav {
  position: relative;
  width: 100%;
}
.mainNav ul {
  width: calc(100% - 70px);
  position: absolute;
  bottom: 10px;
  right: 70px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  font-weight: 400;
  z-index: 100;
  display: flex;
  gap: 5%;
}
.mainNav li {
  background-color: #fff;
  list-style: none;
  margin: 0.5em 0 0;
  font-size: 1.75em;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0 10px 5px;
  border-radius: 5px;
}
.mainNav li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainNav li.invisible {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.mainNav li.animate {
  opacity: 0;
  animation-duration: 0.25s;
  animation-name: easeOutBounce;
  animation-fill-mode: forwards;
}
.mainNav a {
  text-decoration: none;
  color: #0275cc;
}
.productCompanyVideo {
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: flex-start;
}
@keyframes easeOutBounce {
  0% {
    font-size: 0;
  }
  37% {
    font-size: 1.75em;
  }
  55% {
    font-size: 1.3125em;
  }
  73% {
    font-size: 1.75em;
  }
  82% {
    font-size: 1.6275em;
  }
  91% {
    font-size: 1.75em;
  }
  96% {
    font-size: 1.715em;
  }
  100% {
    font-size: 1.75em;
    opacity: 1;
    display: block;
  }
}
