/*///////////////////////// GENERALES /////////////////////////*/
:root {
  --transition-All: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  color: #4D4D4D;
  background-color: #fff;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

strong,
b {
  font-weight: 700;
}

.main-wrapper,
.wrapper {
  overflow: hidden !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.primary {
  color: #006186;
}

.dark {
  color: #4D4D4D;
}

.gray {
  color: #606060;
}

.blue {
  color: #006186;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.no-wrap {
  white-space: nowrap;
}
h2, .h2{ font-size: 58px;}
.hr-deco{ width: 270px; margin-bottom: 20px;}
/*///////////////////// BOTONES QUE PISAN BS //////////////////*/
.btn {
  border-radius: 16px;
  font-size: 16px;
  font-weight: 300;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.5 ease-out !important;
  text-decoration: none !important;
  width: fit-content;
  position: relative;
}

.btn-primary {
  border: 1px solid #006186;
  color: #fff;
  background-color: #006186;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  border: 1px solid #045270;
  color: #fff;
  background-color: #045270;
  box-shadow: none !important;
}
.btn-br-0{border-radius: 0 !important;}
.btn-secondary {
  border: 1px solid #fff;
  color: #006186;
  font-weight: 700;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
  border-radius: 0px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  border: 1px solid #4a4a4a;
  color: #fff;
  background-color: #4a4a4a;
  box-shadow: none !important;
}

.custom-icons {
  width: 40px;
}
.bg-primary{ background-color: #0094c7 !important;}
/*///////////////////////// HEADER /////////////////////////*/
header {
  position: relative;
  z-index: 10;
}

.navbar-brand img {
  height: 80px;
  transition: 0.3s;
}

.navbar-toggler {
  padding: 0;
}

/* Navegador principal */
.navbar-collapse {
  justify-content: center;
  display: flex;
}

.navbar {
  padding: 1.2rem 10rem;
  width: 100%;
  background: white;
}

.custom-nav {
  justify-content: end;
  width: 100%;
  align-items: center;
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #606060 !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  position: relative;
  padding: 6px 0px 4px 0 !important;
  text-transform: uppercase;
}

.nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0rem;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background: #006186;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.nav-link:hover:after {
  width: 20px;
}

.nav-item.active .nav-link::after {
  width: 20px;
}

/* Bs nav para el menú mobile */
.bsnav-mobile .navbar {
  left: 0 !important;
  color: #fff !important;
  transform: translate3d(-300px, 0, 0) !important;
  width: 80%;
  max-width: 300px;
}

.bsnav-mobile.in .navbar {
  transform: translate3d(0px, 0, 0) !important;
}

.bsnav-mobile .navbar.bsnav-dark {
  background: #ffffff !important;
  color: #251f20 !important;
  padding: 0px 0 15px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -webkit-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.65);
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in {
  padding: 1.2rem 10rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 15px -5px,
    rgba(0, 0, 0, 0.25) 0px 4px 10px -8px;
}

.navbar-toggler-icon,
.navbar-toggler-icon::after,
.navbar-toggler-icon::before {
  background-color: #251f20 !important;
}

.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon,
.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon::after,
.bsnav-sticky.bsnav-sticky-slide.sticked.in
  .navbar-toggler
  .navbar-toggler-icon::before {
  background-color: #251f20;
}

/*//////////////////////// MAIN-HERO ////////////////////////////*/
.main-section {
  height: 100vh;
  position: relative;
  line-height: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-title {
  position: absolute;
  text-align: center;
  z-index: 5;
  
  width: 90%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  height: fit-content;
}

.main-title h1 {
  font-size: 50px;
  color: #006186;
  line-height: 1;
}
.main-title p {
  font-size: 22px;
  line-height: 1.3;
}

.main-section .carousel {
  height: 100vh;
}

.main-section .carousel-inner {
  height: 100%;
}

.main-section .carousel-item,
.main-section .carousel-item.active {
  height: 100%;
}

.main-section .carousel-item img,
.main-section .carousel-item.active img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 4rem;
  padding-left: 0;
  align-items: center;
  z-index: 5;
}

.carousel-indicators li {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  margin-left: 4px;
  background-color: transparent;
  border: 1px solid #4D4D4D;
  opacity: 1;
  transition: all 0.6s ease;
  border-radius: 50%;
}

.carousel-indicators li.active {
  background-color: #4D4D4D;
  box-shadow: none;
}

.carousel-control-prev,
.carousel-control-next {
  border: 0;
  background: transparent;
  opacity: 0.8;
  width: 35px;
  margin: 0 2rem;
  z-index: 10;
}

/* FLOAT BTN */
.wsp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 22px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50px;
  color: white;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 32px;
}

.wsp-float:hover {
  text-decoration: none;
  color: white;
  background-color: #18b853;
}

.btn-float {
  position: fixed;
  height: 45px;
  bottom: 25px;
  right: 85px;
  background-color: #006186;
  border-radius: 50px;
  color: white;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 500;
  padding: 1px 17px;
}

.btn-float:hover {
  text-decoration: none;
  color: white;
  background-color: #5885a7;
}

/*///////////////////////// animation zoom /////////////////////////*/
.animaZoom {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.infinite-zoom {
  -webkit-animation: zoomSlow 35s infinite linear;
  -moz-animation: zoomSlow 35s infinite linear;
  animation: zoomSlow 35s infinite linear;
}

@-webkit-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomSlow {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -moz-transform: scale(1.3) rotate(0.1deg);
    -webkit-transform: scale(1.3) rotate(0.1deg);
    transform: scale(1.3) rotate(0.1deg);
  }

  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*///////////////////////// NOSOTROS //////////////////////////*/
.about-us {
  padding: 7rem 0;
  position: relative;
}

.about-us-text {
  font-size: 28px;
}

.separator-deco {
  background: url(../images/bg-separator.jpg) #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.separator-deco p{ font-size: 26px;}
.separator-deco h3{ font-size: 48px; line-height: 1.1;}

/*///////////////////////// AREAS //////////////////////////*/
.ttl-areas{ font-size: 38px; line-height: 1;}
/* Card de CTA */
.action-blocks {
  padding: 4rem 0;
  background-color: white;
}

.action-card {
  padding: 5rem 3.5rem;
  min-height: 330px;
  position: relative;
  display: block;
  overflow: hidden;
  transition: var(--transition-All);
  text-align: center;
  margin: 5px;
}
.action-card h2{ 
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 1rem;
}
.action-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.action-card:hover .action-card-img-bg {
  transform: scale(1.05);
  opacity: 0.1;
}

.action-card-content {
  z-index: 5;
  display: block;
  position: relative;
  text-align: center;
}

.action-card-icon {
  height: 37px;
  width: auto;
  margin-bottom: 1rem;
}

.action-card-img-bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  left: 0;
  top: 0;
  opacity: 0.2;
  transition: var(--transition-All);
}

.action-card-bg-blue {
  background-color: #003347;
}
.action-card-bg-gray {
  background-color: #040404;
}



/* Modales */
.modal-content {
  border-radius: 0;
  background-color: #fffdf6;
  position: relative;
  padding: 3rem 1rem 3rem 1rem;
}

.close {
  position: absolute;
  z-index: 5;
  right: 0.8rem;
  top: 0.6rem;
}

.room-icon {
  height: 67px;
}

.carousel-controls-container {
    width: 100px;
    height: 100px;
    background: url(../images/bg-carousel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 35%;
}

.carousel-controls-container button {
  position: relative;
  margin: 0 .5rem;
  opacity: 1;
  width: 25px;
}

/*///////////////////////// Contacto //////////////////////////*/
.contact {
}

.contact-container {
  padding: 5rem 2rem 1rem 2rem;
  background-color: white;
}

/*///////////////////////// FOOTER //////////////////////////*/
footer {
  padding: 3rem 0 1rem 0;
}

footer p,
footer a {
  font-size: 18px;
  font-weight: 500;
  color: #606060;
  transition: 0.3s;
}

footer a:hover {
  color: #006186;
}

.footer-border {
  border-right: 1px solid #606060b2;
}

.footer-logo {
  width: 100%;
  max-width: 250px;
}

.footer-contact a:hover {
  margin-left: 5px;
}

.social-media-container {
  display: flex;
  justify-content: end;
  margin-top: 1rem;
}

.social-media {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50px;
  color: #606060;
  border: 1px solid #606060;
  padding: 1rem;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-right: 12px;
  background-color: transparent;
}

.social-media:hover {
  background-color: #006186;
  color: white;
  border: 1px solid #006186;
}

/* Form */
.form-control {
  border: 0;
  border-radius: 0px;
  transition: 0.3s;
  background-color: #fff;
  color: #606060;
  padding: 0.8rem 0.4rem;
  font-weight: 300;
  font-size: 16px;
  border-bottom: 1px solid #d1d1d1;
}

.form-control:hover,
.form-control:focus {
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid #006186;
  background-color: #fff;
}

.form-control::placeholder {
  color: #606060;
  opacity: 1; /* Firefox */
  text-transform: uppercase;
  font-weight: 500;
}

.form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #606060;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-form {
  color: #006186;
  font-weight: 600;
}

.relative {
  position: relative;
}

#response {
  background: #2ec770;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 25px 10px;
  position: absolute;
  top: 0px;
}

.fx-fading-circle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #d9d9d991 url(../images/loading.gif) center no-repeat;
}

