.keywords{
    position: fixed;
    top: 0;
    color: #fff;
    z-index: -2;
}
.keywords a {
  color: #fff;
}

.about_contentvalue {
    min-height: 100%;
    /*background: #02a7c2;*/
    /*margin-top: 6%;*/
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}
.divide{
  padding: 20px 5px;
  height: 100%;
  border-radius: 10px 0;
}
.divide h3, .divide i{
  color: #fff;
}

.w-60{
  width: 70%;
}

.circle {
  position: relative;
  display: block;
  margin: 2em 0;
  background-color: transparent;
  color: #222;
  text-align: center;
}

.circle:after {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  border-radius: 50%;
  /* background-color: #ddd; */
  content: "";
  border: 3px double #501092;
}

.circle__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle__wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.circle__content {
  display: table-cell;
  padding: 1em;
  vertical-align: middle;
}
.circle__content a{
  color: #000;
}

@media (min-width: 480px) {
  .circle__content {
    font-size: 2em;
  }
}

@media (min-width: 768px) {
  .circle__content {
    font-size: 1.3em;
  }
}

.fade-in-down {
  animation: fade-in-down 2s ease infinite;
}
/*@keyframes fade-in-down {
  0% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}*/

@keyframes fade-in-down {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
}
 

.fade-in-up {
  animation: fade-in-up 2s ease infinite;
}
/*@keyframes fade-in-up {
  0% {
    opacity: 1;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}*/

@keyframes fade-in-up {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
  40% {transform: translateY(30px);}
  60% {transform: translateY(15px);}
}
/*--------------------------------------------------*/
.bulb_hover:hover{
  filter: drop-shadow(0px 2px 15px #ffda33);
  transition: 0.5s;
}

.arrow{
  position: relative;
  width: 50%;
  background: #dad8fb;
  height:80px;
  /*line-height: 40px;*/
  margin-bottom:30px; 
  text-align:center;
  color:#4f0f91;
}


/*right arrow*/

.arrow-right:after{
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 40px solid #dad8fb; 
}

/*left arrow*/

.arrow-left:before{
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-right: 40px solid #dad8fb; 
}

/*----------------------------------------------------*/
#btn-fix {
    position: fixed;
    top: 300px;
    right: -20px;
    z-index: 999;
    transform: rotate(269deg);
    background: #e31e24;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
}
#btn-fix:hover {
    background: #4f0f91;
    color: #fff;
    padding: 5px 15px;
    font-weight: bold;
}
.blink{
   animation: blinker 4.0s linear infinite;
    /*color: red;
    font-weight: 900;
    font-size: 12px;
    padding-left: 2px;*/

        }
        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }




