@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

body {
  position: relative;
}

p {
  font-size: 18px;
  color: #333;
}

.h1 {
  color: #333;
  font-weight: 800;
}

.spinner-loader {
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s all ease;
}
.spinner-loader img {
  width: 200px;
}

.navbar {
  position: absolute;
  z-index: 2;
  width: 100%;
  transition: 0.5s all ease;
}
.navbar.sticky-navbar {
  position: fixed;
  background-color: #fff;
}
.navbar.sticky-navbar .logo {
  width: 80px;
}

.navbar-collapse {
  justify-content: end;
}

.logo {
  width: 120px;
}

.main_slider {
  height: 100vh;
  overflow: hidden;
}
.main_slider img {
  width: 100%;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.parallax {
  position: relative;
  background-image: url("../images/centroig.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  height: 600px;
}
.parallax .logo-parallax {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.parallax .logo-parallax img {
  width: 300px;
}

.bg-orange {
  background-color: #f8853d;
}

.bg-orange-to-white {
  background: linear-gradient(0deg, rgb(248, 133, 61) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, rgb(248, 133, 61) 100%);
}

.sobre_mi .h1, .sobre_mi p {
  color: #fff;
}
.sobre_mi img {
  width: 350px;
}

.prensa .prensa-content {
  display: flex;
  align-items: center;
}
.prensa .prensa-text {
  flex: 0 0 80%;
}
.prensa .prensa-img {
  flex: 0 0 20%;
}

.agenda .h1 {
  border-color: #333;
}

.video {
  text-align: center;
}

.output.agenda {
  display: flex;
  flex-direction: column;
}

.contacto .h1, .contacto p, .copyright .h1, .copyright p {
  color: #fff;
}
.contacto a, .copyright a {
  text-decoration: none;
  color: #fff;
  transition: 0.5s all ease;
}
.contacto a:hover, .copyright a:hover {
  color: #333;
}

.mobile-menu-open .navbar {
  background-color: #fff;
}

.mobile-view {
  display: none;
}

.whatsapp {
  position: fixed;
  bottom: 50px;
  right: 50px;
  font-size: 24px;
  background-color: #0dc143;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 9999;
}
.whatsapp .fa-whatsapp {
  color: #fff;
}
.whatsapp:hover {
  background-color: #fff;
  border: 1px solid #0dc143;
}
.whatsapp:hover .fa-whatsapp {
  color: #0dc143;
}

@media (max-width: 991px) {
  .main_slider {
    height: unset;
    margin-bottom: -1%;
  }
  .video iframe {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .navbar {
    position: relative;
  }
  .navbar .logo {
    width: 80px;
  }
  .main_slider {
    margin-bottom: -3%;
  }
  .prensa .prensa-text {
    flex: 0 0 100%;
  }
  .whatsapp {
    bottom: 20px;
    right: 20px;
  }
}/*# sourceMappingURL=styles.css.map */