/* 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) {}


/* small mobile :320px. */
@media (max-width: 767px) {}

/* Large Mobile :480px. */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .container {
        width: 450px
    }

}

@media (min-width: 320px) and (max-width: 480px) {
    .cp-practice-area-s1 .service-wrapper .content-inner .item-content h3 {
        color: #fff;
        display: inline-block;
        font-size: 16px !important;
        margin-top: 26px !important;
        margin-left: 10px;
    }

    .section-tittle h2 {
        font-size: 33px;
    }

    .about-section-tittle h2 {
        font-size: 29px;
    }

    .fa-1em-mq {
        font-size: 1.1em !important;
    }

    /* Full Calendar Start */
    #verifyOtpContainer .verify-otp-main {
        flex-direction: column !important;
    }

    .verify-otp-main div {
        display: flex !important;
    }

    .fc-toolbar h2 {
        font-size: 20px !important;
    }

    .fc .fc-button {
        font-size: 10px !important;
    }

    /* Full Calendar End */
}