 @charset "utf-8";
/* CSS Document */

/****General****/
html, body {
	margin:0;
	padding: 0;
	font-family: "Bricolage Grotesque", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-image: url(../images/dot.png);
  background-repeat: repeat;
  background-size: 8px;
  background-position: center;
  background-attachment: fixed;
}
div {
	box-sizing: border-box;
}
button:focus, a:focus, .btn:focus {
  outline: none;
  box-shadow: none;
}
/********/
.bricolage-grotesque-<uniquifier> {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.b400 {
  font-weight: 400;
}
.b600 {
  font-weight: 600;
}
.b700 {
  font-weight: 700;
}
.text-chico {
  font-size: .8rem;
}
.text-azul {
  color: #415184;
}
.text-verde {
  color: #0eaa9c;
}
/********/
.btn-base {
  padding: .64rem 2.04rem;
  border-radius: 0;
  font-size: .8rem;
  text-transform: uppercase;
}
.link-simple {
  color: inherit!important;
  text-decoration: none;
}
.link-simple:hover {
  text-decoration: underline;
}
.btn-verde {
  background-color: #0eaa9c;
  color: #FFF;
  border-radius: 20px;
  border: 1px solid #0eaa9c;
}
.btn-verde:hover {
  background-color: #FFF;
  border: 1px solid #0eaa9c;
  color: #415184;
}
.btn-floating, .btn-floating:hover {
  border-radius: 50% !important;
  padding: 0 !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  text-decoration: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
/********/
.bg-azul {
  background-color: #415184;
}
/********/
.offcanvas {
  background-image: url(../images/dot.png);
}
.custom-tooltip {
  --bs-tooltip-bg: #415184;
  --bs-tooltip-color: #FFF;
}
/*******/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animingreso {
  animation: fadeIn 1s ease-in-out;
}
/*******/
@media (max-width: 1200px) {
  .h1, h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  #scene {
    overflow: hidden;
  }
}