@import url("./header.css");
@import url("./footer.css");

#mainRow {
    padding: 0;
    height: 40vh;
    /* background-image: url("../assets/images/rear-view-three-tech.png"); */
    background: linear-gradient(rgba(16, 15, 15, 0.6),
            rgba(16, 15, 15, 0.6)),
        url("../images/rear-view-three-tech.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#title {
    color: #f9f9f9;
    justify-content: center;
}

.heading {
    background: linear-gradient(rgba(16, 15, 15, 0.6), rgba(16, 15, 15, 0.6)), url("../images/rear-view-three-tech.png") no-repeat center;
    background-size: cover;
}

.headingP1 {
    font-weight: 400 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.sidePadding {
    padding: 0px 7% 0px 7%;
}

.accordion {
    overflow-anchor: none;
}

.collapse:not(.show) {
    display: none;
}

.accordion-item {
    border-radius: 5px;
}

/* Custom style */
.accordion-button::after {
    background-image: url("../images/+.png");
    transform: scale(0.9) !important;
    background-size: contain;
    height: 2.25rem;
    border-radius: 5px;
    border: none;
}

.accordion-button:not(.collapsed)::after {
    transform: scale(0.9) !important;
    background-image: url("../images/-.png");
    background-size: contain;
    height: 2.25rem;
    border-radius: 5px;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #00cbff;
    box-shadow: none;
    border-radius: 5px;
    border: none;
}

.accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    border: none;
    font-style: normal;
    border-radius: 5px;
    text-align: left;
    color: #1c1212;
    font-family: "Graviola Soft";
}

.accordion-body {
    color: #6b6969;
    font-family: "Graviola Soft";
    border-radius: 5px;
}

.main {
    padding-left: 135px;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    overflow-x: scroll;
    list-style: none;
    padding: 0;
    margin: 0;
    scrollbar-width: none; /* Hide scrollbar in Firefox */

    /* display: inline-block; */
}

.breadcrumb-item {
    display: inline-block;
    margin-right: 0px;
}

.breadcrumb-item::after {
    content: " >";
    color: #333;
}

.breadcrumb-item::before {
    content: "" !important;
}

.breadcrumb-item:last-child::after {
    content: "";
}

.breadcrumb::-webkit-scrollbar {
    display: none !important;
}

#mainContainer {
    background-color: #e9eef6;
}

@media screen and (max-width: 1340px) {
    .main {
        padding: 0px 10px 0px 10px;
    }
}

@media screen and (min-width: 320px) and (max-width: 540px) {

    .headingP1,
    .headingP2 {
        font-size: 24px !important;
    }
}

/* media till min laptop screen size */
@media (min-width: 768px) and (max-width: 1199px) {
    .sidePadding {
        padding: 0px 5%;
    }
}

/* media form min tablet to max tablet screen size */
@media (min-width: 481px) and (max-width: 767px) {
    .sidePadding {
        padding: 0px 5%;
    }
}


/* media for  less than max mobile screen size */
@media screen and (max-width: 480px) {

    .sidePadding {
        padding: 0px 15px;
    }

}