/*APLICANDO SASS*/
@media (min-width: 799px) {
  .footer_container {
    display: flex;
    margin-left: 0;
    margin-right: 0; } }

.footer_container {
  width: 20%;
  height: 100px;
  background-color: #aaeecc;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 205px; }

.derechos {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0a530a;
  font-family: "Kalam", cursive;
  font-size: medium;
  font-weight: bold; }

@media (max-width: 800px) {
  .social-footer {
    max-width: 300px;
    display: flex;
    margin-left: 0;
    justify-content: space-between;
    justify-items: center;
    margin-top: 40px; }
  .logo-footer img {
    width: 100px; }
  .redes-sociales {
    display: flex;
    justify-content: right;
    justify-items: right; }
  .texto-footer {
    display: flex;
    justify-content: left;
    justify-items: left;
    text-align: left;
    width: 250px;
    color: #0a530a;
    font-family: "Kalam", cursive;
    font-size: smaller;
    font-weight: bold;
    align-items: flex-start; }
  .footer-derechos {
    font-size: smaller;
    display: flex;
    justify-content: center;
    justify-items: center;
    text-align: center; } }

@media (min-width: 799px) {
  .social-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
    margin-top: 30px; }
  .logo-footer img {
    width: 120px;
    height: 120px;
    display: flex;
    margin-right: 150px;
    justify-content: center;
    align-items: center; }
  .redes-sociales {
    display: flex;
    justify-content: space-between;
    width: 120px; }
  .texto-footer {
    width: 250px;
    color: #0a530a;
    font-family: "Kalam", cursive;
    font-size: medium;
    font-weight: bold;
    margin-left: 20px; } }

#bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@media (max-width: 768px) {
  .tabla {
    border-style: none; } }

@media (max-width: 800px) {
  .container {
    grid-template-areas: "header header header" "container" "footer footer footer";
    grid-template-columns: 1fr;
    grid-template-rows: 2, 1fr; } }

@media (max-width: 800px) {
  .header {
    grid-template-rows: 5, 1fr; } }

@media (max-width: 800px) {
  .footer_container {
    align-items: center; } }

/*nav*/
@media (min-width: 768px) {
  .grid-index {
    display: grid;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    grid-template-areas: "cactus suculentas";
    margin-right: 50px;
    margin-bottom: 5px;
    align-items: center;
    row-gap: 30px; } }

@media (min-width: 799px) {
  .imgChica:hover {
    filter: opacity(0.5); } }

@media (max-width: 800px) {
  .imgChica {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0px 10px 15px;
    margin-bottom: 30px;
    margin-top: 20px; } }

/*sobre nosotros*/
@media (max-width: 800px) {
  .grid-fotos {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    row-gap: 30px; } }

@media (min-width: 799px) {
  .grid-fotos {
    display: grid;
    column-gap: 100px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    margin-bottom: 30px;
    max-width: 100%; } }

/*galeria*/
@media (max-width: 800px) {
  .grid-galeria {
    display: grid;
    grid-area: "nombre" "imagenes";
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
    justify-items: center; }
  .nombre {
    display: none;
    visibility: hidden; } }

@media (min-width: 799px) {
  .grid-galeria {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: grid;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 20px 1fr 20px 1fr;
    justify-items: center;
    margin-bottom: 30px; } }

@media (min-width: 799px) {
  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 150px;
    font-family: "Inter", sans-serif;
    color: #0a530a;
    justify-content: center;
    align-items: center;
    margin-left: 100px;
    margin-bottom: 20px;
    margin-top: 30px; } }

@media (max-width: 800px) {
  .contacto-grid {
    width: 100%;
    display: grid;
    grid-template-rows: 3, 1fr;
    row-gap: 30px;
    font-family: "Inter", sans-serif;
    color: #0a530a;
    justify-content: center;
    align-items: center;
    align-content: center; }
    .contacto-grid .mapa {
      width: 50%;
      margin-left: 5%; }
      .contacto-grid .mapa .final {
        text-align: center; }
        .contacto-grid .mapa .final .contacto {
          text-align: start;
          margin-top: 10px; } }

/*APLICANDO BOOTSTRAP*/
.tabla {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: 50%;
  margin-left: 25%;
  border-color: #0a530a;
  border-style: double; }

