@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.title {
  animation: fadeIn 10s ease-out;
  color: red;
}

.categoryImage {
    overflow: hidden;
    position: relative;
    transition: transform 0.5s;
    
}

.categoryImage:hover {
    transform: scale(1.1);
}

.about-text {
        /* Define your animation here */
        animation-name: slidein;
        animation-duration: 3s;
    }

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
          margin-left: 0%;
          width: 100%;
    }
}

/* CSS for About Us Page */ 

.insideArticle {
    background-color: #FFFFFF;
    box-shadow: rgba(232, 234, 237, 0.5) 0px 0px 10px 0px;
    box-sizing: border-box;
    padding: 21px 37px 17px 35px;
}

h1.entryTitle {
    box-sizing: border-box;
    color: #212121;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 40.8px;
    word-wrap: break-word;
    margin: 0px 25px 0px;
}

p {
    box-sizing: border-box;
    color: #212121;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 25.5px;
    margin: 0px 0px 25.5px;
    word-wrap: break-word;
    text-align: justify;
}

.downArticle {
    background-image: linear-gradient(to right bottom, #4506EC, #190F87);
    background-repeat: repeat-x;
    /*background-color: #83B0DE;*/
    box-shadow: rgba(232, 234, 237, 0.5) 0px 0px 10px 0px;
    box-sizing: border-box;
    padding: 50px;
}

@media only screen and (max-width: 768px) {
    h1.entryTitle {
        font-size: 28px;
        line-height: 34px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .insideArticle {
        padding: 15px;
    }

    .downArticle {
        padding: 30px;
    }
}

@media only screen and (max-width: 480px) {
    h1.entryTitle {
        font-size: 24px;
        line-height: 30px;
    }

    p {
        font-size: 15px;
        line-height: 22.5px;
    }

    .insideArticle {
        padding: 10px;
    }

    .downArticle {
        padding: 20px;
    }
}

h2.widgetTitle {
    background-color: #190F87;
    box-sizing: border-box;
    color: #FFFFFF;
    font-family: "Open Sans Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin: 0px 0px 30px;
    word-wrap: break-word;
    text-align: left;
    border-radius: 18px;
}

@media only screen and (max-width: 768px) {
    h2.widgetTitle {
        font-size: 18px;
        line-height: 28px;
        margin: 0px 0px 20px;
        border-radius: 15px;
    }
}

@media only screen and (max-width: 480px) {
    h2.widgetTitle {
        font-size: 16px;
        line-height: 26px;
        margin: 0px 0px 15px;
        border-radius: 12px;
    }
}

p.widgetContent {
    box-sizing: border-box;
    color: #212121;
    cursor: pointer;
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 25.5px;
    list-style-type: none;
    text-align: justify;
    word-wrap: break-word;
}

@media only screen and (max-width: 768px) {
    p.widgetContent {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 480px) {
    p.widgetContent {
        font-size: 15px;
        line-height: 22.5px;
    }
}

/* CSS Inspector two columns */ 

.leftSide, .rightSide {
    background-color: #ffffff;
    border-radius: 18px;
    display: block;
    padding: 40px 32px;
}