@charset "UTF-8";
.header {
  position: fixed;
  height: 7.5rem;
  width: 100%;
  z-index: 10;
  padding: 1rem 10%;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header__logo img {
  max-height: 75px;
}
.header__toggle > span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #191970;
  border-radius: 2px;
  transition: all 300ms ease-in-out;
  transform-origin: 4px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 6px;
}
.header__menu {
  position: absolute;
  width: 80%;
  background: white;
  border-radius: 3px;
  padding: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8rem;
  z-index: 9;
}
.header__menu a {
  display: block;
  text-align: center;
  color: #191970;
}
.header__links a {
  color: #191970;
  position: relative;
  margin-right: 40px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -8px;
  background: #191970;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.header__links a:hover::before {
  opacity: 1;
}
.header__ml {
  color: #454545;
  transition: color 200ms ease-in-out;
}
.header__ml a {
  color: #454545;
  font-size: 0.875rem;
}
.header__ml a:hover {
  color: #191970;
}

.overlay {
  position: fixed;
  z-index: 9;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background: linear-gradient(#191970, transparent);
}

nav {
  position: relative;
  background: linear-gradient(white, white, transparent);
}
@media (max-width: 39.9375em) {
  nav {
    background: #fff;
  }
}

.hero__slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.hero__slider .slide-1 {
  background-image: url("../../images/Slider-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 600px;
}
.hero__container {
  padding: 9.5rem 0 5rem 0;
}
@media (max-width: 39.9375em) {
  .hero__container {
    padding: 13.5rem 0 5rem 0;
  }
}
.hero__title {
  margin: 2.25rem 0px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.hero__text {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #373737;
}
.hero__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 0.75rem;
  font-weight: 400;
  color: white;
  border-radius: 5px;
}
.hero__button:hover {
  background-color: #2f2fa3;
}

.slick-dots {
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 0 11rem 0;
  list-style: none;
}
.slick-dots li {
  margin: 0 0.25rem;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.slick-dots button {
  display: block;
  padding: 0;
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
.slick-dots button:focus, .slick-dots button:hover {
  background: #191970;
  width: 16px;
  height: 16px;
}

.heroCharter__slider {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.heroCharter__slider .background {
  background-image: url("../../images/Charter-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 600px;
}
.heroCharter__container {
  padding: 2rem 0px 5rem 0px;
}
.heroCharter__title {
  margin: 0.25rem 0px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.heroCharter__text {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #373737;
  text-align: center;
}

.services {
  background-color: #e8e8e8;
  min-height: 21rem;
  padding-left: 10%;
  padding-right: 10%;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 40em) {
  .services__grid {
    margin-top: -6.5rem;
    z-index: 3;
    position: absolute;
    width: 80%;
  }
}
.services__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 63.9375em) {
  .services__item {
    flex: 1 0 40%;
    margin-bottom: 1rem;
  }
  .services__item:not(:nth-child(even)) {
    margin-right: 5%;
  }
}
@media (min-width: 40em) {
  .services__item {
    flex: 1;
  }
  .services__item:not(:last-child) {
    margin-right: 0.5rem;
  }
}
.services__img img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.services__title {
  text-align: center;
}
.services__title h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem;
}
.services__button {
  text-align: center;
  width: 100%;
  border-radius: 0.5rem;
  padding: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #191970;
  color: white;
}
.services__button:hover {
  background-color: #2f2fa3;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.has-fade {
  visibility: hidden;
}

.fade-in {
  -webkit-animation: fade-in 300ms ease-in-out forwards;
          animation: fade-in 300ms ease-in-out forwards;
}

.fade-out {
  -webkit-animation: fade-out 300ms ease-in-out forwards;
          animation: fade-out 300ms ease-in-out forwards;
}

.floater {
  animation-name: floater;
  -webkit-animation-name: floater;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  visibility: visible !important;
}

@keyframes floater {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floater {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
html {
  font-size: 100%;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  background-color: white;
}
body.no-scroll {
  overflow: hidden;
}

p {
  margin: 0;
  color: white;
}

h1, h2, h3 {
  color: #373737;
}

a, a:visited, a:hover {
  text-decoration: none;
}

a {
  cursor: pointer;
}

ul, li {
  color: white;
  font-size: 0.875rem;
}

ul {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.ph-1  {
  padding: 1.5rem 0;
}

.footer {
  background-color: #191970;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.footer img {
  height: 60px;
}

.description {
  padding-left: 10%;
  padding-right: 10%;
}
.description__grid {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  display: flex;
  background: #fbfbfb;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border-radius: 5px;
  margin-top: -8rem;
  z-index: 3;
}
@media (max-width: 39.9375em) {
  .description__grid {
    flex-direction: column;
    margin-top: 2rem;
  }
}
@media (min-width: 87.5em) {
  .description__grid {
    margin-top: -6rem;
  }
}
@media (min-width: 125em) {
  .description__grid {
    margin-top: 2rem;
  }
}
.description__content {
  padding: 2rem;
  width: 100%;
  border-radius: 5px 0 0 5px;
  background-color: #191970;
}
@media (max-width: 39.9375em) {
  .description__content {
    border-radius: 5px 5px 0px 0px;
  }
}
.description__title {
  font-size: 1rem;
  color: white;
}
.description__text {
  font-size: 0.875rem;
  color: white;
}
.description__img {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/content.png") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .description__img {
    min-height: 300px;
    border-radius: 0px 0px 5px 5px;
  }
}

.icons {
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 6rem;
}
@media (max-width: 63.9375em) {
  .icons {
    margin-top: 2rem;
    margin-left: 5%;
    margin-right: 5%;
  }
}
.icons a {
  margin: 0 auto;
}
.icons__grid {
  margin: 32px 0;
  max-width: 100%;
  display: flex;
  padding-left: 10%;
  padding-right: 10%;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.icons__grid a {
  margin: 0 auto;
}
@media (max-width: 63.9375em) {
  .icons__grid {
    margin: 32px 0 0 0;
  }
}
.icons__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.icons__box:not(:last-child) {
  margin-right: 0.5rem;
}
@media (max-width: 63.9375em) {
  .icons__box {
    flex: 1 0 40%;
    margin-bottom: 1rem;
  }
  .icons__box:not(:nth-child(even)) {
    margin-right: 5%;
  }
}
.icons__icon img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 160px;
}
@media (max-width: 63.9375em) {
  .icons__icon img {
    min-height: 80px;
  }
}
.icons__title h3 {
  font-size: 0.875rem;
}
@media (max-width: 63.9375em) {
  .icons__title {
    text-align: center;
  }
}
.icons__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 0.75rem;
  font-weight: 400;
  color: white;
  border-radius: 5px;
  margin: 0 auto;
}
.icons__button:hover {
  background-color: #2f2fa3;
}

.icons__button-box {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 39.9375em) {
  .icons__button-box {
    margin-top: 1rem;
  }
}

.location {
  padding-left: 10%;
  padding-right: 10%;
}
.location__grid {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  display: flex;
  background: #fbfbfb;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border-radius: 5px;
  margin-top: 6rem;
  margin-bottom: -11rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 39.9375em) {
  .location__grid {
    flex-direction: column-reverse;
    margin-top: 2rem;
  }
}
.location__content {
  padding: 2rem;
  width: 100%;
  border-radius: 5px 0 0 5px;
  background-color: #191970;
}
@media (max-width: 39.9375em) {
  .location__content {
    border-radius: 0px 0px 5px 5px;
  }
}
.location__title {
  font-size: 1rem;
  color: white;
}
.location__text {
  font-size: 0.875rem;
  color: white;
}
.location__divider {
  margin: 1.5rem 0;
  content: "";
  display: block;
  height: 2px;
  width: 80%;
  background-color: white;
}
.location__mts {
  font-size: 1.5rem;
  color: white;
  margin-bottom: -3rem;
}
.location__high {
  font-size: 0.875rem;
  color: white;
  font-weight: 400;
  line-height: 1.2rem;
}
.location__high__link {
  color: white;
}
.location__img {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/map.png") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .location__img {
    min-height: 300px;
    border-radius: 5px 5px 0px 0px;
  }
}

.contacto {
  padding-left: 10%;
  padding-right: 10%;
  background: url("../../images/fondo.png") center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 25rem;
}
.contacto__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14rem;
}
@media (max-width: 39.9375em) {
  .contacto__grid {
    flex-direction: column;
    margin-top: 2rem;
    padding-top: 10rem;
  }
}
.contacto__tel {
  display: flex;
  align-items: center;
}
.contacto__tel__icon {
  margin-right: 1rem;
}
.contacto__tel__icon img {
  max-height: 4rem;
}
.contacto__tel__text p {
  font-weight: bold;
}
.contacto__tel__text a {
  color: white;
}
.contacto__mail__button, .contacto .contacto__descargable__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 5px;
  color: white;
}
.contacto__mail__button a, .contacto .contacto__descargable__button a {
  color: white;
}
.contacto__mail__button:hover, .contacto .contacto__descargable__button:hover {
  background-color: #2f2fa3;
  cursor: pointer;
}
@media (max-width: 39.9375em) {
  .contacto__descargable {
    margin: 1.5rem 0;
  }
}

.instagram {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}
.instagram img {
  max-width: 50px;
  margin-top: 1.5rem;
}
@media (max-width: 39.9375em) {
  .instagram img {
    margin-bottom: 1.5rem;
  }
}

.contacto__interno {
  padding-left: 10%;
  padding-right: 10%;
  background: url("../../images/fondo.png") center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 15rem;
}
@media (max-width: 39.9375em) {
  .contacto__interno {
    min-height: 20rem;
    max-height: 20rem;
  }
}
.contacto__interno__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
@media (max-width: 39.9375em) {
  .contacto__interno__grid {
    flex-direction: column;
    padding-top: 2rem;
  }
}
.contacto__interno__tel {
  display: flex;
  align-items: center;
}
.contacto__interno__tel__icon {
  margin-right: 1rem;
}
.contacto__interno__tel__icon img {
  max-height: 4rem;
}
.contacto__interno__tel__text p {
  font-weight: bold;
}
.contacto__interno__tel__text a {
  color: white;
}
.contacto__interno__mail__button, .contacto__interno .contacto__descargable__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 5px;
  color: white;
}
.contacto__interno__mail__button a, .contacto__interno .contacto__descargable__button a {
  color: white;
}
.contacto__interno__mail__button:hover, .contacto__interno .contacto__descargable__button:hover {
  background-color: #2f2fa3;
  cursor: pointer;
}
@media (max-width: 39.9375em) {
  .contacto__interno__descargable {
    margin: 1.5rem 0;
  }
}

.service_desc {
  padding-left: 10%;
  padding-right: 10%;
  background-color: #f1f1f1;
  min-height: 35rem;
}
.service_desc__grid {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  display: flex;
  background: #fbfbfb;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border-radius: 5px;
  margin-top: -11rem;
  margin-bottom: 0rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 39.9375em) {
  .service_desc__grid {
    flex-direction: column;
  }
}
.service_desc__content {
  padding: 2rem;
  width: 100%;
  border-radius: 5px 0 0 5px;
  background-color: #191970;
}
@media (max-width: 39.9375em) {
  .service_desc__content {
    border-radius: 5px 5px 0px 0px;
  }
}
.service_desc__title {
  font-size: 1.5rem;
  color: white;
  margin: 0.5rem auto;
}
.service_desc__text {
  font-size: 0.875rem;
  color: white;
}
.service_desc__divider {
  margin: 0.5rem 0;
  content: "";
  display: block;
  height: 2px;
  width: 80%;
  background-color: white;
}
.service_desc__mts {
  font-size: 1.5rem;
  color: white;
  margin-bottom: -3rem;
}
.service_desc__high {
  font-size: 0.875rem;
  color: white;
  font-weight: 400;
  line-height: 1.2rem;
}
.service_desc__img {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/service-img.png") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .service_desc__img {
    min-height: 300px;
    border-radius: 0px 0px 5px 5px;
  }
}
.service_desc__img__fbo {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/FBO-Service.png") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .service_desc__img__fbo {
    min-height: 300px;
    border-radius: 0px 0px 5px 5px;
  }
}
.service_desc__img__eve {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/Eventos-Service.jpeg") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .service_desc__img__eve {
    min-height: 300px;
    border-radius: 0px 0px 5px 5px;
  }
}