.table {
  font-size: medium;
  color: #0a530a; }

.container-fluid {
  background-color: #cff8e4; }

.navbar-brand {
  width: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0px;
  border-radius: 50%; }
  .navbar-brand:hover {
    box-shadow: 0 0 10px #aaeecc;
    width: 200px; }

.nav-item {
  color: #0a530a;
  font-family: "Inter", sans-serif;
  font-size: large; }

.formulario {
  width: 300px;
  border-radius: 40px;
  background-image: linear-gradient(#aaeecc, #cff8e4);
  padding: 20px;
  border-color: #03ad5b;
  border-style: solid;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px; }

/* index */
.container {
  width: 100%;
  margin: auto;
  display: grid;
  /*posicion de las areas */
  grid-template-areas: "header" "container" "footer_container"; }

/* Nombrar areas */
header {
  grid-area: header; }

.container {
  grid-area: container; }

.footer_container {
  grid-area: footer; }

/* nav */
body {
  background-color: white;
  margin: 0;
  padding: 0%;
  width: 100%; }

.suculentas {
  color: #0a530a;
  font-size: medium;
  float: left;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-bottom: 5px; }

.cactus {
  color: #0a530a;
  font-size: medium;
  float: left;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-bottom: 25px; }

.imgChica {
  width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 15px;
  cursor: pointer; }

.titulo {
  color: #0a530a;
  font-family: "Kalam", cursive;
  font-weight: normal;
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 30px; }

.tipos {
  justify-items: flex-start;
  text-align: left;
  margin: 10px; }

h2 {
  color: #0a530a;
  font-family: "Kalam", cursive;
  text-decoration: solid;
  text-align: center;
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 30px;
  margin-top: 30px; }

/* sobre nosotros*/
.container-sobrenosotros {
  margin-left: 20px;
  margin-right: 20px; }

.historia {
  font-family: "Inter", sans-serif;
  color: #0a530a;
  display: flex;
  text-align: center;
  margin-left: 70px;
  margin-right: 70px; }

.ejemplos {
  font-family: "Kalam", cursive;
  color: #0a530a;
  font-style: oblique;
  text-decoration: underline;
  text-align: center;
  font-size: 25px;
  animation-duration: 1.5s;
  animation-name: slidein; }

@keyframes slidein {
  from {
    margin-left: auto;
    width: 300%; }
  to {
    margin-left: 0%;
    width: 100%; } }

.echeveriaCurls, .ceropegia, .sansevieria {
  width: 250px;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  box-shadow: 0px 10px 15px;
  cursor: pointer; }

/*galeria*/
.nombre {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: medium;
  color: #0a530a; }

.imagenes {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0px 10px 15px;
  cursor: pointer; }

.imagenes:hover, .echeveriaCurls:hover, .ceropegia:hover, .sansevieria:hover,
.ceropegia:hover, .sansevieria:hover {
  filter: opacity(0.5); }

/*precios*/
td {
  font-size: small;
  color: #0a530a;
  font-family: "Inter", sans-serif; }

.mensaje {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-weight: normal;
  margin-left: 60px;
  margin-right: 60px;
  color: #0a530a;
  margin-bottom: 50px; }

/*contacto*/
@media (max-width: 800px) {
  .contacto-grid {
    width: 100%;
    display: grid;
    grid-template-rows: 3, 1fr;
    row-gap: 30px;
    font-family: "Inter", sans-serif;
    color: #0a530a;
    justify-content: center;
    align-items: center;
    align-content: center; }
    .contacto-grid .mapa {
      width: 50%;
      margin-left: 5%; }
      .contacto-grid .mapa .final {
        text-align: center; }
        .contacto-grid .mapa .final .contacto {
          text-align: start;
          margin-top: 10px; } }

@media (min-width: 799px) {
  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 150px;
    font-family: "Inter", sans-serif;
    color: #0a530a;
    justify-content: center;
    align-items: center;
    margin-left: 100px;
    margin-bottom: 20px;
    margin-top: 30px; }
  .mapa {
    margin-top: 30px;
    margin-bottom: 30px; }
  label {
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: medium; }
  input {
    border-radius: 5px;
    border: 1px solid; }
  .boton {
    margin-left: 20px;
    margin-top: 20px;
    padding: 7px 20px;
    border-radius: 40px;
    background-color: #aaeecc;
    color: #0a530a;
    border: solid 1px; }
  .boton:hover {
    cursor: pointer;
    transition: all .2s;
    text-decoration: wavy;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); } }
