/* CSS Document */
@charset "utf-8";

:root {
  --red: #81000b;
  --red-medium: #c2131b;
  --orange: #d74f21;
  --yellow: #f79f1f;

  --grey: #666666;
  --grey-light: #b3b3b3;
  --grey-hard: #333333;

  --blue: #1c7ed6;
  --green: #25d366;
  --green-h: #128c7e;

  --black: #000000;
  --white: #ffffff;

  --font-gral: "Roboto", sans-serif;
  --fonttitle: "Roboto Flex", sans-serif;
  --font-bold: "Oswald", sans-serif;
}

*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* CONTENEDOR GENERAL */
.contenedor {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contenedor {
    max-width: 120rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bold);
}

p,
a,
span {
  font-family: var(--font-gral);
}

#top {
  scroll-margin: 80px;
}

/* Estilos Header */
header {
  position: fixed;
  width: 100vw;
  z-index: 888;
  height: 80px;
  top: 0px;
  background-color: var(--black);
  display: flex;
}

.navmenu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.navmenu__logotipo {
  width: 20%;
  height: auto;
}

@media (min-width: 768px) {
  .navmenu__logotipo {
    width: 17%;
    height: auto;
  }
}

.menu__mobil {
  width: 10%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: end;
}

.menu__mobil img {
  width: auto;
  height: 30px;
}

@media (min-width: 768px) {
  .menu__mobil {
    display: none;
  }
}

.links {
  display: none;
}

@media (min-width: 768px) {
  .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
  }
}

