@import url("https://fonts.googleapis.com/css?family=Raleway");
body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

.flex-container {
  position: absolute;
  height: 100vh;
  width: 100%; /* Safari */
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
}

.flex-title {
  color: #f1f1f1;
  position: relative;
  font-size: 2vw;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 15%;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .flex-title {
    transform: rotate(0deg) !important;
    font-size: 6vw;
  }
}

.flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 80%;
  font-size: 2vw;
  padding: 5%;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .flex-about {
    padding: 0%;
    border: 0px solid #f1f1f1;
  }
}

.flex-slide { /* Safari 6.1+ */ /* IE 10 */
  flex: 1;
  cursor: pointer;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  .flex-slide {
    overflow: auto;
    overflow-x: hidden;
  }
}

@media screen and (max-width: 768px) {
  .flex-slide p {
    font-size: 2em;
  }
}

@media screen and (max-width: 768px) {
  .flex-slide ul li {
    font-size: 2em;
  }
}

.flex-slide:hover {
  flex-grow: 3;
}

.home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/home.jpeg);
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
}
@media screen and (min-width: 768px) {
  .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}

@keyframes aboutFlexSlide {
  0% {
    flex-grow: 1;
  }
  50% {
    flex-grow: 3;
  }
  100% {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .flex-title-home {
    transform: rotate(90deg);
    top: 15%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}

@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
.flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}

@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/boda2.jpg);
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
}

.contact-form {
  width: 100%;
}

input {
  width: 100%;
  border-radius: 15px;
  outline: none;
  border: 2px solid rgb(185, 185, 185);
}

.contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/boda4.jpg);
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
}

.work {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/work.png);
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
}

.date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background-color: transparent;
  padding: 0vh 5vw;
  color: #fff;
}

.line {
  height: 2px;
  background-color: #fff;
  margin: 1vh 0;
}

.contenedor-timer {
  display: flex;
}

.ttl-save {
  font-size: clamp(1.5rem, 1.3148rem + 0.9877vw, 2.5rem);
  letter-spacing: 1rem;
  line-height: 100%;
  margin-bottom: 2vh;
}

.fecha {
  font-size: clamp(1.25rem, 1.1343rem + 0.6173vw, 1.875rem);
  letter-spacing: 0.5rem;
  line-height: 100%;
  margin: 4vh 0;
}

.faltan {
  font-size: clamp(1rem, 0.9537rem + 0.2469vw, 1.25rem);
  letter-spacing: 1rem;
  line-height: 100%;
  margin: 2vh 0 4vh 0;
}

.time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2vh 50px 0 50px;
}

.big {
  font-size: clamp(0.75rem, 0.4259rem + 1.7284vw, 2.5rem);
}

.time span {
  font-size: clamp(0.6875rem, 0.6065rem + 0.4321vw, 1.125rem);
  margin-bottom: 1vh;
}

@media (min-width: 200px) and (max-width: 991.8px) {
  .date {
    padding: 1vh 1vw;
  }
  #date {
    padding: 10vh 6vw;
  }
  .ttl-save {
    letter-spacing: 0.3rem;
    margin-top: 2vh;
  }
  .faltan {
    letter-spacing: 0.5rem;
  }
  .time {
    margin: 2vh 10px 0 10px;
  }
  .contenedor-timer {
    margin-bottom: 2vh;
  }
}
.m-abajo {
  margin-bottom: 4vh;
}

.ceremonia {
  padding: 2vh 0 0 0;
}

.ceremonia .row {
  margin: 0;
}

.ceremonia .col-6 {
  padding: 0;
}

.imagen__ceremonia {
  display: flex;
  justify-content: end;
  padding-right: 3vw !important;
}

.img-ceremonia {
  width: 35vw;
  height: 85vh;
  box-shadow: 4px 4px 8px 4px #d8d8d8;
}

.line2 {
  width: 8vw;
  height: 2px;
  background-color: #fff;
  margin-bottom: 2vh;
}

.ceremonia__datos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
}

p {
  margin: 0;
}

.rings {
  width: 50px;
  height: 50px;
  margin-bottom: 3vh;
}

.ttl-ceremonia {
  margin-bottom: 2vh;
  letter-spacing: 0.3rem;
}

.hora-ceremonia {
  margin-bottom: 3vh;
  font-size: 30px;
}

.direccion-ceremonia {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3vh;
  font-size: 20px;
}

.ceremonia__datos a, .go-to-btn {
  background-color: transparent;
  padding: 1vh 3vw;
  border: 1px solid #fff;
  border-radius: 35px;
  text-decoration: none;
  color: #fff;
}

.ceremonia__datos a:hover {
  background-color: #c7c7c7;
  border: 1px solid #c7c7c7;
  transition: 0.5s;
}

.fa-chevron-right {
  font-size: 10px;
}

.a2 {
  margin-top: -4vh;
  background-color: rgb(255, 242, 231);
}

@media (min-width: 200px) and (max-width: 991.8px) {
  .imagen__ceremonia {
    display: block;
    padding-right: 0;
    margin-bottom: 4vh;
  }
  .img-ceremonia {
    width: inherit;
  }
  .ttl-ceremonia {
    font-size: 15px;
    letter-spacing: 0.2rem;
  }
  .direccion-ceremonia {
    font-size: 12px;
    text-align: center;
  }
  .ceremonia__datos a {
    margin-bottom: 3vh;
  }
  .line2 {
    width: 25vw;
  }
  .update {
    text-align: center;
  }
  .titulo {
    text-align: center;
  }
}
.contenedor-formulario {
  padding: 1vh 25vw;
}

.indicaciones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vh 0 0 0;
  color: #fff;
}

.btn-confirmacion {
  display: flex;
  justify-content: end;
  color: #fff;
}

.pink {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.pink:hover {
  background-color: grey;
  border: 1px solid grey;
}

.form-group {
  margin: 4vh 0;
}

.form-control {
  border: 1px solid grey;
}

.form-group option {
  color: #797979;
}

.ph {
  color: #797979;
}

.tamano {
  font-size: 13px;
  margin-top: 4vh;
  text-align: center;
}

.icono-whats {
  color: #10989c;
  padding: 0.5vh 1vw;
  font-size: 23px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.icono-whats:hover {
  color: #10989c;
  transform: scale(1.2);
}

.icono-whats2 {
  color: rgb(201, 103, 119);
  padding: 0.5vh 1vw;
  font-size: 23px;
  font-weight: 900;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.icono-whats2:hover {
  color: rgb(201, 103, 119);
  transform: scale(1.2);
}

.up {
  transform: translateY(5vh);
}

.no-ninos {
  text-align: center;
  padding: 0 10vw;
}

@media (min-width: 200px) and (max-width: 991.8px) {
  .envia {
    letter-spacing: 0.1rem;
    text-align: center;
    color: #797979;
  }
  .ph {
    font-size: 13px;
  }
  .contenedor-formulario {
    padding: 5vh 5vw;
  }
  .indicaciones {
    font-size: 11px;
    padding: 5vh 3vw 0 3vw;
    text-align: center;
    font-weight: 500;
  }
}
.icono-home2 {
  font-size: 30px;
  color: #fff;
  background: linear-gradient(rgb(250, 228, 210) 0%, rgb(252, 205, 164) 100%);
  position: absolute;
  z-index: 9999999;
  border-radius: 10px;
  left: 2vw;
  top: 1vh;
  display: inline-block;
  padding: 5px 10px;
}/*# sourceMappingURL=boda2.css.map */