@import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  16% {
    -webkit-transform: translateX(-50px) scale(1);
            transform: translateX(-50px) scale(1);
  }
  28% {
    -webkit-transform: translateX(-50px) scale(2);
            transform: translateX(-50px) scale(2);
  }
  42% {
    -webkit-transform: translateX(0px) scale(3);
            transform: translateX(0px) scale(3);
  }
  56% {
    -webkit-transform: translateX(0px) scale(4);
            transform: translateX(0px) scale(4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(5);
            transform: translateX(0px) scale(5);
  }
  84% {
    -webkit-transform: translateX(0px) scale(6);
            transform: translateX(0px) scale(6);
  }
  100% {
    -webkit-transform: translatey(0px) scale(7);
            transform: translatey(0px) scale(7);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  14% {
    -webkit-transform: translateX(-50px) scale(.6);
            transform: translateX(-50px) scale(.6);
  }
  28% {
    -webkit-transform: translateX(-50px) scale(.7);
            transform: translateX(-50px) scale(.7);
  }
  42% {
    -webkit-transform: translateX(0px) scale(.8);
            transform: translateX(0px) scale(.8);
  }
  56% {
    -webkit-transform: translateX(0px) scale(.9);
            transform: translateX(0px) scale(.9);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1);
  }
  84% {
    -webkit-transform: translateX(0px) scale(1.1);
            transform: translateX(0px) scale(1.1);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1.2);
            transform: translatey(0px) scale(1.2);
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}

html, body {
  background: #eaedf2;
  font-family: 'Roboto', sans-serif;
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  margin: 35px 25px;
  z-index: 999;
}

.floating-container_2 {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  margin: 35px 25px;
  z-index: 999;
}


.floating-container:hover {
    /* height: 525px; */
    height: 335px;
  }
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
  -webkit-transform: translatey(5px);
          transform: translatey(5px);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.1s forwards 0.10s;
          animation: come-in 0.1s forwards 0.10s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.2s forwards 0.12s;
          animation: come-in 0.2s forwards 0.12s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.3s forwards 0.14s;
          animation: come-in 0.3s forwards 0.14s;
}
.floating-container:hover .element-container .float-element:nth-child(4) {
    -webkit-animation: come-in 0.4s forwards 0.16s;
            animation: come-in 0.4s forwards 0.16s;
  }

  .floating-container:hover .element-container .float-element:nth-child(5) {
    -webkit-animation: come-in 0.5s forwards 0.18s;
            animation: come-in 0.5s forwards 0.18s;
  }

  .floating-container:hover .element-container .float-element:nth-child(6) {
    -webkit-animation: come-in 0.6s forwards 0.20s;
            animation: come-in 0.6s forwards 0.20s;
  }

  .floating-container:hover .element-container .float-element:nth-child(7) {
    -webkit-animation: come-in 0.7s forwards 0.22s;
            animation: come-in 0.7s forwards 0.22s;
  }

.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #2cb3f0;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.floating-container .float-element .material-icons {
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}


.floating-container .float-element .bi-whatsapp{
    vertical-align: middle;
    font-size: 16px;
    color: #eaedf2;
  }

  .bi-whatsapp{
    vertical-align: middle;
    font-size: 30px;
    color: #4CAF50;
  }

  .bi-whatsapp:hover {
    color: #68e96c;
    }


  .floating-container .float-element .bi-telephone-fill{
    vertical-align: middle;
    font-size: 16px;
    color: #eaedf2;
  }

  .bi-telephone-fill{
    vertical-align: middle;
    font-size: 30px;
    color: rgba(0, 44, 100, 0.902);
  }

  .bi-telephone-fill:hover{
    color: rgba(0, 82, 189, 0.902);
  }

  .HoverCat{

    color: #131313; vertical-align:middle; font-size:20px; font-weight:bold; padding-top:6px;
  }
  .HoverCat:hover{
    color: rgba(66, 66, 66, 0.902);

  }

  .TextPhone{

    color: #131313; vertical-align:middle; font-size:20px; font-weight:bold; padding-top:6px;
  }

  .floating-container .float-element .bi-messenger{
    vertical-align: middle;
    font-size: 16px;
    color: #eaedf2;
  }

  .floating-container .float-element .bi-twitter{
    vertical-align: middle;
    font-size: 16px;
    color: #eaedf2;
  }

  .floating-container .float-element .bi-envelope-fill{
    vertical-align: middle;
    font-size: 16px;
    color: #eaedf2;
  }

  .bi-envelope-fill{
    vertical-align: middle;
    font-size: 30px;
    color: #c2ae3c;
  }

  .bi-envelope-fill:hover{
    color: #ffe44e;
  }


  

