.btn::after {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  position: absolute;
}

.button-form {
  width: 100%;
  background-color: #c47815;
  margin-bottom: 50px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.button-form a {
  text-decoration: none;
  color: white;
}

.button-form a span {
  font-size: 2.5rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-form .subtittle {
  font-size: 1.3rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px white, 0 0 0 0px rgba(255, 255, 255, 0.85);
            box-shadow: 0 0 0 0px white, 0 0 0 0px rgba(255, 255, 255, 0.85);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px white, 0 0 0 0px rgba(255, 255, 255, 0.85);
            box-shadow: 0 0 0 0px white, 0 0 0 0px rgba(255, 255, 255, 0.85);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}

/*--------------------*/
.link-container {
  color: unset;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link-container:hover {
  color: unset;
}

.header {
  margin-top: 50px;
  margin-bottom: 50px;
}

.header .title {
  margin-bottom: 30px;
  color: #000000;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .title h1 {
  font-size: 2rem;
  text-align: center;
}

.header .title h2 {
  font-size: 1.5rem;
}

.header .video-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .video-content .video {
  height: 35vw;
  max-height: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("images/jesus.jpg");
  background-position: center;
  background-size: cover;
}

.header .video-content .video .btn {
  padding-left: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-animation: pulse 2s ease-out infinite;
          animation: pulse 2s ease-out infinite;
  font-size: 4rem;
  color: white;
  cursor: pointer;
}

.header .video-content .video .btn:hover {
  border-color: white;
}

.header span {
  margin-top: 30px;
  font-size: 1.5rem;
  text-align: center;
}

.menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.menu .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.menu .menu-item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu .menu-item .image img {
  width: 100%;
  border-radius: 46px;
  -webkit-transition: -webkit-box-shadow .3s linear;
  transition: -webkit-box-shadow .3s linear;
  transition: box-shadow .3s linear;
  transition: box-shadow .3s linear, -webkit-box-shadow .3s linear;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.menu .menu-item .image img:hover {
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.718);
          box-shadow: 0 0 45px rgba(0, 0, 0, 0.718);
}

.menu .menu-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
}

.overlflow-hidden {
  overflow: hidden !important;
}

.overflow-y {
  overflow-y: overlay;
}

.modal-window {
  max-height: 100vh;
  position: fixed;
  background-color: rgba(53, 53, 53, 0.495);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-window > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
}

.modal-window header {
  font-weight: bold;
}

.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

.modal-window .beauty-modal {
  max-height: 90vh;
  border-radius: 17px;
}

.modal-window .beauty-modal .modal-close {
  top: 10px !important;
  right: 25px !important;
  color: #1c1b1b;
  line-height: 50px;
  font-size: 40px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9999;
  text-decoration: none;
}

.modal-window .beauty-modal .modal-close:hover {
  color: black;
}

.modal-window .beauty-modal .link-container {
  font-size: 1.5rem;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.modal-window .beauty-modal .link-container .btn-action {
  border: 2px solid;
  border-color: rgba(53, 53, 53, 0.761);
  border-radius: 15px;
  padding: 2px;
  -webkit-transition: -webkit-box-shadow .3s linear;
  transition: -webkit-box-shadow .3s linear;
  transition: box-shadow .3s linear;
  transition: box-shadow .3s linear, -webkit-box-shadow .3s linear;
  -webkit-box-shadow: 0px 0px 6px 0px #22222273;
          box-shadow: 0px 0px 6px 0px #22222273;
  font-size: 1.7rem;
  cursor: pointer;
}

.modal-window .beauty-modal .link-container .btn-action:hover {
  -webkit-box-shadow: 0px 0px 26px 0px #222222bb;
          box-shadow: 0px 0px 26px 0px #222222bb;
}

#video-modal .beauty-modal {
  padding: unset !important;
}

#video-modal .beauty-modal .modal-close {
  color: white;
  top: 10px;
  right: 15px;
}

#video-modal .video-player {
  width: 100vw;
  max-width: 600px;
}

#about-modal .beauty-modal .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#about-modal .beauty-modal .about-content .photo {
  margin: 10px auto;
  position: relative;
  float: left;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about-modal .beauty-modal .about-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 700px;
  margin-top: -100px;
  border: 10px solid white;
  -webkit-box-shadow: 0px 0px 6px 0px #22222273;
          box-shadow: 0px 0px 6px 0px #22222273;
}

