﻿
.bg-primary, .bg-primary:hover {
    background-color: #1481A8 !important;
}
.bg-secondary, .bg-secondary:hover {
    background-color: #9D9D9D !important;
}
.bg-success, .bg-success:hover {
    background-color: #A6CE39 !important;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #1481A8;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #A6CE39;
}

.interactive-content p {font-size: 20px;line-height: 40px;}
.logotipo {	height: 100px;}

.interactive-content p {
    font-size: 20px;
    line-height: 40px;
    color: #000;
}

.interactive-content-bg{
    color: #fff;
}

.interactive-content-bg p {
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}


.counter-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.counter-section {
  text-align: center;
}

.counter-label {
  font-size: 2.2em;
  margin-bottom: 50px;
  line-height: 1.5em;
}

.counter {
  font-size: 3em;
  font-weight: bold;
}

/* Basic animation */
.counter {
  transition: all 2s ease-out;
  opacity: 0;
}
.counter.in-view {
    opacity: 1;
}