/* .floating-container .float-element:nth-child(2) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
} */

/* .floating-container .float-element:nth-child(4) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
} */






/* .floating-container .float-element:nth-child(1) {
    background: #00acee ;
    box-shadow: 0 20px 20px -10px #003246 ;
} */

.floating-container .float-element:nth-child(1) {
  background: #3b5998;
  box-shadow: 0 20px 20px -10px #182541 ;
}

.floating-container .float-element:nth-child(2) {
  background: #4CAF50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

.floating-container .float-element:nth-child(3) {
  background: #c2ae3c;
  box-shadow: 0 20px 20px -10px rgba(92, 85, 21, 0.822);
}

.floating-container .float-element:nth-child(4) {
  background: rgba(0, 44, 100, 0.902);
  box-shadow: 0 20px 20px -10px rgba(0, 44, 100, 0.902);
}

/* .floating-container .float-element:nth-child(1) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(2) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(3) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(4) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(5) {
    background: #3b5998;
    box-shadow: 0 20px 20px -10px #182541 ;
}
.floating-container .float-element:nth-child(6) {
    background: #00ff22;
    box-shadow: 0 20px 20px -10px rgba(0, 255, 0, 0.822);
}

.floating-container .float-element:nth-child(7) {
    background: #00ff22;
    box-shadow: 0 20px 20px -10px rgba(0, 255, 0, 0.822);
} */

.modal-content  {
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    border-radius: 25px !important; 
}




/* -------------------------- */

.floating-container_2:hover {
  /* height: 525px; */
  height: 335px;
}
.floating-container_2:hover .floating-button {
box-shadow: 0 10px 25px rgba(104, 80, 147, 0.671);
-webkit-transform: translatey(5px);
        transform: translatey(5px);
-webkit-transition: all 0.1s;
transition: all 0.1s;
}
.floating-container_2:hover .element-container .float-element:nth-child(1) {
-webkit-animation: come-in 0.1s forwards 0.10s;
        animation: come-in 0.1s forwards 0.10s;
}
.floating-container_2:hover .element-container .float-element:nth-child(2) {
-webkit-animation: come-in 0.2s forwards 0.12s;
        animation: come-in 0.2s forwards 0.12s;
}
.floating-container_2:hover .element-container .float-element:nth-child(3) {
-webkit-animation: come-in 0.3s forwards 0.14s;
        animation: come-in 0.3s forwards 0.14s;
}
.floating-container_2:hover .element-container .float-element:nth-child(4) {
  -webkit-animation: come-in 0.4s forwards 0.16s;
          animation: come-in 0.4s forwards 0.16s;
}

.floating-container_2:hover .element-container .float-element:nth-child(5) {
  -webkit-animation: come-in 0.5s forwards 0.18s;
          animation: come-in 0.5s forwards 0.18s;
}

.floating-container_2:hover .element-container .float-element:nth-child(6) {
  -webkit-animation: come-in 0.6s forwards 0.20s;
          animation: come-in 0.6s forwards 0.20s;
}

.floating-container_2:hover .element-container .float-element:nth-child(7) {
  -webkit-animation: come-in 0.7s forwards 0.22s;
          animation: come-in 0.7s forwards 0.22s;
}

.floating-container_2 .floating-button {
position: absolute;
width: 65px;
height: 65px;
background: #695093;
bottom: 0;
border-radius: 50%;
left: 0;
right: 0;
margin: auto;
color: white;
line-height: 65px;
text-align: center;
font-size: 23px;
z-index: 100;
box-shadow: 0 10px 25px -5px rgba(104, 80, 147, 0.671);
cursor: pointer;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.floating-container_2 .float-element {
position: relative;
display: block;
border-radius: 50%;
width: 50px;
height: 50px;
margin: 15px auto;
color: white;
font-weight: 500;
text-align: center;
line-height: 50px;
z-index: 0;
opacity: 0;
-webkit-transform: translateY(100px);
        transform: translateY(100px);
}
.floating-container_2 .float-element .material-icons {
vertical-align: middle;
font-size: 16px;
color: #eaedf2;
}


.floating-container_2 .float-element .bi-whatsapp{
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}

 .bg {
    background-color: #b9e9a7;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  .bg:hover {
    background-color: #8fc57b;
    /* padding: 10px;
    border-radius: 20px; */
  }


.bi-whatsapp{
  vertical-align: middle;
  font-size: 20px;
  color: #4CAF50;
}

.bi-whatsapp:hover {
  color: #68e96c;
  }


  .bi-qr-code{
    vertical-align: middle;
    font-size: 20px;
    color: #4CAF50;
  }
  
  .bi-qr-code:hover {
    color: #68e96c;
    }

.floating-container_2 .float-element .bi-telephone-fill{
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}

.bi-telephone-fill{
  vertical-align: middle;
  font-size: 30px;
  color: rgba(0, 44, 100, 0.902);
}

.bi-telephone-fill:hover{
  color: rgba(0, 82, 189, 0.902);
}

.title_size_qr {

  color: #131313; vertical-align:middle; font-size:1.4em; font-weight:bold; padding-top:6px;
}

.HoverCat{

  color: #131313; vertical-align:middle; font-size:19px; font-weight:bold; padding-top:6px;
}
.HoverCat:hover{
  color: rgba(66, 66, 66, 0.902);

}

.TextPhone{

  color: #131313; vertical-align:middle; font-size:20px; font-weight:bold; padding-top:6px;
}

.floating-container_2 .float-element .bi-messenger{
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}

.floating-container_2 .float-element .bi-twitter{
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}

.floating-container_2 .float-element .bi-envelope-fill{
  vertical-align: middle;
  font-size: 16px;
  color: #eaedf2;
}

.bi-envelope-fill{
  vertical-align: middle;
  font-size: 30px;
  color: #c2ae3c;
}

.bi-envelope-fill:hover{
  color: #ffe44e;
}

.floating-container_2 .float-element:nth-child(1) {
background: #3b5998;
box-shadow: 0 20px 20px -10px #182541 ;
}

.floating-container_2 .float-element:nth-child(2) {
background: #4CAF50;
box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

.floating-container_2 .float-element:nth-child(3) {
background: #c2ae3c;
box-shadow: 0 20px 20px -10px rgba(92, 85, 21, 0.822);
}

.floating-container_2 .float-element:nth-child(4) {
background: rgba(0, 44, 100, 0.902);
box-shadow: 0 20px 20px -10px rgba(0, 44, 100, 0.902);
}

/* ------------------------------------------- */

#console {display: none;}
#dialog {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.15);
  transition: visibility 0s linear 0.5s,opacity 0.5s linear;
  opacity: 0;
  visibility: hidden;
}
.dialog_state {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.dialog_state:checked + #dialog,
#dialog.dialog_open {
  transition-delay:0s;
  opacity: 1;
  visibility: visible;
}
#dlg-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.dialog_state:checked + #dialog #dlg-wrap {
  max-height: 24rem;
  opacity: 1;
  padding: 2rem;
}
#dlg-wrap {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  padding: 2rem;
  border-radius: 0.25rem;
  /*border: 1px solid #969696;*/
  background: #fff;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all .5s;
}
#dlg-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
}
h2#dlg-header {
  font: 200 2em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: initial;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
#dlg-content {
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.015em;
}
#dlg-prompt .button {
  margin: 1rem 0.5rem;
  border-radius: 1.5rem;
}

/* .modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, .7);
  transition: all .4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #d02d2c;
  }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
} */