#about-modal .beauty-modal .about-content .text span {
  font-size: 1em;
  font-weight: bold;
  color: rgba(53, 53, 53, 0.761);
}

#about-modal .beauty-modal .about-content .text h1 {
  font-weight: bold;
  font-size: 1.5em;
}

#about-modal .beauty-modal .about-content .text p {
  font-size: 1.5rem;
}

#about-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#dates-modal .beauty-modal h1 {
  font-size: 2em;
}

#dates-modal .beauty-modal .info .item {
  padding: 1.5em;
  border-bottom: 1px dashed dimgray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#dates-modal .beauty-modal .info .item .title {
  font-size: 1.5em;
  font-weight: bold;
}

#dates-modal .beauty-modal .info .item .hour {
  margin-left: 5px;
  font-size: 1.5em;
}

#dates-modal .beauty-modal .info .item i {
  margin-left: 10px;
  margin-top: 5px;
  font-size: 30px;
}

#link-modal .beauty-modal .link-modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#link-modal .beauty-modal .link-modal-content .photo {
  margin: 10px auto;
  position: relative;
  float: left;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#link-modal .beauty-modal .link-modal-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 700px;
  margin-top: -100px;
  border: 10px solid white;
  -webkit-box-shadow: 0px 0px 6px 0px #22222273;
          box-shadow: 0px 0px 6px 0px #22222273;
}

#link-modal .beauty-modal .link-modal-content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#link-modal .beauty-modal .link-modal-content .links .item {
  cursor: pointer;
  border-color: #2f2e2ebe !important;
  border: 1px solid;
  width: 70%;
  max-width: 700px;
  min-width: 300px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  padding: 5px;
  -webkit-transition: -webkit-box-shadow .3s linear;
  transition: -webkit-box-shadow .3s linear;
  transition: box-shadow .3s linear;
  transition: box-shadow .3s linear, -webkit-box-shadow .3s linear;
  -webkit-box-shadow: 0 0 15px rgba(94, 90, 90, 0.404);
          box-shadow: 0 0 15px rgba(94, 90, 90, 0.404);
}

#link-modal .beauty-modal .link-modal-content .links .item i {
  margin-top: 3px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: left;
}

#link-modal .beauty-modal .link-modal-content .links .item:hover {
  -webkit-box-shadow: 0 0 15px rgba(51, 48, 48, 0.885);
          box-shadow: 0 0 15px rgba(51, 48, 48, 0.885);
}

#link-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#contact-modal .beauty-modal .contact-item {
  padding: 1.5em;
  border-bottom: 1px dashed dimgray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: overlay;
}

#contact-modal .beauty-modal .contact-item .title {
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 10px;
}

#contact-modal .beauty-modal .contact-item .text {
  margin-left: 5px;
  font-size: 1.5em;
}

#contact-modal .beauty-modal .contact-item i {
  margin-left: 10px;
  margin-top: 5px;
  font-size: 30px;
}

#contact-modal .beauty-modal .link-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contact-modal .beauty-modal .link-container .btn-action {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

.float-container .float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 102px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  -webkit-box-shadow: 2px 2px 3px #999;
          box-shadow: 2px 2px 3px #999;
  z-index: 49;
}

.float-container .float.whatsapp {
  background-color: #25d366;
  right: 10vw;
}

.float-container a:hover {
  color: white !important;
}

.float-container a {
  color: white !important;
}

@media (min-width: 534px) {
  .button-form a span {
    font-size: 3rem;
  }
  .button-form .subtittle {
    font-size: 1.6rem;
  }
  .whatsapp {
    right: 15px !important;
  }
  .menu {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .btn {
    padding-left: 2rem !important;
    width: 9rem !important;
    height: 9rem !important;
    font-size: 7rem !important;
  }
  #video-modal .beauty-modal {
    padding: unset !important;
  }
  #video-modal .beauty-modal .modal-close {
    color: black;
    top: 15px;
    right: 2%;
  }
  #video-modal .beauty-modal .modal-close i {
    font-size: 60px;
  }
  #video-modal .video-player {
    width: 100vw;
    max-width: 600px;
  }
  #about-modal .beauty-modal .about-content .photo img {
    margin-top: -170px;
  }
}
/*# sourceMappingURL=style.css.map */