@media screen and (min-device-width: 1024px) and (max-device-width: 1200px) {
    .hero-content {
        padding: 10rem 5rem;
    }
}

@media screen and (min-device-width: 992px) and (max-device-width: 1024px) {
    /* STYLES HERE */
}

@media screen and (min-device-width: 767px) and (max-device-width: 991px) {

    .hero-section .company-name{
        font-size: 8rem;
    }

    .w-50 {
        width: auto !important;
    }

    /* Our-service-section */

    .our-services {
        padding: 0 10px;
    }

    /* Hide the list on small screens */
    .events-category {
        display: none;
    }

   /* Show the select dropdown instead */
   .events-category-dropdown {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid;
    border-radius: 4px;
    line-height: 2;
    background-color: var(--light-green);
    padding-inline-end: 28px;
}


    /* Footer-css */

    .footer ul {
        justify-content: space-between;
        margin-top: 20px;
    }

    .fixed-top {
        padding-inline-start: 10px;
        left: -5px;
        width: 100%;
    }

}

@media screen and (max-width: 767px) {

    .w-50 {
        width: auto !important;
    }


    .container-medium,
    .container-small,
    .container {
        padding: 0 20px;
    }

    .btn-primary {
        min-width: 190px;
        min-height: 55px;
        padding: 8px 10px;
    }

    .fixed-top {
        padding-inline-start: 10px;
        left: -5px;
        width: 100%;
    }

    h2 {
        font-size: 38px;
    }

    p {
        font-size: 1rem;
    }

    /* Banner-css */
    .hero-section .company-name {
        font-size: 50px;
    }

    .hero-section .lead {
        font-size: 20px;
    }

    .hero-section .intro {
        font-size: 1rem;
    }

    /* Our-goal-section-css */
    .goals-img-block {
        width: 98%;
    }

    .goal-block {
        margin: 40px 0;
    }

    .goals-section .goal-block:nth-child(odd) {
        flex-direction: column-reverse;
    }

    div#full-gallery {
        height: 320px;
    }

    /* Hide the list on small screens */
    .events-category {
        display: none;
    }

    /* Show the select dropdown instead */
        .events-category-dropdown {
            display: block;
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid;
            border-radius: 4px;
            line-height: 2;
            background-color: var(--light-green);
            padding-inline-end: 28px;
        }


    /* Our-service-section */

    .our-services {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-box .image-box {
        width: 160px;
        height: 160px;
    }

    /* Footer-css */
    .footer ul {
        display: block;
        text-align: left;
        margin-block-start: 20px;
        justify-content: flex-start !important
    }

    .footer ul li {
        margin-bottom: 10px;
    }

    .footer-info span {
        width: 50px;
        height: 50px;
    }

}