
.OurDistributorComp {
    border: solid 0.2px transparent;
    background: url("../neutrikImages/distributor_img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
}

.distributor__container {
    /* border: solid 2px yellow; */
    padding: 0.5rem;
    border-radius: 2rem;
    position: relative;
    margin: 1rem 0;
}

.distributor__h1 {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    /* text-decoration: underline; */
    color: #272727;
    /* border: solid; */
    width: fit-content;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    background: rgb(249, 249, 249);
}
.distributorsearch__filter {
    /* border: solid 1px #bfbfbf; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    /* background: #e3e3e353; */
}
.distributor_searchBox {
    /* border: solid 2px yellow; */
    width: 38%;
}
.distributorsearchInput {
    width: 100%;
    border: none;
    height: 3rem;
    padding: 10px;
    border-radius: 10px;
    /* border: solid 2px green; */
}
input:focus {
    border: none;
    outline: none;
}

.distributor__card_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.distributor__card {
    background: #e1e1e1eb;
    border-radius: 1rem;
    padding: 1rem;
    /* cursor: pointer; */
    transition: all 0.5s;
}
.distributor__card:hover {
    background: #ffffffdb;
}
.distributor__card:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.distributor__card_h1 {
    font-size: 1.3rem;
    font-weight: bold;
}

.distributor__card_p {
    font-size: 0.9rem;
    font-weight: 600;
}

.distributor__card_p2 {
    margin: 0;
    color: rgb(0, 0, 122); 
}
.distributor__card>a {
    /* border: solid 2px red; */
    color: rgb(0, 0, 122);
}

/* OurMsgcomp section css */

.dealerList__container {
    border: solid;
    /* text-align: center; */
}

.OurMsgComp__container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    margin: 3rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.932);
    /* border: solid; */
    border-radius: 1rem;
}

.OurMsgComp__container>h1 {
    font-weight: bold;
    font-size: 1.8rem;
    width: 20%;
}

.OurMsgComp__container>p {
    /* font-weight: bold; */
    margin-top: 1rem;
    text-align: left;
    padding: 0 1rem;
}

@media only screen and (max-width: 1400px) {
    .distributor__heroSection {
        height: 30vh;
    }
    .distributorsearchInput {
        /* width: 30%; */
    }
    .distributor__h1 {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1200px) {
    .distributor__heroSection {
        height: 20vh;
    }
    .OurMsgComp__container {
        flex-direction: column;
    }

    .OurMsgComp__container>h1 {
        width: 100%;
        margin-top: 0.5rem;
    }.OurMsgComp__container>p {
        margin: 0;
        padding: 0 1rem;
        padding-bottom: 0.5rem;
    }

}

@media only screen and (max-width: 920px) {
    .distributor__card_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .distributor__heroSection {
        height: 10vh;
    }
    .distributor__h1 {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 650px) {
    .distributor__card_container {
        grid-template-columns: 1fr;
    }
    .distributor__heroSection {
        height: 5vh;
    }
    .distributor__h1 {
        font-size: 1.7rem;
    }
    .distributor__card_h1 {
        font-size: 1rem;
        font-weight: bold;
    }
    .distributor__card_p {
        font-size: 0.7rem;
    }
    .distributor__card_p2 {
        font-size: 0.7rem;
    }
    .distributorsearchInput {
        /* width: 50%; */
    } 
}

@media only screen and (max-width: 600px) {
    .distributorsearch__filter {
        /* border: solid; */
        flex-direction: column;
        align-items: start;
    }
    .distributorsearchInput {
        margin-top: 0.5rem;
        width: 150%;
    }
    .distributor__h1 {
        width: 100%;
        text-align: center;
    }
    .distributor__card_container {
        /* border: solid; */
        padding-top: 0;
    }
}

@media only screen and (max-width: 420px) {
    .distributor_searchBox {
        /* border: solid; */
        padding: 0;
    }
    .distributorsearchInput {
        /* width: 80%; */
    }
    .distributor__card_container {
        /* padding: 2rem 0;  */
    }
    .distributor__card {
        /* padding: 0; */
    }
}