.dealers-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 93px;
  column-gap: 27px;
  width: fit-content;
}

.dealers-grid-container-margin {
  margin: 81px auto 0 auto;
}

@media (max-width: 576px) {
  .dealers-grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

.dealer-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: fit-content;
}

.dealer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #0045FF;
  border-radius: 50%;
  flex-grow: 0; 
  flex-shrink: 0; 
  flex-basis: auto;
}

h5 {
  color: #FFFFFF;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
}

.dealer-info-container {
  display: flex;
  flex-direction: column; 
}

.dealer-info-inner-container {
  display: flex;
  flex-direction: column;
  margin-top: 7px;
}

.dealer-info-inner-container p {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  margin: 0;
}

.dealer-info-inner-container span {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  color: #2945C0;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.icons-container {
  display: flex;
  width: 125px;
  height: 26px;
  gap: 9px;
  margin-top: 13px;
}

.dealers-services-container {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
}

.dealers-filters-container {
  display: flex;
  flex-direction: column;
  gap: 31px;
  justify-content: center;
  align-items: center;
}

.dealers-services-inner-container {
  display: flex;
  gap: 6.76px;
  align-items: center;
  cursor: pointer;
}

.dealers-services-inner-container p {
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #0D2E4F;
  margin: 0;
}

.view-all-dealers {
  cursor: pointer;
}

.view-all-dealers p {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0px;
  color: #0f3caa;
  text-decoration: underline;
  margin: 0;
}

.select-filter {
  position: relative;
  border-radius: 3px;
  border: solid 1px #DEE0E9;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  padding: 14px 44px 14px 24px !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("https://5838587.fs1.hubspotusercontent-na1.net/hubfs/5838587/dropdown-arrow.svg"); !important;
  background-position: right 24px center !important;
  background-repeat: no-repeat !important;
}


