#ud_wrapper {
    max-width: 800px;
    width: 90%;
    margin: 0 auto 0 auto;
}
#ud_wrapper h2 {
    position: relative;
    font-size: 40px;
    text-align: center;
    width: 60%;
    margin: 150px auto 50px auto;
}
#ud_wrapper h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin: 0 0 0 -25px;
    width: 50px;
    height: 5px;
    background: #000;
}
#ud_wrapper article p {
    font-size: 22px;
    line-height: 35px;
    color: #666;
    text-align: justify;
}
#ud_wrapper article {
    margin: 30px 0 100px 0;
}

#ud_preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#ud_preloader .ud_pre_half {
    background: #FFF;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
}
#ud_preloader #ud_bg_left {
    left: 0;
}
#ud_preloader #ud_bg_right {
    right: 0;
}
#ud_preloader #ud_dots {
    z-index: 10001;
    width: auto;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#ud_preloader #ud_dots img {
  width: 250px;
  margin-left: 30%;
}



/* === PULSE ANIMATION === */

.preLoaderLogo {

   	animation: pulse 1.5s linear infinite;
}

@-webkit-keyframes "pulse" {
0% {
    -webkit-transform: scale(3.8);
    transform: scale(3.8);
}
50% {
   -webkit-transform: scale(0.1);
   transform: scale(0.1);
}
100% {
    -webkit-transform: scale(3.8);
   transform: scale(3.8);
}
}





/* === PROGRESSBAR ANIMATION === */


.progress2 {
  border-radius: 30px;
  background-color: #fff;
  width: 600px;

}

.progress-bar2 {
  height: 7px;
  border-radius: 30px;
  transition: 0.4s linear;
  transition-property: width, background-color;
  width: 600px;
}

.progress-moved .progress-bar2 {
  background-color: #D10A10;
  animation: progress 1s 1;
}

@keyframes progress {
  0% {
    width: 0%;
    background: #D10A10;
  }

  100% {
    width: 100%;
    background: #D10A10;
    box-shadow: 0 0 40px #D10A10;
  }
}

.icon {
  color: #D10A10;
  animation: icon 1s 1;
  background-color: transparent;
  padding-right: 00px;
  padding-bottom: 0px;
}

@keyframes icon {
  0% {
    opacity: 0.2;
    text-shadow: 0 0 0 #D10A10;
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 10px #D10A10;
  }
}

.loader {
  --p: 0;
  animation: p 1s steps(100) 1;
  counter-reset: p var(--p);
  font-size: 2.8em;
  position: absolute;
  bottom: -100px;
  left: 45%;
  color: #D10A10;
}

.loader:after {
  content: counter(p) "%";
}

@keyframes p {
  90%,
  100% {
    --p: 100;
  }
}

#circularo {
  width: 800px;
  height: 800px;
  background-color: black!important;
}




@media screen and (max-width: 750px) {

  #ud_preloader #ud_dots img {
    width: 250px;
    margin-left: 18%;
  }

  .progress2 {
    border-radius: 30px;
    background-color: #fff;
    width: 400px;

  }

  .progress-bar2 {
    height: 7px;
    border-radius: 30px;
    transition: 0.4s linear;
    transition-property: width, background-color;
    width: 400px;
  }

  .loader {
    --p: 0;
    animation: p 1s steps(100) 1;
    counter-reset: p var(--p);
    font-size: 2.8em;
    position: absolute;
    bottom: -100px;
    left: 41%;
    color: #D10A10;
  }

}


@media screen and (max-width: 500px) {

  #ud_preloader #ud_dots img {
    width: 250px;
    margin-left: 9%;
    margin-bottom: -20px;
  }

  .progress2 {
    border-radius: 30px;
    background-color: #fff;
    width: 300px;

  }

  .progress-bar2 {
    height: 7px;
    border-radius: 30px;
    transition: 0.4s linear;
    transition-property: width, background-color;
    width: 300px;
  }

  .loader {
    --p: 0;
    animation: p 1s steps(100) 1;
    counter-reset: p var(--p);
    font-size: 2.5em;
    position: absolute;
    bottom: -80px;
    left: 41%;
    color: #D10A10;
  }

}
