.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bgi-site {
  background-image: url(../img/bgi.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hide-mob {
  display: none;
}
@media only screen and (min-width: 820px) {
  .hide-mob {
    display: block;
  }
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align__center {
  justify-content: center;
}

.align__between {
  justify-content: space-between;
}

.align__center-v {
  align-items: center;
}

.m-b-small {
  margin-bottom: 1.25rem;
}

.m-b-medium {
  margin-bottom: 2rem;
}

.m-b-large {
  margin-bottom: 4rem;
}

.m-b-xlarge {
  margin-bottom: 8rem;
}

.p-b-small {
  padding-bottom: 2rem;
}

.p-b-medium {
  padding-bottom: 4rem;
}

.p-b-large {
  padding-bottom: 50px;
}

.m0a {
  margin: 0 auto;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font: 1em/1.5 "Lobster Two", cursive;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  html {
    background-color: #fff;
  }
}

body {
  color: #343434;
  margin: 0;
  min-height: 100%;
  position: relative;
  width: 100%;
  background: #FFFFFF;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main,
details,
menu {
  display: block;
}

figure {
  margin: 1em 40px;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

textarea {
  resize: none;
  overflow: hidden;
}

ul {
  list-style-type: none;
  padding: 0;
}

pre {
  margin: 0;
  background-color: #282c34;
  border-radius: 10px;
  width: 100%;
  max-width: 90vw;
}

.btn {
  border-radius: 10px;
  border: 1px solid transparent;
  border: none;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  padding: 8px;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
}
.btn:hover {
  border: none;
  transition: background 0.5s;
}
.btn a {
  all: unset;
}

.btn-principal {
  background: #d8712e;
  border-radius: 10px;
  border: transparent;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
}
.btn-principal:hover {
  background: #91b3c6;
  color: #fff;
  transition: background 0.5s;
}

.btn-secondary {
  background: transparent;
  border-radius: 21.5px;
  box-shadow: none;
  padding: 10px 30px;
}

h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  color: #fff;
  font-family: "Lobster Two", cursive;
  font-size: calc(16px * 7);
  line-height: 1;
  margin-top: 0;
  width: 100%;
}

h2 {
  font-size: calc(16px * 4);
}

h3 {
  font-size: calc(16px * 2);
  margin-bottom: 1.25rem;
}

h4 {
  font-size: calc(16px * 1.5);
  margin-bottom: 1.25rem;
}

h5 {
  font-size: 16px;
}

.font-base {
  font-family: "Lobster Two", cursive;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

q {
  font-style: italic;
}

p,
li,
dd,
dt {
  font-size: 16px;
}

ul {
  margin: 0;
}

li {
  padding-bottom: 1rem;
}

p {
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  margin: 0;
}

.text-center {
  text-align: center;
  display: block;
}

.font-16 {
  font-size: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-template-rows: 1fr;
  grid-gap: 1.25em;
  grid-auto-flow: dense;
}
.gallery figure {
  display: flex;
  margin: 0;
}
.gallery img {
  flex: 1;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s;
}
.gallery img:hover {
  filter: grayscale(0%);
  cursor: pointer;
}

.section-shadow {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 820px) {
  .section-shadow {
    box-shadow: none;
  }
}

.text-shadow {
  text-shadow: 1px 1px 2px #000;
}

.text-wh {
  color: #fff;
}

.text-bl {
  color: #343434;
}

.welcome {
  background-color: rgba(145, 179, 198, 0.8);
}
.welcome img {
  max-width: 50%;
  padding: 50px;
}
@media only screen and (min-width: 820px) {
  .welcome img {
    width: 20vw;
  }
}

.invite {
  padding-bottom: 4rem;
}

.invite-info {
  background-image: url(../img/icon-flowers.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 2rem;
  max-width: 100%;
}
@media only screen and (min-width: 820px) {
  .invite-info {
    background-image: url(../img/icon-flowers-5.png);
    min-height: 580px;
  }
  .invite-info h3 {
    margin-bottom: 4rem;
  }
}

.info {
  background-color: rgba(40, 51, 68, 0.5);
  padding-top: 4rem;
  position: relative;
}

.info__decoration-r,
.info__decoration-l {
  z-index: 1;
  position: absolute;
  height: 100%;
  max-width: 100%;
  top: 0;
  opacity: 50%;
}
@media only screen and (min-width: 820px) {
  .info__decoration-r,
  .info__decoration-l {
    opacity: 70%;
  }
}

.info__decoration-r {
  right: 2%;
}

.info__decoration-l {
  left: 2%;
}

.present {
  position: relative;
}
.present .decoration {
  max-width: 70vh;
  position: absolute;
  left: -500px;
  top: -20vh;
  z-index: 2;
}

.general-icon {
  max-width: 70px;
}

.general-icon--80,
.general-icon--100 {
  height: 100px;
}

.general-icon--80 {
  max-width: 80px;
}

.general-icon--100 {
  max-width: 100px;
}

.general-info img {
  max-width: 300px;
}

.general__cell {
  padding: 1rem;
  width: 100%;
}
@media only screen and (min-width: 820px) {
  .general__cell {
    width: 100%;
  }
  .general__cell:nth-child(2) {
    border-left: 1px solid #000;
  }
}
@media only screen and (min-width: 820px) and (min-width: 820px) {
  .general__cell {
    width: 50%;
  }
}

.bank-info span {
  border-bottom: 1px solid black;
}

.info__card {
  width: 100%;
  padding: 0 20px 20px 20px;
}
.info__card p {
  font-size: 20px;
}
@media only screen and (min-width: 820px) {
  .info__card {
    width: 50%;
  }
}

.ff {
  background-image: url(../img/icon-flowers-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 0;
}

.parallax {
  min-height: 350px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.parallax .sub-wrapper {
  padding-top: 4rem;
}

.parallax-1,
.parallax-2,
.parallax-3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0;
  background-attachment: fixed;
}

.parallax-1 {
  background-image: url(../img/parallax-1.jpg);
  position: relative;
}
@media only screen and (min-width: 820px) {
  .parallax-1 {
    background-image: url(../img/parallax-1.jpg);
  }
}
.parallax-1 img:nth-child(1) {
  left: -50px;
  max-width: 30vh;
  position: absolute;
  top: -65vh;
  z-index: 2;
}
@media only screen and (min-width: 820px) {
  .parallax-1 img:nth-child(1) {
    display: none;
  }
}
.parallax-1 img:nth-child(2) {
  max-width: 25vh;
  position: absolute;
  right: 0;
  top: -15vh;
  z-index: 2;
}
@media only screen and (min-width: 820px) {
  .parallax-1 img:nth-child(2) {
    max-width: 50vh;
    top: -20vh;
  }
}

.form {
  margin: 1.25rem;
  position: relative;
  background-color: rgba(145, 179, 198, 0.8);
}
@media only screen and (min-width: 820px) {
  .form {
    margin: 15rem 4rem;
  }
}
.form div {
  width: 100%;
  padding: 2rem 2rem 0 2rem;
}
@media only screen and (min-width: 820px) {
  .form div {
    background-color: rgba(145, 179, 198, 0.8);
    width: 50%;
    background-color: transparent;
    min-height: 250px;
  }
}
.form form {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  min-height: 636px;
  padding: 1rem;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media (prefers-color-scheme: dark) {
  .form form {
    background-color: #fff;
  }
}
@media only screen and (min-width: 820px) {
  .form form {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
  }
}
.form form p,
.form form label {
  font-size: 1rem;
  padding-bottom: 10px;
}
.form input,
.form select {
  -webkit-box-shadow: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  box-shadow: none;
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s ease-in-out;
  width: 100%;
}
.form select {
  font-size: 16px;
}
.form input[type=radio] {
  display: inline;
  width: 20px;
}
.form label {
  display: block;
  -moz-text-align-last: left;
       text-align-last: left;
}
.form p {
  font-family: "Lobster Two", cursive;
  font-size: 1.4rem;
}
.form .btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #283344;
}
.form .btn:hover {
  background-color: #91b3c6;
}
.form .hide-inputs {
  display: none;
}

.counter li {
  width: 100%;
  color: #fff;
  padding: 0 6rem;
}
@media only screen and (min-width: 820px) {
  .counter li {
    width: 25%;
    padding: 0;
  }
}

.counter li span:first-child {
  font-size: 36px;
  padding-bottom: 10px;
  border-bottom: #fff 1px solid;
  display: block;
  margin: 0 30px;
}

.counter li span:last-child {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 40px;
  display: block;
}

.music-player {
  cursor: pointer;
  max-width: 15vw;
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 2;
}
@media only screen and (min-width: 820px) {
  .music-player {
    max-width: 5vw;
  }
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.music-player--spin {
  animation: girar 4s linear infinite;
}

.music-player__play,
.music-player__pause {
  max-width: 5vw;
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 3;
}
@media only screen and (min-width: 820px) {
  .music-player__play,
  .music-player__pause {
    max-width: 2vw;
  }
}

.show-play {
  display: none;
}

.modal-background {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

.modal-content {
  background-image: url(../img/welcom-modal-2.jpg);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  min-width: 70vw;
  min-height: 40vh;
  align-items: center;
}
@media only screen and (min-width: 820px) {
  .modal-content {
    background-image: url(../img/welcom-modal.jpg);
  }
}
.modal-content .logo {
  max-width: 40vw;
}
@media only screen and (min-width: 820px) {
  .modal-content .logo {
    max-width: 20vw;
  }
}
.modal-content div {
  width: 100%;
  text-align: center;
}

footer {
  background-color: #91b3c6;
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  font-family: "Urbanist", sans-serif;
}
footer p {
  font-size: 16px;
}
footer img {
  width: 15px;
  height: 15px;
  margin: 3px 5px;
}

.menu,
[class^=menu--] {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}

.menu {
  display: flex;
}

.menu--child {
  position: absolute;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: transform 0.3s;
}
.menu--child ul {
  left: 100%;
  top: -50%;
}

[class^=menu__item] {
  position: relative;
}
[class^=menu__item]:hover {
  background: #111;
}
[class^=menu__item]:hover > .menu--child {
  transform: scale(1, 1);
}

[class^=menu__link] {
  color: #ddd;
  display: block;
  padding: 0.8em 1em;
  text-decoration: none;
  white-space: nowrap;
}

.template-802,
.template-602 {
  border: solid 1px #282c34;
  margin-bottom: 1.25rem;
  width: 320px;
}

@media only screen and (min-width: 802px) {
  .template-802 {
    width: 802px;
  }
}

@media only screen and (min-width: 602px) {
  .template-602 {
    width: 602px;
  }
}

@media only screen and (min-width: 602px) {
  .vumerity {
    /* And center justify these ones. */
  }
  .vumerity .template-602 {
    width: 602px;
  }
  .vumerity .stack-column-center {
    direction: ltr !important;
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .vumerity .stack-column-center {
    text-align: center !important;
  }
  .vumerity .paddingb15 {
    padding-bottom: 15px !important;
  }
  .vumerity .hidden-mobile {
    max-height: 0 !important;
    display: none !important;
    mso-hide: all !important;
    overflow: hidden !important;
  }
}/*# sourceMappingURL=styles.css.map */