@font-face {
  font-family: 'gilroy-bold';
  src: url('../fonts/gilroy-bold-webfont.woff2') format('woff2'),
       url('../fonts/gilroy-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'extatica-bold';
  src: url('../fonts/extatica-bold-webfont.woff2') format('woff2'),
       url('../fonts/extatica-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.font-gilroy {
  font-family: 'gilroy-bold';
}

.font-extatica {
  font-family: 'extatica-bold';
}

.font-color-blue-1 {
  color: #2e68af;
}

.font-color-brown-1 {
  color: #441514;
}

html,body,#main {
  height: 100%;
}
#main {
  /*
  display: flex;
  flex-flow: column;
  */
  background-color: #fffcf0;
  border: 0.3vw solid #ff38fb;
  background-image: url('../images/arvore-middle.svg'), url('../images/bg-grid.png');
  /* background-size: 60%, 3%; */
  background-position: center center, center center;
  background-repeat: no-repeat, repeat;
  animation: patternmove 60s infinite;
  transition: all 0.3s ease-in;
}

.flex05 {
  flex: 0.5;
}
.flex1 {
  flex: 1;
}

.logotipo {
  width: 3vw;
  min-width: 45px;
}

.menu-icon {
  width: 2.2vw;
  min-width: 35px;
}
.menu-icon-item span {
  transition: all 0.3s ease-in;
  margin-left: -115px;
}


.menu-icon:hover ~ .menu-icon-item span {
	margin-left: 0px;
}

.blue-bullet {
  width: 19px;
}

.pink-arrow-button {
  top: 45%;
  left: 65%;
}

.pink-arrow-button .pink-arrow {
  margin-left: 0px;
  transition: all 0.5s ease-in;
}

.pink-arrow-button:hover .pink-arrow {
  animation: arrowRight 1s ease-in-out;
  transition: all 0.8s ease-in;
}

.pink-arrow img {
  width: 4.1vw;
}
.blue-bullet-image {
  display: inline;
  width: 12px;
  margin-top: -3px;
  margin-right: 4px;
}

@media (max-width: 600px) {
  #main {
    background-size: 200%, 3%;
    background-position: center 25%, center center;
  }
  .blue-bullet-text {
    font-size: 13px;
  }
  @keyframes patternmove {
    50% {
      background-size: 200%, 30%;
    }
  }
  .pink-arrow-button {
    top: auto;
    left: 0;
    bottom: 70px;
    width: 100%;
    padding: 3vw;
  }
  .pink-arrow-button .col-auto {
    width: 100%;
    display: block;
    text-align: center;
  }
  .pink-arrow img {
    width: 40px;
    margin: 5px auto 0 auto !important;
  }
}
@media (min-width: 600px) {
  #main {
    background-size: 60%, 3%;
  }
  .blue-bullet-text {
    font-size: 16px;
  }
  @keyframes patternmove {
    50% {
      background-size: 60%, 7%;
    }
  }
}

@-moz-keyframes  arrowRight { 
  0% {
    margin-left: 0px;
  }
  20% { 
      margin-left: 10px;
  } 
  45% { 
    margin-left: 0px;
  } 
  75% { 
    margin-left: 10px;
  } 
  100% { 
    margin-left: 0px;
  }
}
@-webkit-keyframes  arrowRight { 
  0% {
    margin-left: 0px;
  }
  20% { 
      margin-left: 10px;
  } 
  45% { 
    margin-left: 0px;
  } 
  75% { 
    margin-left: 10px;
  } 
  100% { 
    margin-left: 0px;
  }
}
@keyframes  arrowRight { 
  0% {
    margin-left: 0px;
  }
  25% { 
      margin-left: 15px;
  } 
  50% { 
    margin-left: 0px;
  } 
  75% { 
    margin-left: 15px;
  } 
  100% { 
    margin-left: 0px;
  }

}

.circle-1 {
  width: 3%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed gray;
  position: absolute;
  top: calc(50% - 1.5%);
  left: calc(50% - 1.5%);
  margin-left: -7.2%;
  margin-top: 11.5%;
  animation: roundCircle 3s linear infinite, moveCircleAbottom 15s linear infinite;
}

@keyframes  roundCircle { 
  100% {
    -webkit-transform: rotate(-360deg); 
    transform:rotate(-360deg); 
  }
}

@keyframes  moveCircleAbottom { 
  0% {
    margin-left: -7.2%;
    margin-top: 11.5%;
  }
  50% {
    margin-left: -1.4%;
    margin-top: -10.5%;
  }
  100% {
    margin-left: -7.2%;
    margin-top: 11.5%;
  }
}