.service-desc__button-box {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.service-desc__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 1rem;
  font-weight: 400;
  color: white;
  border-radius: 5px;
  margin: 0 auto;
}
.service-desc__button:hover {
  background-color: #2f2fa3;
}

.services-interno {
  background-color: #f1f1f1;
  min-height: 21rem;
  padding-left: 10%;
  padding-right: 10%;
}
@media (max-width: 39.9375em) {
  .services-interno {
    padding-top: 2rem;
  }
}
.services-interno__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 40em) {
  .services-interno__grid {
    z-index: 3;
    position: absolute;
    width: 80%;
  }
}
.services-interno__item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 63.9375em) {
  .services-interno__item {
    flex: 1 0 40%;
    margin-bottom: 1rem;
  }
  .services-interno__item:not(:nth-child(even)) {
    margin-right: 5%;
  }
}
@media (min-width: 40em) {
  .services-interno__item {
    flex: 1;
  }
  .services-interno__item:not(:last-child) {
    margin-right: 0.5rem;
  }
}
.services-interno__img img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.services-interno__title {
  text-align: center;
}
.services-interno__title h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem;
}
.services-interno__button {
  text-align: center;
  width: 100%;
  border-radius: 0.5rem;
  padding: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #191970;
  color: white;
}
.services-interno__button:hover {
  background-color: #2f2fa3;
}

