@font-face {
  font-family: "Ando-Custom";
  src: url("../font/Montserrat-VariableFont_wght.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  font-family: "Ando-Custom", sans-serif;
  transition: 0.5s;
}

#filterS {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#filterS .up {
  display: inherit;
  flex-direction: row;
  margin: 2rem 0;
  flex-wrap: wrap;
}
#filterS .up .filterItem {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0 1rem;
}
#filterS .up .filterItem .filterItems {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
#filterS .up .filterItem .filterItems select {
  flex-grow: 1;
}
#filterS .up .filterItem label {
  color: rgba(17, 30, 107, 0.9);
  font-size: 1.2rem;
  margin: 1rem 0;
}
#filterS .up .filterItem select {
  padding: 0.3rem 1rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
#filterS .srcBtnCont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
#filterS .srcBtnCont .srcBtn {
  background-color: rgba(17, 30, 107, 0.9);
  color: white;
  padding: 0.5rem 2rem;
  cursor: pointer;
  margin-right: 2rem;
  border: 0;
  border-radius: 5px;
  font-size: 1.2rem;
}
#filterS .srcBtnCont .srcBtnAdv {
  color: rgba(17, 30, 107, 0.9);
  cursor: pointer;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border-radius: 5px;
  text-decoration: none;
}

#latestCars {
  display: flex;
  width: 80vw;
  margin: 0 auto;
}
#latestCars .title {
  font-size: 2rem;
  margin: 2rem 0;
  color: rgba(17, 30, 107, 0.9);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
#latestCars.grid {
  flex-wrap: wrap;
  justify-content: flex-start;
}
#latestCars.grid .car {
  width: calc(25% - 2rem);
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  box-sizing: border-box;
  margin: 1rem;
  max-height: 478px;
}
#latestCars.grid .car .carImage {
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
#latestCars.grid .car .carImage img {
  width: 100%;
  height: 100%;
}
#latestCars.grid .car:hover .carImage img {
  transform: scale(1.05);
}
#latestCars.grid .car .carText {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 50%;
  box-sizing: border-box;
  padding-top: 1rem;
}
#latestCars.grid .car p {
  display: flex;
  align-items: center;
}
#latestCars.grid .car p img {
  height: auto;
  width: 1rem;
  margin-right: 0.5rem;
}
#latestCars.grid .car .carName {
  margin: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}
#latestCars.grid .car .carPrice {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(17, 30, 107, 0.9);
  margin-left: 1rem;
}
#latestCars.grid .car .carPrice span {
  text-decoration: line-through;
  color: rgba(255, 0, 0, 0.5);
}
#latestCars.grid .car .carDetails {
  display: flex;
  justify-content: space-between;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
}
#latestCars.grid .car .schedBtn {
  margin: 0.5rem;
  padding: 0.5rem 0;
  display: block;
  text-align: center;
  color: rgba(17, 30, 107, 0.9);
  cursor: pointer;
  border-radius: 5px;
}
#latestCars.grid .car .schedBtn:hover {
  background-color: rgb(235, 235, 235);
}
#latestCars.grid .car .schedBtn.dis {
  color: rgba(0, 0, 0, 0.2);
}
#latestCars.grid .car .schedBtn.dis:hover {
  background-color: white;
}
#latestCars.grid .car .detBtn {
  margin: 0.5rem;
  background-color: rgba(17, 30, 107, 0.9);
  display: block;
  text-align: center;
  padding: 0.5rem 0;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}
#latestCars.grid .car .detBtn:hover {
  opacity: 0.9;
}
#latestCars.grid .car .carAttr {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#latestCars.grid .car .carAttr p {
  padding: 0.2rem 1rem;
  border-radius: 5px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
  display: block;
  text-align: center;
  margin: 0;
}
#latestCars.grid .car .carAttr p.promo {
  background-color: green;
}
#latestCars.grid .car .carAttr p.rez {
  background-color: red;
}
#latestCars.grid .car .carAttr p.new {
  background-color: orange;
  opacity: 1;
}
#latestCars.grid .car .carAttr p.order {
  background-color: rgba(17, 30, 107, 0.9);
}

footer {
  box-sizing: border-box;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(17, 30, 107, 0.9);
  color: white;
  font-size: 1rem;
  margin-top: 2rem;
}
footer .top {
  display: inherit;
  flex-direction: row;
  justify-content: space-between;
}
footer .top * {
  width: 33.3333333333%;
  display: inherit;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
footer .top * p, footer .top * a {
  width: 100%;
  margin: 0.3rem;
  text-decoration: none;
  color: white;
}
footer .top * p.title, footer .top * a.title {
  font-size: 1.2rem;
  font-weight: bold;
}
footer .top * .social {
  display: inherit;
  flex-direction: row;
  justify-content: space-around;
}
footer .top * .social img {
  height: 25px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 1rem;
}
footer .bottom {
  margin-top: 1rem;
  display: inherit;
  flex-direction: row;
  justify-content: center;
}

.aboutContainer {
  padding: 2rem 10vw;
}
.aboutContainer p {
  margin: 1rem 0;
}
.aboutContainer p.title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.aboutContainer p.desc {
  text-indent: 2rem;
}
.aboutContainer p.subTitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #filterS {
    z-index: 9998;
    top: calc(-100% - 3rem);
    left: 0;
    width: 100vw;
    height: auto;
  }
  #filterS.active {
    top: 3rem;
  }
  #filterS .up {
    flex-direction: column;
  }
  #filterS .up .filterItem .filterItems select {
    max-width: 50%;
  }
  .mainArea {
    margin-left: 0;
    width: 100%;
  }
  .srcRefine {
    margin: 0;
    padding: 0.5 0;
    z-index: 9999;
  }
  .srcRefine .container label {
    display: none;
  }
  .srcRefine #order {
    padding: 0.3rem;
  }
  .srcRefine .mobileFilter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgba(17, 30, 107, 0.9);
    font-weight: bold;
    cursor: pointer;
  }
  #latestCars {
    width: 100vw;
  }
  #latestCars .title {
    padding: 0 1rem;
  }
  #latestCars.grid .car {
    width: calc(100% - 2rem);
  }
  footer {
    padding: 1rem;
  }
  footer .top {
    flex-direction: column;
  }
  footer .top * {
    width: 100%;
    padding: 0.2rem 0;
  }
  footer .top * p, footer .top * a {
    font-size: 0.9rem;
  }
  footer .top * p.title, footer .top * a.title {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1600px) {
  form {
    left: 1rem;
  }
  .mainArea {
    margin-left: 20vw;
    width: 80vw;
  }
}/*# sourceMappingURL=index.css.map */