body {
    background: #eeeeee;
}

@media (min-width: 992px) {
    .container {
        width: 900px;
    }
}

header {
    background: #f1f6f9;
}

.logo-text {
    font-weight: bold;
}

.logo-text span{
    background: #334458;
    color:#fff;
}
.text-bold {
    font-weight: bold;
}

.hitesh img {
    width: 60px;
}

.hitesh h4, .hitesh h5 {
    font-size: 100%;
}

.testimonial .user {
    width: 60px;
    border-radius: 100%;
}

.testimonial h4, .testimonial h5 {
    font-size: 100%;
}

.text-justify {
    text-align: justify;
}

.order-now-btn {
    display: block;
    margin: 20px auto;
    width: 200px;
    height: 50px;
    background: darkred;
    color: #fff;
    border-radius: 15px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    animation: pulse infinite linear 1s;
}

@keyframes pulse {
    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(1);
    }
}