.links__movil {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  position: fixed;
  z-index: 999;
  background: linear-gradient(0deg, #121a3c 5%, #1f2e72);
  top: 0;
  right: -100%;
  display: flex;
  justify-content: center;
}

.links__movil a {
  color: var(--white);
  font-size: 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.show {
  right: 0;
  transition: all 0.3s;
}

.hidden {
  right: -100%;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .links__movil {
    display: none;
  }
}

.links a {
  font-size: 14px;
  text-decoration: none;
  color: var(--grey-light);
}

@media (min-width: 768px) and (max-width: 1020px) {
  .links a {
    font-size: 11px;
    text-decoration: none;
    color: var(--grey-light);
  }
}

.links a:hover {
  color: var(--green);
}

.links__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.links__link {
  font-weight: 600;
}

.cotizacion {
  background-color: var(--white);
  border-radius: 2px;
  border: solid 1px var(--grey-light);
  position: fixed;
  z-index: 999;
  right: 3%;
  top: 50px;
  width: 300px;
  padding: 10px;
}

.cotizacion h3 {
  font-size: 14px;
  color: var(--grey-hard);
  text-align: center;
}

.cotizacion__lista {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.cotizacion__item {
  border-bottom: solid 1px var(--grey-light);
  padding: 10px 0;
}

.cotizacion__item:hover {
  background-color: #eeeeee;
}

.cotizacion__info {
  display: grid;
  grid-template-columns: 180px 30px 40px;
  column-gap: 10px;
  align-items: baseline;
  padding: 0 5px;
}

.cotizacion__info span:nth-of-type(1) {
  font-size: 12px;
  color: var(--blue);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.cotizacion__info span:nth-of-type(2) {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
}

.cotizacion__info a {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--red-medium);
  cursor: pointer;
}

.quotes_action {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.btnSendQuote {
  font-size: 14px;
  border: none;
  font-family: var(--font-gral);
  color: var(--white);
  font-weight: 400;
  display: block;
  text-align: center;
  padding: 8px 26px;
  border-radius: 4px;
  background-color: var(--red-medium);
  width: 100%;
  cursor: pointer;
}
/* Estilos Banner Slider */

.slider {
  width: 100%;
  height: 600px;
  margin-top: 80px;
  position: relative;
}

.slider__rotation {
  position: relative;
  overflow: hidden;
  margin: auto;
}

.slider__hero {
  display: none;
}

.activeHero {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.btns__Slider {
  width: 100%;
  position: absolute;
  z-index: 40;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.btns__Slider a {
  cursor: pointer;
}

.btn__SlideHeroe {
  font-size: 6rem;
  font-weight: bold;
  padding: 1rem 3rem;
  color: var(--green);
}

.slider__image.image__movil {
  width: 100%;
  height: 600px;
}

.slider__image.image__movil img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: left;
}

.slider__image.image__desk {
  display: none;
}

@media (min-width: 768px) {
  .slider__image.image__desk {
    display: block;
    width: 100%;
    height: 600px;
  }

  .slider__image.image__desk img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }

  .slider__image.image__movil {
    display: none;
  }
}

.slider__grey {
  position: absolute;
  width: 100%;
  height: 600px;
  background-color: rgb(18 18 18 / 60%);
  z-index: 40;
}

.slider__content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 65%;
  height: 300px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slider__content h2 {
  font-size: 3rem;
  font-family: var(--fonttitle);
  color: var(--white);
  margin: 0 auto;
  width: 80%;
  text-align: center;
  font-weight: 500;
  font-style: italic;
}

@media (min-width: 768px) {
  .slider__content h2 {
    font-size: 38px;
    width: 100%;
  }
}

.slider__content h1 {
  font-size: 5rem;
  font-style: italic;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .slider__content h1 {
    font-size: 6rem;
    width: 80%;
  }
}

.slider__content a {
  color: var(--green);
  border: solid 2px var(--green);
  background-color: var(--black);
  padding: 8px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 30px;
  font-family: var(--font-bold);
  font-style: italic;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .slider__content a {
    font-size: 24px;
  }
}

/* Sección servicio de Paquetes */
.paquetes {
  position: relative;
  padding: 80px 0;
  background-image: url(../banners/bg-paquetes-mrwick.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  scroll-margin: 80px;
}

.paquetes h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--yellow);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.paquetes > p {
  text-align: center;
  font-size: 2.6rem;
  font-style: italic;
  color: var(--white);
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .paquetes > p {
    width: 50%;
  }
}

.list__paqts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-rows: auto;
  gap: 2em;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.paq {
  padding: 6%;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 4px var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 4px;
  gap: 2rem;
}

.head__paq {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: space-between;
}

.name__paq {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
}

.head__paq span:nth-of-type(2) {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-family: var(--font-bold);
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  font-style: italic;
  color: var(--black);
  font-family: var(--font-bold);
}

.head__paq .num__paq {
  webkit-clip-path: polygon(17% 0%, 100% 0%, 83% 100%, 0% 100%);
  clip-path: polygon(17% 0%, 100% 0%, 83% 100%, 0% 100%);
  background-color: var(--yellow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  color: var(--black);
  width: 42px;
  height: 34px;
}

.list__paq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.list__paq span {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--black);
  font-weight: 600;
  padding-bottom: 0.5em;
  border-bottom: solid 1px var(--grey-light);
  background: url(../icons/check.svg) no-repeat left top;
  background-size: 12px 12px;
  padding-left: 18px;
}

.oilliters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin: 0 auto;
  gap: 10px;
  background-color: var(--black);
}

.oilliters img {
  width: 40px;
  height: auto;
}

.oilliters p {
  font-size: 1.8rem;
  text-align: center;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  font-style: italic;
  font-family: var(--font-bold);
}
/* Services */
.services {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(0deg, #121a3c 5%, #1f2e72);
  scroll-margin: 80px;
}

.services h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.services > p {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services > p {
    font-size: 2.6rem;
    width: 50%;
  }
}

/* Styles list of services */

.list__services {
  display: flex;
  flex-direction: column;
  grid-template-rows: auto;
  column-gap: 2%;
  row-gap: 3%;
  margin-top: 50px;
  height: auto;
}

.bloq__services {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: flex-start; */
  justify-content: center;
  padding: 20px;
  border-bottom: dotted 1px var(--blue);
}

@media (min-width: 768px) {
  .bloq__services {
    flex-direction: row;
  }
}

.content__services {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  column-gap: 2%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .content__services {
    display: flex;
    flex-direction: row;
    width: 75%;
    margin-bottom: 0px;
  }
}

.image__services img {
  width: 120px;
  height: auto;
}

.btns__services {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .btns__services {
    width: 25%;
  }
}

.add__whatsapp {
  font-size: 1.6rem;
  font-family: var(--font-gral);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  border: solid 2px var(--white);
  padding: 10px 10px 10px 4px;
  border-radius: 4px;
  width: 100%;
  text-decoration: none;
}

@media (min-width: 768px) {
  .add__whatsapp {
    width: 70%;
  }
}

.tittle__services {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

@media (min-width: 768px) {
  .tittle__services {
    justify-content: flex-start;
    gap: 6px;
  }
}

.tittle__services h3 {
  font-size: 2.6rem;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
}

@media (min-width: 768px) {
  .tittle__services h3 {
    font-size: 4rem;
  }
}

.description__services p {
  font-size: 1.5rem;
  text-align: justify;
  font-weight: 400;
  line-height: 2.2rem;
  font-style: italic;
  color: var(--white);
}

@media (min-width: 768px) {
  .description__services p {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

.icon__whatsapp {
  width: 36px;
}

/* BANNER PROMOTIONS */

.banner__promotion {
  width: 100%;
  height: auto;
  margin: 80px 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .banner__promotion {
    flex-direction: row;
  }
}

.banner__image {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .banner__image {
    width: 50%;
  }
}

.banner__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* .slider__grey{
    position: absolute;
    width: 100%;
    height: 400px;
    background-color: rgb(18 18 18 / 55%);
    z-index: 40;
} */

.banner__info {
  width: 100%;
  height: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: var(--yellow);

  margin-top: -2px;
}

@media (min-width: 768px) {
  .banner__info {
    width: 50%;
    height: auto;
  }
}

.banner__info h2 {
  font-size: 48px;
  font-family: var(--font-gral);
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h2 {
    font-size: 38px;
  }
}

.banner__info h3 {
  font-size: 45px;
  font-family: var(--font-gral);
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h3 {
    font-size: 35px;
  }
}

.banner__info h4 {
  font-size: 62px;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h4 {
    font-size: 52px;
  }
}

/* BRANDS */

.towcar {
  position: relative;
  padding: 100px 0;
  background-image: url(../banners/servicio-grua-seccion.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  scroll-margin: 80px;
}

.towcar h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--yellow);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.header__tow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (min-width:768px) {
  .header__tow {
    flex-direction: row;
  }
}

.header__tow p {
  font-size: 2.4rem;
  color: var(--white);
  margin-right: 14px;
}

.header__tow img {
  width: auto;
}

.towcar__contact {
  display: flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
}

.towcar__contact h4 {
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.tow_column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.towcar__number a:nth-of-type(1) {
  margin-bottom: 20px;
}

#towdia,
#townoche {
  display: none;
}

.towcar__number a {
  font-size: 3.8rem;
  font-weight: 600;
  font-family: var(--fonttitle);
  color: var(--green);
  text-decoration: none;
  border: solid 3px var(--green);
  background-color: var(--black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 8px 20px;
  gap: 10px;
}

/* SYSTEM FORM CONTACT ALL */

.system__contact {
  display: flex;
  flex-direction: column;
  /* background-color: var(--grey); */
  background: linear-gradient(0deg, #121a3c 5%, #1f2e72);
  padding: 50px 0;
  scroll-margin: 80px;
}

.system__contact h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--yellow);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.form__contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  margin: 50px auto;
  background-color: var(--white);
  padding: 20px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .form__contact {
    flex-direction: row;
    gap: 20px;
  }
}

/* BANNER COTIZACION */
.quotation__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: var(--grey-light); */
  background-image: url(../banners/bg-contacto-mrwick.jpg);
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  padding: 22px;
  gap: 20px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .quotation__info {
    width: 60%;
  }
}

.quotation__info h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--grey-hard);
  font-size: 4rem;
  text-transform: uppercase;
  font-style: italic;
}

.quotation__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 80%;
}

.title__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.title__contact p {
  text-align: center;
  font-size: clamp(14px, 3vw, 24px);
  color: var(--blue);
  font-weight: 600;
}

.quotation__data span {
  text-align: center;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--black);
}

.links__quotation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: clamp(14px, 3vw, 22px);
  color: var(--blue);
  text-decoration: none;
}

/* Form Contacto */
.form {
  display: flex;
  flex-direction: column;
}

.form__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 0px;
}