.loading {
  display: none;
}

/*////////////////////// RESPONSIVE //////////////////*/

@media (max-width: 1440px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.2rem 5rem;
  }
}

@media (max-width: 1360px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.2rem 3rem;
  }
}

@media (max-width: 1024px) {
  .navbar,
  .bsnav-sticky.bsnav-sticky-slide.sticked.in,
  .internal-header .bsnav-sticky.bsnav-sticky-slide.sticked.in {
    padding: 1.2rem 1rem;
    align-items: center;
  }

  .carousel-controls {
    margin-right: 1rem;
  }
}

@media (max-width: 768px) {
  h2, .h2{ font-size: 42px;}
  .hr-deco{ width: 160px; margin-bottom: 20px;}
  .navbar-brand img {
    height: 70px;
  }
  .location-deco{
    background-position: top left;
  }

  .navbar {
    align-items: center;
  }

  .bsnav-mobile .navbar-nav {
    padding: 30px;
  }

  .nav-item {
    margin: .4rem 0;
  }

  .nav-link {
    font-weight: 400;
    padding: 6px 0 12px 0;
  }

  .carousel-controls-container {
    left: auto;
    right: 0;
    bottom: 40%;
  }

}

@media (max-width: 525px) {
  .mobile-alignment {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-section .carousel-control-prev,
  .main-section .carousel-control-next {
    display: none;
  }

  .carousel-indicators {
    bottom: 6rem;
  }

  .main-section {
    height: 95vh;
  }

  .main-title h1 {
    font-size: 32px;
  }

  .about-us-text {
    font-size: 24px;
  }

  .location-deco {
    min-height: 600px;
  }

  .carousel-images img {
    height: 390px;
  }

  .carousel-controls {
    margin-right: 0rem;
    margin-top: 1rem;
  }

  .carousel-buttons {
    width: 110px;
    height: 110px;
  }

  .carousel-controls .modal-open-btn {
    width: 115px;
    margin-right: 120px;
  }

  .footer-border {
    border: 0;
  }

  .social-media-container {
    justify-content: start;
  }

  .carousel-controls-container {
    bottom: 50%;
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 376px) {
}
