/* Main clases */
body {
  font-family: "Quicksand", sans-serif;
}

.title {
  margin: 20px 0;
  font-weight: 900;
  line-height: 2.5rem;
  font-size: 30px;
}

.paragraph {
  font-size: 21px;
  line-height: 1.42857143;
}

/* Lists clases*/
.custom-counter {
  list-style: none;
  counter-reset: item;
}

.custom-counter .custom-li {
  counter-increment: item;
  margin-bottom: 5px;
}

.custom-counter .custom-li::before {
  margin-right: 10px;
  content: counter(item);
  font-size: 80%;
  font-weight: 700;
  background-color: #467fbf;
  border-radius: 100%;
  color: #fff;
  width: 1.5em;
  text-align: center;
  display: inline-block;
}

/* GRID Clases*/
.columns-container {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem 0;
  justify-content: space-evenly;
  gap: 2rem;
}

.columns-expanded {
  flex: 1 0 calc(33% - 2rem);
}

.columns-item {
  width: calc(33% - 2rem);
}

@media (max-width: 768px) {
  .columns-expanded {
    flex: 1 0 calc(100% - 2rem);
  }

  .columns-item {
    width: calc(100% - 2rem);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .columns-expanded {
    flex: 1 0 calc(48% - 2rem);
  }

  .columns-item {
    width: calc(48% - 2rem);
  }
}

/*Carousel clases */
.simple-carousel {
  position: relative;
  height: 28rem;
  background: url("/assets/images/home/bg2.webp") center center repeat;
  background-size: cover;
}

.carousel-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #467fbf;
  opacity: 0.9;
}

/** Demo clases */

.demo {
  background: url("/assets/images/home/demo.webp") center top no-repeat;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  height: 400px;
  position: relative;
}

.demo-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  height: 400px;
}

.icon-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  font-size: 60px;
  animation: big 2s infinite alternate-reverse;
  transition: all 0.3s;
}

@keyframes big {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.button-disabled{
  cursor: default;
  opacity: 0.5;
  background-color: gray !important;
}