@media (min-width: 768px) {
  .form__row {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
}

.form__input {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .form__input {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.form__input select {
  font-family: var(--font-gral);
  color: var(--grey-hard);
}

.inputText {
  width: 100%;
  padding: 16px 12px;
  font-size: 16px;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  outline: none;
  font-family: var(--fonttitle);
  color: var(--grey-hard);
}

.inputFloat {
  position: absolute;
  top: 40%;
  left: 12px;
  font-size: 16px;
  color: var(--grey-hard);
  pointer-events: none;
  transition: 0.2s ease;
  transform: translateY(-50%);
  font-family: var(--fonttitle);
}

.inputFloatArea {
  position: absolute;
  top: 12%;
  left: 12px;
  font-size: 16px;
  color: var(--grey-hard);
  pointer-events: none;
  transition: 0.2s ease;
  transform: translateY(-25%);
  font-family: var(--font-gral);
}

@media (min-width: 320px) and (max-width: 767px) {
  .inputFloat {
    font-size: 16px;
  }
}

.inputText:focus + .inputFloatArea {
  top: -10px;
  left: 6px;
  font-size: 16px;
  color: var(--blue);
  background-color: #fff;
  padding: 5px;
}

.inputText:focus + .inputFloat,
.inputText:valid + .inputFloat {
  top: -2px;
  left: 6px;
  font-size: 16px;
  color: var(--blue);
  background-color: #fff;
  padding: 5px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .inputText:focus + .inputFloat,
  .inputText:not(:placeholder-shown) + .inputFloat {
    font-size: 16px;
  }
}

.inputText:focus {
  border: solid 1px var(--blue);
  padding: 16px 12px;
  font-family: var(--font-gral);
  color:var(--grey);
}

.btnConsulta {
  padding: 12px 14px;
  font-size: 18px;
  font-family: var(--font-gral);
  font-style: italic;
  border: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  background-color: var(--red-medium);
  color: var(--white);
  border: solid 2px var(--red-medium);
  font-weight: 600;
  border-radius: 4px;
}

.btnConsulta:hover {
  background-color: var(--white);
  border: solid 2px var(--red-medium);
  color: var(--red-medium);
}

.btnOff{
  background-color: var(--grey);
  border: solid 2px var(--grey);
}

@media (min-width: 768px) {
  .btnConsulta {
    width: 45%;
  }
}

/* Office Maps */
.office {
  width: 100%;
  height: 300px;
  position: relative;
  margin: 0 auto;
}

.office__map iframe {
  width: 100%;
  height: 300px;
}

/* Footer */

footer {
  background-color: var(--black);
  padding: 80px 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer__columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__column__data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer__column__data {
    flex-direction: row;
    gap: 50px;
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
}

.footer__logotipo img {
  width: 50%;
  height: auto;
}

.footer__reserved {
  font-size: 12px;
  color: var(--white);
  padding-top: 20px;
  border-top: dotted 2px var(--grey);
}

/* Modal Aviso de Privacidad */
.privacy {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  background-color: var(--black);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  padding: 2rem;
  gap: 10px;
}

@media (min-width: 768px) {
  .privacy {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 4px;
    padding: 2rem;
  }
}

.privacy.close {
  display: none;
}

.logotype__privacy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .logotype__privacy {
    width: 20%;
  }
}

.logotype__privacy img {
  width: 90px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logotype__privacy img {
    width: 130px;
    height: auto;
    margin: 0 auto;
  }
}

.info__privacy {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .info__privacy {
    width: 60%;
    text-align: left;
  }
}

.info__privacy p {
  color: var(--white);
  font-size: clamp(16px, 2vw, 16px);
}

@media (min-width: 768px) {
  .info__privacy p {
    font-size: clamp(14px, 2vw, 14px);
  }
}

.info__privacy a {
  color: var(--blue);
  font-size: clamp(14px, 2vw, 14px);
  text-decoration: none;
}

.close__privacy {
  color: var(--white);
  background-color: var(--blue);
  font-size: clamp(14px, 2vw, 14px);
  text-decoration: none;
  width: 100%;
  font-family: var(--font-gral);

  border: none;
  display: block;
  padding: 8px 26px;
  border-radius: 4px;

  cursor: pointer;
}

@media (min-width: 768px) {
  .close__privacy {
    width: 20%;
  }
}

/* Botón WhatsApp */
#btnwhatsapp {
  width: 8rem;
  z-index: 98;
  top: 60%;
  right: 1%;
  position: fixed;
  background-color: var(--green);
  border-radius: 4px;
  padding: 12px;
  transform: scale(1);
  transition: all 0.5s ease;
  /* opacity: 0.9; */
}

#btnwhatsapp:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 12px 21px 40px -24px rgba(0, 0, 0, 0.2);
}

.cwhatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contwhatsapp {
  width: 80%;
  margin-bottom: 10px;
}

.cotiza {
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  font-family: var(--font-bold);
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic;
}

/* Pagina Aviso de Privacidad */
.page {
  height: auto;
  margin: 40px auto;
  margin-top: 120px;
}

.page__block {
  margin-bottom: 30px;
}

.page__block h2 {
  font-size: 2rem;
  color: var(--grey-hard);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.page__block p {
  font-size: 1.4rem;
  color: var(--grey-hard);
  text-align: justify;
  margin-bottom: 10px;
  line-height: 140%;
}

/*Sección Errores*/
.alert {
  width: 100%;
  padding: 2%;
  border-radius: 4px;
  position: relative;
  margin-top: 20px;
  font-family: var(--font-gral);
}

.alert div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.alert-success {
  border: solid 3px var(--green);
}

.alert-danger {
  border: solid 3px var(--yellow);
}

.alert div p {
  font-size: 16px;
  color: var(--grey-hard);
}

.dnone {
  display: none !important;
}

.thankYou {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20%;
}

.thankYou h2 {
  font-size: 22px;
  margin: 20px 0 10px 0;
}

.thankYou p {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 28px;
}

.thankYou a {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 20px 0;
}

/*Pagina Gracias*/

.page__gracias{
  background-color: var(--black);
  width: 100%;
  height: 100vh;
}

.gracias{
    display: flex;
    flex-direction:  column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 50px;
}

@media (min-width:768px) {
  .gracias{
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 40%;
  }
}

.image__gracias img{
  width: 200px;
  height: auto;
}

.content__gracias{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width:768px) {
  .content__gracias{
    flex-direction: column;
    align-items: flex-start;
  }
}

.content__gracias h2{
    text-align: left;
    font-size: 5rem;
    color: var(--green);
    text-transform: uppercase;
    font-style: italic;
}

.content__gracias p{
    font-size: 2rem;
    color: var(--white);
    font-style: italic;
    font-family: var(--fonttitle);
    text-align: center;
}

@media (min-width:768px) {
  .content__gracias p{
      text-align: left;
  }
}

.content__gracias a{
    color: var(--green);
    border: solid 2px var(--green);
    background-color: var(--black);
    padding: 8px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--font-bold);
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
}

.image__gracias{

}