/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {}


/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .mb-55 {
        margin-bottom: 15px;
    }

}


/* small mobile :320px. */
@media (max-width: 767px) {

    .pt-40 {
        padding-top: 30px;
    }

    .mb-55 {
        margin-bottom: 0px;
    }

    .support-company-area .support-wrapper .left-content {
        width: 100%;
        /* padding-left: 30px; */
    }
}

/* Large Mobile :480px. */
/* @media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px
    }

} */

/* @media (max-width: 991px) {
    .support-company-area .support-wrapper .left-content .support-caption p {
        margin-bottom: 15px;
    }
} */