:root {
  /* fonts */
  --font-family: 'Roboto', sans-serif;

  /* sizes */
  --wrapperWidth: 90%;
  --wrapperMaxWidth: 1400px;
  --mainMenu-padding: 0 30px;
  --nav-space: 20px;
  --p1: 15px;
  --p2: 20px;
  --p3: 30px;

  /* others */
  --component-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  --component-shadow2: 0px 10px 20px rgba(0, 0, 0, 0.1);
  --component-shadow-hover: 0px 3px 3px rgba(0, 0, 0, 0.1), 2px 1px 2px rgba(0, 0, 0, .12);
}

html {
  overflow: hiden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}

html, body{ height: 100%;}

ul {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

hr,
button {
  border: none;
}

h1 {
  font-size: 96px
}

h2 {
  font-size: 60px
}

h3 {
  font-size: 48px
}

h4 {
  font-size: 34px
}

h5 {
  font-size: 24px
}

h6 {
  font-size: 20px
}

a {
  color: rgba(var(--color-contrast-rgb), 0.9);
  text-decoration: none;
}

a:hover {
  color: rgba(var(--color-contrast-rgb), 1);
}

a:hover,
button:hover {
  cursor: pointer;
}

a {
  overflow-wrap: break-word;
}

body section:first-child {
  position: relative;
}

.mb0 {
  margin-bottom: 0px !important;
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  width: var(--wrapperWidth);
  max-width: var(--wrapperMaxWidth);
}

.text-no-wrap {
  white-space: nowrap;
  padding: 0 !important;
}

.space {
  height: 20vh;
}

.text-center {
  text-align: center;
}

.bg-form{
  position: absolute;
  width: initial; 
  max-width: 100%;
  z-index: -1 !important;
}


#whatsapp-bubble {
  position: fixed;
  background-color: #25D366;
  right: -100px;
  /*bottom: 20px;*/
  bottom: 85px;
  z-index: 9999;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
  animation-name: slidein;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.whatsapp_home {
  bottom: 20px !important;
}

@media only screen and (min-width: 768px) {
    #whatsapp-bubble {
      height: 60px;
      width: 60px; 
    } 
}

#whatsapp-bubble:hover {
  background-color: #1ea952; 
}

#whatsapp-bubble a, #whatsapp-bubble .bubble-content {
  height: 100%;
  width: 100%; 
}

#whatsapp-bubble .bubble-content {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center; 
}

#whatsapp-bubble .bubble-content svg {
  fill: #FFFFFF; 
}

@media only screen and (min-width: 768px) {
  #whatsapp-bubble .bubble-content svg {
    width: 30px;
    height: 30px; 
  }
}

@media only screen and (min-width: 450px) {
  #home-footer nav ul:last-child li:last-child {
    margin-right: 60px;
  }
}

@keyframes slidein {
  to {
    right: 25px; 
  } 
}

@media only screen and (min-width: 768px) {
  @keyframes slidein {
    to {
      right: 25px; 
    } 
  } 
}



