/* Normal Desktop :1200px to 1500px */
@media (min-width: 1200px) and (max-width: 1500px) {
    .container {
        width: 90%;
        max-width: 1400px;
    }
    .logo img {
        width: 80%;
    }
}

/* Normal Desktop :992px to 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
    .container {
        width: 85%;
    }
    .logo img {
        width: 70%;
    }
}

/* Tablet Desktop :768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: 90%;
    }
    .logo img {
        width: 60%;
    }
}

/* Small Mobile :Up to 768px */
@media (max-width: 768px) {
    .pb-140 {
        padding: 20px;
    }
    body {
        font-size: 14px;
    }
    .logo img {
        width: 50%;
    }
}

/* Large Mobile :480px to 767px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px;
    }
    .logo img {
        width: 50%;
    }
}

/* Small Mobile :Up to 480px */
@media only screen and (max-width: 480px) {
    .container {
        width: 95%;
    }
    .logo img {
        width: 40%;
    }
}