.service_desc-FBO {
  padding-left: 10%;
  padding-right: 10%;
  background-color: #f1f1f1;
  min-height: 75rem !important;
}

.service_desc2__grid {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  display: flex;
  background: #fbfbfb;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 49.5px 70px -24.5px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
  border-radius: 5px;
  margin-top: 4rem;
  margin-bottom: 0rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 39.9375em) {
  .service_desc2__grid {
    flex-direction: column;
  }
}
.service_desc2__content {
  padding: 2rem;
  width: 100%;
  border-radius: 5px 0 0 5px;
  background-color: #191970;
}
@media (max-width: 39.9375em) {
  .service_desc2__content {
    border-radius: 5px 5px 0px 0px;
  }
}
.service_desc2__title {
  font-size: 1.5rem;
  color: white;
  margin: 0.5rem auto;
}
.service_desc2__text {
  font-size: 0.875rem;
  color: white;
}
.service_desc2__divider {
  margin: 0.5rem 0;
  content: "";
  display: block;
  height: 2px;
  width: 80%;
  background-color: white;
}
.service_desc2__mts {
  font-size: 1.5rem;
  color: white;
  margin-bottom: -3rem;
}
.service_desc2__high {
  font-size: 0.875rem;
  color: white;
  font-weight: 400;
  line-height: 1.2rem;
}
.service_desc2__img {
  width: 100%;
  border-radius: 0px 5px 5px 0px;
  background: url("../../images/service-img.png") center no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 39.9375em) {
  .service_desc2__img {
    min-height: 300px;
    border-radius: 0px 0px 5px 5px;
  }
}

