.tittle-cat h2 {
    font-weight: normal;
    font-size: 18px;
}
.big-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    margin: 20px auto;
    background: #ECECEC;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
    -moz-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
    box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
    width: 94%;
}
.parent-cat {
    display: -ms-grid;
    display: -webkit-grid;
    display: -moz-grid;
    display: grid;
    margin: 15px;
    -ms-grid-columns: 1fr 1fr;
    -webkit-grid-template-columns: 1fr 1fr;
    -moz-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.img-cat img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.img-cat {
    width: 100%;
    height: 72%;
    background: #ffffff;
}
.tittle-cat {
    width: auto;
    height: 28%;
    background: var(--primary);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
}
.box-cat {
    -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.link-a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.text2 {
    max-width: 98.5%;
    margin: 40px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #E3E3E3;
    font-size: 26px;
    text-align: justify;
    padding: 30px 40px 60px;
    line-height: 2;
    position: relative;
    font-family: 'dana-small', sans-serif;
  }
  
  .paragraph {
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-top: 10px;
  }
  
  .des {
    font-size: 20px;
  }
  
  .title {
    font-size: 35px;
    margin-top: 10px;
    color: black;
    -webkit-transform: scaleX(1.3);
    -ms-transform: scaleX(1.3);
    transform: scaleX(1.3);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    display: inline-block;
    font-weight: 500;
  }

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%, 100% {
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.rob {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .text2 {
        max-width: 94%;
        margin: 20px auto;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background-color: #E3E3E3;
        font-size: 26px;
        text-align: justify;
        padding: 20px;
        line-height: 2;
        position: relative;
        font-family: 'dana-small', sans-serif;
        -webkit-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
        -moz-box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
        box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.22);
      }
      
      .title {
        font-size: 25px;
      }
      .des {
        font-size: 16px;
      }    
}
@media (max-width: 440px) {
    .brands-grid {
        display: -ms-grid;
        display: -webkit-grid;
        display: -moz-grid;
        display: grid;
        gap: 1rem;
        list-style: none;
        -ms-grid-columns: (minmax(100px, 1fr))[auto-fit];
        -webkit-grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        -moz-grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        /* -ms-grid-columns: (1fr)[2]; */
        -webkit-grid-template-columns: repeat(2, 1fr);
        -moz-grid-template-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}