* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-rosa-logo: #d90368;
  --color-rosa-claro: #ffe3ee;
  --color-rosa-viejo: #d78e9f;
  --color-verde: #68baa6;
  --text-color: rgb(27, 27, 27);
  --text-color-bar: #fff;
}

#textarea {
  resize: none;
}
/* Header & Navbar  */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 9vh;
  padding: 0 3vh;
  background-color: var(--color-rosa-logo);
}
.logo {
  height: 6vh;
}
nav > a {
  color: var(--text-color-bar) !important;
  font-weight: bold !important;
}
@media (max-width: 767px) {
  nav > a {
    color: var(--text-color-bar) !important;
    font-weight: bold !important;
    width: 100%;
  }
}
.active {
  color: var(--text-color);
  background-color: var(--color-rosa-claro) !important;
}
main {
  min-height: 82vh;
}
.derecha {
  display: flex;
  justify-content: flex-end !important;
  margin-right: 0 !important;
  width: 100% !important;
}
.iconoHeader {
  background-color: var(--color-rosa-claro);
}
.navbar-collapse {
  margin: 1vh 0;
}

/* Carousel  */
.carrousel {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./Images/globos.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 25vh;
}
.carrousel > h1 {
  color: var(--color-rosa-logo);
  text-shadow: 2px 2px rgba(126, 126, 126, 0.5);
}
.carrousel > a {
  background-color: var(--color-rosa-viejo);
}

/* Search & Filters  */

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.navbar-nav > label {
  padding-left: 2vh;
  display: flex;
  flex-direction: row;
  justify-content: center !important;
}
.btn-outline-success {
  border-color: var(--color-verde);
  color: var(--color-verde);
}
.btn-outline-success:hover {
  border-color: var(--color-verde);
  background-color: var(--color-verde);
}
.containerFilters {
  display: flex;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
}
@media (max-width: 767px) {
  .containerFilters {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between !important;
  }
  .form-control {
    margin-right: 0;
    /* width: 100%; */
    margin-left: 5px;
  }
}
.containerInput {
  max-width: 80%;
}
.form-control {
  margin-right: 0;
  max-width: 80%;
  margin-left: 5px;
}
.lupita {
  display: flex;
  align-items: center;
  padding: 6px 12px !important;
}
.lupita > i {
  font-size: 25px;
}
.form-check-input {
  margin-right: 0.5vh;
}
.form-check-input:hover {
  background-color: var(--color-verde);
  border-color: var(--color-verde);
}

/* Card */
.card {
  align-items: center;
}
.containerImage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tituloCard {
  position: absolute;
  width: 100%;
  max-width: 90%;
  bottom: 51%;
  margin-bottom: 0;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: var(--text-color-bar);
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
}
.cardcita {
  max-width: 90%;
  /* height: 100%; */
  height: 150px;
  object-fit: cover;
  margin-top: 16px;
}
.btn-outline-secondary {
  border-color: var(--color-rosa-logo);
  color: var(--color-rosa-logo);
}
.btn-outline-secondary:hover {
  border-color: var(--color-rosa-logo);
  background-color: var(--color-rosa-logo);
}
.card-body {
  height: 175px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.card-body > p {
  overflow: hidden;
}

/* Detail */
.img-fluid {
  width: 500px;
  height: 100%;
  object-fit: cover;
}
.paddingSmall {
  padding-left: 2vh;
}
.aaaa {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1vh 0;
}
.featurette span {
  color: var(--color-rosa-logo);
}
.borderColor {
  border-color: var(--color-rosa-claro) !important;
}

/* Contact - Form */
.containerForm {
  max-width: 100vh;
  margin-top: 5vh;
}

/* Table */
table {
  caption-side: top;
  margin: 0 !important;
}
table > caption {
  font-weight: bold;
  color: var(--color-rosa-logo);
  font-style: italic;
  font-size: 1.5rem;
  padding-left: 8px;
}
.bg-head {
  background-color: var(--color-rosa-claro);
  font-size: 20px;
}
thead tr th {
  font-weight: 600;
}
tbody tr th {
  font-weight: normal;
  text-align: left;
}
.paddingX {
  padding: 0 10vh;
}
@media (max-width: 425px) {
  .paddingX {
    padding: 0 2vh;
    border-radius: 10px !important;
  }
  .bg-head {
    font-size: 1rem;
  }
  thead tr th {
    text-align: center;
    font-size: 0.8rem;
    vertical-align: text-top;
  }
  tbody tr th {
    font-size: 0.8rem;
  }
}

/* Footer  */
footer {
  height: 8vh;
  padding: 0 3vh;
  background-color: var(--color-verde);
}
footer ul i {
  color: var(--text-color-bar);
  font-size: 25px;
}
footer > h3 {
  color: var(--text-color-bar);
}
