/* Mobile landscape media query */
.product-brand .intro {
  text-align: center;
  position: relative; }
  .product-brand .intro h2 {
    margin-bottom: 10px;
    color: #001480; }

.product-brand .wrapper {
  width: calc(100% + 20px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 480px) {
    .product-brand .wrapper {
      margin-left: 0;
      width: 100%; } }
  .product-brand .wrapper .card-wrap {
    width: calc(20% - 20px);
    margin: 40px 10px 0;
    border: 2px solid #97a0a8;
    border-radius: 10px;
    padding: 38px 36px;
    background-color: #ffffff;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
    .product-brand .wrapper .card-wrap.cta::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: #0084f2;
      border-radius: 14px;
      opacity: 0;
      border-radius: 0;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .product-brand .wrapper .card-wrap.cta:hover::before {
      opacity: 0.3; }
    @media (min-width: 1200px) and (max-width: 1599px) {
      .product-brand .wrapper .card-wrap {
        padding: 30px 36px; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      .product-brand .wrapper .card-wrap {
        padding: 30px 36px; } }
    @media (max-width: 1024px) {
      .product-brand .wrapper .card-wrap {
        width: calc(25% - 20px); } }
    @media (max-width: 991px) {
      .product-brand .wrapper .card-wrap {
        width: calc(33.33% - 20px);
        padding: 30px 36px;
        margin: 20px 10px 0; } }
    @media (max-width: 595px) {
      .product-brand .wrapper .card-wrap {
        width: calc(50% - 20px);
        padding: 20px 25px; } }
    @media (max-width: 480px) {
      .product-brand .wrapper .card-wrap {
        width: 100%;
        margin: 20px auto 0;
        max-width: 324px; } }
    .product-brand .wrapper .card-wrap .img-wrap {
      max-width: 251px;
      max-height: 60px;
      height: 100%; }
    .product-brand .wrapper .card-wrap img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain; }
