/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'Ruda';  
  src: url('../fonts/Ruda-VariableFont_wght.ttf') format('truetype');
}

body {
  font-family: "Ruda", sans-serif;
  color: #444444;
}

a {
  color: #5c9f24;
  text-decoration: none;
}

a:hover {
  color: #74c92d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ruda", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: #88E700;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.4s;
}

.whatsapp i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  padding: 10px;
}

.whatsapp:hover {
  background: #6fc02c;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#header.fixed-top {
  border-bottom: 1px solid #C0C3C6;
  background: rgba(1, 15, 26, 0.20);
  backdrop-filter: blur(12.5px);
  height: 80px;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 22px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #5c9f24;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  border-radius: 5px;
  border: 1px solid #88E700;
  background: #78C400;
  color: #010f1a;
  font-size: 16px;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  border: 1px solid #BACE9D;
  background: linear-gradient(0deg, rgba(136, 231, 0, 0.35) 0%, rgba(136, 231, 0, 0.10) 100%);
  box-shadow: 0px 0px 14.2px 0px rgba(136, 231, 0, 0.50);
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2a2a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5c9f24;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #5c9f24;
}

@media (max-width: 778px) {
  .navbar .getstarted, .navbar .getstarted:focus {
    padding: 8px 10px;
    font-size: 13px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5c9f24;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #5c9f24;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5c9f24;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  min-height: 550px;
  background-color: rgba(17, 17, 17, 0.8);
  overflow: hidden;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: 0.3;
}

#hero .carousel-item {
  width: 100%;
  height: 80vh;
  min-height: 550px;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  margin-bottom: 30px;
  width: 40%;
  padding-left: 10%;
  color: #78C400;
  font-size: 43px;
  font-weight: 900;
  text-align: left;
}

#hero h2 span {
  color: #FFF;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 0 30px 10%;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #5c9f24;
}

#hero .btn-get-started {
  letter-spacing: 1px;
  padding: 10px 32px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  margin-left: 10%;
  animation-delay: 0.8s;
  border-radius: 5px;
  border: 1px solid #88E700;
  background: #78C400;
  color: #010F1A;
  font-size: 16px;
  font-weight: 600;
}

#hero .btn-get-started:hover {
  background: #749c3B;
  border-color: #749c3B;
  color: #fff;
}

@media (max-width: 1024px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 540px) {
  #hero {
    background: #000B14;
  }

  #hero h2 {
    width: 80%;
  }

  #hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f1f1f1;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5c9f24;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 540px) {
  section {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  width: 70%;
  margin: 0 auto;
  padding: 30px 0;
}

.about .content h3 {
  color: #010F1A;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
}

.about .content p {
  color: #80878D;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.about .icon-box {
  padding: 50px 18px 30px;
}

.about .icon-box h4 {
  color: #749C3B;
  font-size: 16px;
  font-weight: 900;
  margin: 17px 0;
}

.about .icon-box img {
  height: 30px;
}