.service-desc__button-box {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.service-desc__button {
  padding: 0.5rem 2rem;
  background-color: #191970;
  font-size: 1rem;
  font-weight: 400;
  color: white;
  border-radius: 5px;
  margin: 0 auto;
}
.service-desc__button:hover {
  background-color: #2f2fa3;
}

.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}

.modal.is-visible {
  visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32em;
  max-width: 90%;
  min-height: 70%;
  max-height: 90%;
  background-color: #fff;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
}

.modal-transition {
  transition: all 0.3s 0.12s;
  opacity: 0;
}

.modal.is-visible .modal-transition {
  opacity: 1;
}

.modal-header,
.modal-content {
  padding: 1em;
}

.modal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e8e8e8;
  text-align: center;
}

.modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-content > *:first-child {
  margin-top: 0;
}

.modal-content > *:last-child {
  margin-bottom: 0;
}

textarea {
  resize: none;
}

.form-label {
  font-size: 0.875rem;
  color: #191970;
  margin: 0;
  display: block;
  opacity: 1;
  transition: 0.333s ease top, 0.333s ease opacity;
}

.form-group {
  text-align: center;
}

.form-title {
  margin: 0.75rem auto;
}

.form-control {
  border-radius: 0;
  border-color: #ccc;
  border-width: 0 0 1px 0;
  border-style: none none solid none;
  box-shadow: none;
  text-align: left;
  width: 80%;
}

.form-control:focus {
  box-shadow: none;
  border-color: #191970;
}

.enviar-mensaje {
  display: block;
  width: 80%;
  text-align: center;
  border: 0px !important;
  margin: 2rem auto;
}/*# sourceMappingURL=style.css.map */