body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
body{
  min-height: 100;
  position: relative;
}

#topHeader {
  width: 100%;
  background-color: #b3b3b3;
  height: 40px;
  display: flex;
  flex-direction: row;
}
.centerWrap {
  width: 100%;
}
#rightHeader {
  display: flex;
  justify-content: flex-end;
}

.topContainer {
  max-width: 100%;
  height: 100%;
  padding: 0px 20px 15px 20px;
  margin: 0;
}

.container-full {
  max-width: 100%;
  height: 100%;
  padding: 15px 20px 15px 20px;
  margin: 0;
}

.container {
  margin: auto;
  max-width: 1250px;
}
/*----------------------- footer -------------------------------------------------------*/
.footer2 {
  position: absolute;
  margin-top: 20px;
  bottom: 0;
  left: 0;
  right: 0;
}
#copyrightSection {
  background: #ccc;
  text-align: center;
  font-size: 14px;
  padding: 5px 0;
  line-height: 25px;
}
#footerLogo {
  float: left;
}

#footerLogo img {
  height: 25px;
}

#footerNum {
  float: right;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding: 20px 10px 0;
}

#bottomArea {
  padding: 20px 10px 0;
  font-size: 18px;
  color: #fff;
  float: left;
}

#bottomRightArea {
  float: right;
}

#bottomRightArea img {
  height: 30px;
  margin-top: -5px;
}
#socialMedia {
  margin: 10px 0;
}

.socialBtn {
  width: 34px;
  height: 34px;
  border-radius: 50px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  background-color: #ccc;
  display: inline-block;
  margin: 10px;
  font-size: 20px;
  border: 2px solid #fff;
  transition: 0.2s ease-in-out all;
}

.socialBtn:hover {
  color: #ccc;
  background: #fff;
}

/*----------------------------------footer--------------------------------------- */
nav {
  margin: auto;
  max-width: 1250px;
  padding: 5px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3vw;
}

nav ul li {
  text-decoration: none;
  display: inline-block;
  position: relative;
  background-color: #5c6d7b;
  width: 20vw;
  height: 4vw;
  overflow: hidden;
}

nav ul li a {
  display: block;
  color: white;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  padding-top: 4%;
  padding-bottom: 4%;
  overflow: hidden;
}

.active {
  background-color: #004587;
}
nav ul li:hover {
  background: #000;
  transition: 0.6s;
}

.logo {
  max-width: 350px;
  min-width: 250px;
}

.swiper {
  max-width: 1250px;
  width: 100%;
  height: 490px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.swiper-img {
  width: 100%;
  height: 100%;
}

.buttons-container {
  display: flex;
  gap: 2vw;
  align-items: start;
  justify-content: start;
  margin-bottom: 20px;
}

button {
  border: 0;
  background: #949191;
  text-align: center;
  font-size: 1rem;
  color: white;
  width: 13vw;
  height: 3vw;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.button-active {
  background-color: black;
  color: white;
  outline-color: orange;
}

button:hover {
  background-color: #004587;
  transition: 0.6s;
}
.exterior {
  display: none;
}

.interior {
  display: inline;
}

/* estilos grid marcas y menu  --------------------------------------------*/
.label {
  align-items: center;
  opacity: 0.6;
  color: black;
  height: 2rem;

  /*   box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);  */
  overflow: visible;
}
.labels {
  max-width: 1250px;
  margin: 10px auto;
  display: grid;
  font-size: 12px;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  overflow: hidden;
  color: white;
  padding: 1rem;
  max-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.cards {
  max-width: 1250px;
  margin: 50px 0px;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card a {
  display: block;
}

.fit-picture {
  object-fit: cover;
  max-width: 170px;
}

.test {
  overflow: hidden;
}

.card:hover a .fit-picture {
  max-width: 204px;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .labels {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .labels {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}



/*fin  estilos grid marcas y menu  --------------------------------------------*/
@media (width < 900px) {
  nav ul li a {
    padding-top: 4%;
    font-size: 20px;
  }
  .logo {
    width: 50%;
  }
}
@media (width < 600px) {
  .topContainer {
    padding: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 1vw;
    padding: 0;
    width: 100%;
  }
  nav ul li {
    width: 85%;
    height: 4vh;
    margin-left: 1rem;
  }
  .logo {
    width: 50%;
  }
  nav ul li a {
    padding: 2%;
    font-size: 15px;
  }
  .swiper {
    height: calc(100vh / 1.7);
  }
  button {
    height: 2rem;
    width: 6ren;
  }
}

/* button active */
.button-active {
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 0px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-active:before {
  content: "";
  background: linear-gradient(
    45deg,
    #f36161,
    #fbfafa,
    #e7dede,
    #b3b1b1,
    #f1e8e8,
    #f26d6d,
    #fcf7f7,
    #b6b6b6,
    #b2b0b0
  );
  position: absolute;
  top: -1px;
  left: -1px;
  background-size: 400%;
  z-index: -1;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 0px;
}

@keyframes glowing-button-active {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-active:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 0px;
}


.radio-button {
  float: left;
  margin: 0 5px 0 0;
  position: relative;
}

.radio-button label,
.radio-button input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.radio-button input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
}

.radio-button input[type="radio"]:checked + label {
  border: solid 2px #949191;
  border-radius: 4px;
}

.radio-button label {
  text-align: center;
  cursor: pointer;
  z-index: 90;
  line-height: 2.5em;
}