.about .icon-box p {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.icon-box.bl { border-left: 1px solid #cccccc; }
.icon-box.br { border-right: 1px solid #cccccc; }
.icon-box.bb { border-bottom: 1px solid #cccccc; }

.btn-orcamento {
  width: fit-content;
  margin: 30px;
  padding: 14px 24px;
  border-radius: 5px;
  background: #010F1A;
  border: 1px solid #010F1A;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-orcamento:hover,
.btn-orcamento:focus,
.btn-orcamento:active {
  color: #78C400;
  border: 1px solid #BACE9D;
  background: linear-gradient(0deg, rgba(136, 231, 0, 0.35) 0%, rgba(136, 231, 0, 0.10) 100%);
  box-shadow: 0px 0px 14.2px 0px rgba(136, 231, 0, 0.50);
}

.btn-orcamento2 {
  width: fit-content;
  margin: 30px;
  padding: 12px 21px;
  border-radius: 5px;
  background: #010F1A;
  border: 3px solid #010F1A;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-orcamento2:hover,
.btn-orcamento2:focus,
.btn-orcamento2:active {
  color: #010F1A;
  border: 3px solid #010F1A;
  background: #FFF;
}

.swiper-button-prev, .swiper-button-next {
  color: #010f1a;
}

.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .about .image {
    text-align: center;
  }

  .about .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}


@media (max-width: 540px) {
  .about { padding: 0 20px; }
  .about .content {
    width: 90%;
  }

  .icon-box.bl,
  .icon-box.br,
  .icon-box.bb { 
    border: unset; 
  }

  .icon-box.brm { border-right: 1px solid #cccccc; }
  .icon-box.btm { border-top: 1px solid #cccccc; }
  .icon-box.bbm { border-bottom: 1px solid #cccccc; }
}


@media (max-width: 330px) {
  .about { padding: 0 10px; }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .title h3 {
  color: #010F1A;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
}

.testimonials .title h3 span {
  color: #749C3B;
}

.testimonials .title p {
  color: #A1A1A1;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.testimonial-item h4 a {
  color: #010F1A;
}

.testimonial-item h4 a:hover {
  text-decoration: underline;
}

.swiper-slide {
  transform: scale(0.8);
}

.swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonial-item {
  border-radius: 10px;
  background-position: top center;
  background-size: cover;
  padding: 30px;
}

.testimonials .testimonial-item h3 {
  margin-top: 300px;
  color: #749C3B;
  font-size: 26px;
  font-weight: 900;
}

.testimonials .testimonial-item p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #000;
  opacity: 1;
  border: 1px solid #000000;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #88E700;
  border: 1px solid #88e700;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

@media (max-width: 540px) {
  .testimonials .title h3 {
    font-size: 24px;
  }

  .testimonials .title p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta {
  padding: 0;
}

.cta h3 {
  padding-top: 40px;
  margin-top: 50px;
  color: #010F1A;
  font-size: 34px;
  font-weight: 900;
}

.cta h3 span {
  color: #78C400;
}

.cta p {
  color: rgba(1, 15, 26, 0.67);
  font-size: 19px;
  font-weight: 400;
  margin: 15px 0;
}

.cta a {
  padding: 14px 24px;
  margin: 0;
  display: block;
  width: fit-content;
  border-radius: 5px;
  border: unset;
  background: #010F1A;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s;
}

.cta a:hover,
.cta a:focus,
.cta a:active {
  background: #414B53;
  color: #FFF;
}

@media (max-width: 540px) {
  .cta h3 {
    font-size: 25px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta a {
    padding: 10px 20px;
    font-size: 14px;
    margin: 0 auto;
    margin-top: 100px;

  }

  .mobile_cta_back {
    background: url(../img/Mobile.jpg) no-repeat;
    background-position: bottom center;
    background-size: contain;
    position: relative;
    padding-bottom: 100px;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# CASES
--------------------------------------------------------------*/
.cases_pad {
  padding: 0 10em;
}

.card_texto {
  border-radius: 10px;
  background: #010F1A;
  backdrop-filter: blur(9.300000190734863px);
  min-height: 320px;
}

.card_texto h3 {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(180deg, #FFF 0%, #BACE9D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 100px 15%;
}

.card_img a {
  display: block;
  width: 100%;
  height: 100%;
}

.card_img div {
  border-radius: 10px;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  min-height: 350px;
}

@media (max-width: 1250px) {
  .cases_pad {
    padding: 0 3em;
  }
}

@media (max-width: 1024px) {
  .cases_pad {
    padding: 0;
  }
}

@media (max-width: 540px) {
  .card_img div {
    min-height: 270px;
    margin: 10px;
  }
}

/*--------------------------------------------------------------
# DEPOIMENTOS
--------------------------------------------------------------*/
.depoimentos h3 {
  color: #010F1A;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
}

.depoimentos .subtitulo {
  color: #808080;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
}

.box_depoimentos {
  border-radius: 10px;
  padding: 40px 25px;
  background: #010F1A;
  backdrop-filter: blur(10.899999618530273px);
}

.box_depoimentos h4, .box_depoimentos h4 a {
  color: #78C400;
  font-size: 14px;
  font-weight: 900;
}

.box_depoimentos h4 a:hover {
  text-decoration: underline;
}

.box_depoimentos p {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
}

.depoimentos .mobile {
  display: none;
} 

.swiper-pagination-bullet-active {
    background: #749C3B;
}

@media (max-width: 540px) {
  .depoimentos .desktop {
    display: none;
  } 

  .depoimentos .mobile {
    display: block;
  } 

  .depoimentos-slider .swiper-slide-active {
    transform: scale(0.9);
  }
}

.tooltip-whats {
  --bs-tooltip-bg: #FFF;
  --bs-tooltip-color: color: #010F1A;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #010F1A;
  padding: 60px 0;
}

#footer img {
  max-width: 300px;
  width: 90%;
}

#footer h4 {
  color: rgba(186, 206, 157, 0.5);
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}

#footer p, .link_footer {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
}

#footer .copy {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

#footer .social-links a {
  color: #fff;
  transition: 0.3s;
  display: block;
  line-height: 1;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 700;
}

#footer .social-links a:hover,
#footer .social-links a:focus,
#footer .social-links a:active,
#footer .social-links a:hover i,
#footer .social-links a:focus i,
#footer .social-links a:active i {
  color: rgb(116, 156, 59);
}

#footer .social-links a i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
  margin-right: 4px;
  vertical-align: bottom;
}

@media (max-width: 540px) {
  #footer {
    padding: 60px 20px;
  }
}

.form_contato input, .form_contato select, .form_contato textarea {
  width: 100%;
  padding: 15px;
  border: unset;
  border-radius: 5px;
  background: rgba(217, 217, 217, 0.80);
  margin-bottom: 20px;
}

.form_contato textarea {
  height: 150px;
}

.form_contato button {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #749C3B;
  background: #749C3B;
  padding: 15px 25px;
}

.form_contato button:hover {
  color: #000;
  border: 1px solid #88E700;
  background: #78C400;
}



/* --- LOADER BTN ---- */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';  
  display: inline-block;   
  position: absolute;
  background: transparent;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;    
  box-sizing: border-box;   
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;    
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.m-black:before {
  content: '';  
  display: inline-block;   
  position: absolute;
  background: transparent;
  border: 1px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;    
  box-sizing: border-box;   
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;    
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.m-progress.btn_black:hover {
  background: #000 !important;
}


.btn-default.m-progress:before {
  border-left-color: #333333;
  border-right-color: #333333;
}

.btn-lg.m-progress:before {
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
}

.btn-sm.m-progress:before {
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
}

.btn-xs.m-progress:before {
  margin-top: -7px;
  margin-left: -7px;
  width: 14px;
  height: 14px;
}

.shine-me {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width:100%; 
    height: 100%;
    background-color:transparent;
    -webkit-animation-name: ShineAnimation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.12,.89,.98,.47);
}

@-webkit-keyframes ShineAnimation{
    from {
        background-repeat:no-repeat;
        background-image:-webkit-linear-gradient(
            top left,
            rgba(204, 224, 253, 0.0) 0%,
            rgba(204, 224, 253, 0.0) 45%,
            rgba(204, 224, 253, 0.5) 48%,
            rgba(204, 224, 253, 0.8) 50%,
            rgba(204, 224, 253, 0.5) 52%,
            rgba(204, 224, 253, 0.0) 57%,
            rgba(204, 224, 253, 0.0) 100%
        );
        background-position:-250px -250px;
        background-size: 600px 600px
    }
    to {
        background-repeat:no-repeat;
        background-position:400px 400px;
    }
}
