@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

.alinear-der{
  float: right;
}

.alinear-izq{
  float: left;
}

.modal-title{
  font-family: 'Heebo', sans-serif;
  color: #2b3e6b;
  text-align: left;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.modal-text{
  font-family: 'Heebo', sans-serif;
  text-align: justify;
  font-size: 16px;
  line-height: 20px;
  color: #313131;
}

.modal-title2{
  font-family: 'Heebo', sans-serif;
  color: #fff;
  text-align: left;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 15px;
}

.modal-text2{
  font-family: 'Heebo', sans-serif;
  text-align: left;
  font-size: 20px;
  font-weight: 200;
  line-height: 25px;
  color: #9ccacf;
}

.modal {
  will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: $modal-delay;
}
.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  max-width: 60%;
  padding: 1.2rem;
}
@media (min-width: 200px) and (max-width: 1024px) {
  .modal__dialog {
    max-width: 100%;
    padding: 1.2rem;
  }
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 0;
  background: #fff;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__content--active {
  opacity: 1;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  display: inline-block;
  padding: 1.2rem 2.4rem 0rem 2.4rem;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/**
 * Demo specific CSS
 */
.demo-close02 {
  border: 0px;
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  padding: 5px 10px;
  color: #9ccacf;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 600;
  background: transparent;
  border-radius: 0%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close02:hover, .demo-close02:focus {
  border: 0px;
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  padding: 5px 10px;
  color: #9ccacf;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 600;
  background: transparent;
  border-radius: 0%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close03, .demo-close03:hover, .demo-close03:focus {
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  color: #9ccacf;
  font-family: 'Heebo', sans-serif;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  border-radius: 0%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: rgba(0,0,0,0.6);
}
.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 45px;
  transform: rotate(0);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo img:hover {
  transform: rotate(180deg) scale(1.1);
}