body {
  font-family: 'Varela Round', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: #868F9B;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #10161A;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

a {
  color: #6195FF;
  text-decoration: none;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
  opacity: 0.8;
  color: #6195FF;
}

.main-color {
  color: #6195FF;
}

.white-text {
  color: #FFF;
}

::-moz-selection {
  background-color: #6195FF;
  color: #FFF;
}

::selection {
  background-color: #6195FF;
  color: #FFF;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/* -- section  -- */
.section {
  position: relative;
  z-index: 1;
  background: #fff;
  overflow: hidden;
}

.ly-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.sm-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.arrowContentDown {
  position: relative;
}

.arrowContentDown i {
  font-size: 8vw;
  color: rgba(255, 255, 255, 0.1);
  -webkit-animation: 1s arrowContentDown ease-in-out infinite;
  animation: arrowContentDown 1s ease-in-out infinite;
  font-size: 8vw;
  color: rgba(255, 255, 255, 0.1);
  -webkit-animation: 1s arrowContentDown ease-in-out infinite;
  animation: arrowContentDown 1s ease-in-out infinite;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@keyframes arrowContentDown {
  0% {
    padding-top: 0px;
    color: rgba(255, 255, 255, 0.1);
  }

  50% {
    padding-top: 15px;
    color: rgba(168, 207, 69, 0.28);
  }

  100% {
    padding-top: 0px;
    color: rgba(255, 255, 255, 0.1);
  }
}

@-webkit-keyframes arrowContentDown {
  0% {
    padding-top: 0px;
    color: rgba(255, 255, 255, 0.1);
  }

  50% {
    padding-top: 15px;
    color: rgba(168, 207, 69, 0.28);
  }

  100% {
    padding-top: 0px;
    color: rgba(255, 255, 255, 0.1);
  }
}

/* --  background section  -- */
.bg-grey {
  background-color: #FAFAFA;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

.bg-dark {
  background-color: #1C1D21;
}

.videoBackgroundHomeContainer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.videoBackgroundHomeContainer:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.64);
  z-index: 2;
}

.videoBackgroundHomeContainer video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

/* --  background image section  -- */
.bg-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.bg-img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: .8;
  background: #1C1D21;
}

/* --  section header  -- */
.section-header {
  position: relative;
  margin-bottom: 60px;
}

.section-header .title {
  text-transform: capitalize;
}

.text-center .title:after {
  margin: 20px auto 0px;
}

/*------------------------------------*\
	Logo
\*------------------------------------*/
.navbar-brand {
  padding: 0;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
  max-height: 50px;
  display: block;
}

@media only screen and (max-width: 767px) {
  #nav.nav-transparent .navbar-brand .logo {
    padding: 5px;
  }
}

/*------------------------------------*\
	Navigation
\*------------------------------------*/
#nav {
  padding: 10px 0px;
  background: #FFF;
  -webkit-transition: 0.2s padding;
  transition: 0.2s padding;
  z-index: 999;
}

#nav.navbar {
  border: none;
  border-radius: 0;
  margin-bottom: 0px;
}

#nav.fixed-nav {
  position: fixed;
  left: 0;
  right: 0;
  padding: 0px 0px;
  background-color: rgba(0, 0, 0, 0.21) !important;
}

#nav.nav-transparent {
  background: transparent;
}

/* -- default nav -- */
@media only screen and (min-width: 768px) {
  .main-nav li {
    padding: 0px 15px;
  }

  .main-nav li a {
    font-size: 14px;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
  }

  .main-nav>li>a {
    color: #fff;
    padding: 15px 0px;
  }

  .main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
    background: transparent;
  }

  .main-nav>li>a:after {
    content: "";
    display: block;
    background-color: #84a336;
    height: 2px;
    width: 0%;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
  }

  .main-nav>li>a:hover:after, .main-nav>li.active>a:after {
    width: 100%;
  }

  /* dropdown */
  .has-dropdown {
    position: relative;
  }

  .has-dropdown>a:before {
    font-family: 'FontAwesome';
    content: "\f054";
    font-size: 6px;
    margin-left: 6px;
    float: right;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.2s transform;
    transition: 0.2s transform;
  }

  .dropdown {
    position: absolute;
    right: -50%;
    top: 0;
    background-color: #6195FF;
    width: 200px;
    -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
    box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
    -webkit-transform: translateY(15px) translateX(50%);
    -ms-transform: translateY(15px) translateX(50%);
    transform: translateY(15px) translateX(50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  .main-nav>.has-dropdown>.dropdown {
    top: 100%;
    right: 50%;
  }

  .main-nav>.has-dropdown>.dropdown .dropdown.dropdown-left {
    right: 150%;
  }

  .dropdown li a {
    display: block;
    color: #FFF;
    border-top: 1px solid rgba(250, 250, 250, 0.1);
    padding: 10px 0px;
  }

  .dropdown li:nth-child(1) a {
    border-top: none;
  }

  .has-dropdown:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px) translateX(50%);
    -ms-transform: translateY(0px) translateX(50%);
    transform: translateY(0px) translateX(50%);
  }

  .has-dropdown:hover>a:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .nav-collapse {
    display: none;
  }
}

/* -- mobile nav -- */
@media only screen and (max-width: 767px) {
  .main-nav {
    position: fixed;
    right: 0;
    height: calc(100vh - 80px);
    -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
    box-shadow: 0px 80px 0px 0px #1C1D21;
    max-width: 250px;
    width: 0%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    margin: 0;
    overflow-y: auto;
    background: #1C1D21;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  #nav.open .main-nav {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }

  .main-nav li {
    border-top: 1px solid rgba(250, 250, 250, 0.1);
  }

  .main-nav li a {
    display: block;
    color: #FFF;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }

  .main-nav>li.active {
    border-left: 6px solid #6195FF;
  }

  .main-nav li a:hover, .main-nav li a:focus {
    background-color: #6195FF;
    color: #FFF;
    opacity: 1;
  }

  .has-dropdown>a:after {
    content: "\f054";
    font-family: 'FontAwesome';
    float: right;
    -webkit-transition: 0.2s -webkit-transform;
    transition: 0.2s -webkit-transform;
    transition: 0.2s transform;
    transition: 0.2s transform, 0.2s -webkit-transform;
  }

  .dropdown {
    opacity: 0;
    visibility: hidden;
    height: 0;
    background: rgba(250, 250, 250, 0.1);
  }

  .dropdown li a {
    padding: 6px 10px;
  }

  .has-dropdown.open-drop>a:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .has-dropdown.open-drop>.dropdown {
    opacity: 1;
    visibility: visible;
    height: auto;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
}

/* -- nav btn collapse -- */
.nav-collapse {
  position: relative;
  float: right;
  width: 40px;
  height: 40px;
  margin-top: 5px;
  margin-right: 5px;
  cursor: pointer;
  z-index: 99999;
}

.nav-collapse span {
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
  content: "";
  display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
  height: 4px;
  background: #a9abae;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.nav-collapse span:before {
  -webkit-transform: translate(0%, 10px);
  -ms-transform: translate(0%, 10px);
  transform: translate(0%, 10px);
}

.nav-collapse span:after {
  -webkit-transform: translate(0%, -14px);
  -ms-transform: translate(0%, -14px);
  transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
  background: transparent;
}

#nav.open .nav-collapse span:before {
  -webkit-transform: translateY(0px) rotate(-135deg);
  -ms-transform: translateY(0px) rotate(-135deg);
  transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
  -webkit-transform: translateY(-4px) rotate(135deg);
  -ms-transform: translateY(-4px) rotate(135deg);
  transform: translateY(-4px) rotate(135deg);
}

/*------------------------------------*\
	Header
\*------------------------------------*/
header {
  position: relative;
}

#home {
  height: 100vh;
}

#home .home-wrapper {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.home-content h1 {
  text-transform: uppercase;
}

.home-content button {
  margin-top: 20px;
}

.header-wrapper h2 {
  display: inline-block;
  margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
  float: right;
  background: transparent;
  margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
  color: #868F9B;
}

.breadcrumb>li+li:before {
  color: #868F9B;
}

#homeContent-slider p {
  font-size: 20px;
  text-transform: capitalize;
}

#about {
  background-image: linear-gradient(to bottom right, #27a69f, #137664);
  overflow: hidden;
}

#about .title,
#about h4 {
  color: #065c4f;
}

#about p {
  color: #fff;
}

#about p.text {
  font-size: 25px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  #about p.text {
    text-align: left;
  }
}

#about .logoSymbol {
  position: absolute;
  width: 50%;
  left: 0;
  bottom: -160px;
  z-index: -1;
  fill: rgba(0, 0, 0, 0.07058823529411765);
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
}

@media only screen and (max-width: 991px) {
  #about .logoSymbol {
    width: 130%;
    left: -30%;
    top: 30px !important;
  }
}

#about .images {
  position: relative;
}

#about .images .item {
  visibility: hidden;
}

#about .images .item_1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 300px;
  height: 300px;
  border: 10px solid #0b7668;
  overflow: hidden;
  border-radius: 50%;
}

#about .images .item_2 {
  position: absolute;
  top: 178px;
  right: 171px;
  z-index: 1;
  width: 300px;
  height: 300px;
  border: 5px solid #fff;
  overflow: hidden;
  border-radius: 10%;
  transform: skewX(-13deg);
  -ms-transform: skewX(-13deg);
  -webkit-transform: skewX(-13deg);
}

#about .images .item_3 {
  position: absolute;
  top: 271px;
  right: 0px;
  z-index: 2;
  width: 300px;
  height: 300px;
  border: 8px solid #2f9787;
  overflow: hidden;
  border-radius: 10%;
  transform: skewX(-13deg);
  -ms-transform: skewX(-13deg);
  -webkit-transform: skewX(-13deg);
}

@media only screen and (max-width: 991px) {
  #about .images {
    display: none;
  }
}

#about .images img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
}

/*------------------------------------*\
	Portfolio
\*------------------------------------*/
#portfolio .itemConteinerRow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 -50px;
}

#portfolio .itemConteiner {
  margin: 0 -50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 0;
  flex: 1;
  transition: 0.8s all;
  -webkit-transition: 0.8s all;
  -moz-transition: 0.8s all;
}

#portfolio .itemConteiner:hover {
  margin: 0;
}

#portfolio .item {
  position: relative;
  overflow: hidden;
  transform: skewX(5deg);
  -ms-transform: skewX(5deg);
  -webkit-transform: skewX(10deg);
  background: #000;
}

#portfolio .item:hover a {
  opacity: 0;
  transition: 0.8s all;
  -webkit-transition: 0.8s all;
  -moz-transition: 0.8s all;
}

#portfolio .item a {
  background: rgba(0, 0, 0, 0.74);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  display: block;
  z-index: 2;
}

#portfolio .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

/*------------------------------------*\
	Services
\*------------------------------------*/
.service {
  background: linear-gradient(to bottom right, #C04D86, #7b284e);
  padding: 20px;
  border-radius: 15px;
  margin: 10% 10% 10% -10%;
  position: relative;
}

.service h3 {
  font-size: 70px;
  font-family: sans-serif;
  color: #fff;
}

.service img {
  max-width: 70px;
  height: 70px;
  float: left;
  margin: 0 15px 15px 0;
}

@media only screen and (max-width: 425px) {
  .service img {
    display: none !important;
  }
}

.service p {
  font-size: 20px;
  color: #fff;
  font-style: italic;
  max-height: 300px;
  overflow: auto;
}

.serviceVideoContainer {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.serviceVideoContainer .play {
  background: rgb(255 255 255 / 50%) url(/img/videoPlay.png) no-repeat;
  background-size: cover;
  position: absolute;
  border: 0;
  margin: auto auto;
  height: 100px;
  width: 100px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}

.serviceVideo .item {
  position: relative;
  width: 100%;
}

.serviceVideo .item video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#dialogVideoIntitucionalHome video {
  max-width: 100%;
  max-height: 400px;
}

@media only screen and (max-width: 991px) {
  .serviceVideo .item video {
    width: 120%;
  }
}

@media only screen and (min-width: 991px) {
  .serviceVideo .item video {
    position: absolute;
    width: auto;
    height: 100%;
  }
}

.serviceContainer {
  background: #fafafa;
}

@media only screen and (max-width: 991px) {
  .serviceContainer {
    padding-bottom: 15px;
  }

  .service {
    margin: -50px 0 0 0;
  }

  .service h3 {
    font-size: 30px;
  }
}

/*------------------------------------*\
	Contact
\*------------------------------------*/
#contact {
  background: linear-gradient(to bottom right, rgb(255, 255, 255), rgb(186, 186, 186));
}

.contact {
  margin-bottom: 15px;
  float: right;
}

.contact a {
  float: right;
}

.contact i {
  font-size: 36px;
  color: #b0b0b0;
  float: right;
  min-width: 36px;
  text-align: center;
}

.contact p {
  float: right;
  margin: 0;
  padding: 9px;
  color: #121212;
  cursor: pointer;
  text-align: right;
}

#contact .submit {
  margin: 0 0 20px 0;
  height: 50px;
}

#contact md-card {
  margin: 0 0 20px 0;
  padding: 10px;
}

#contact md-card.success {
  background: #4CAF50;
  color: #fff;
}

#contact md-card.error {
  background: #F44336;
  color: #fff;
}

.mailCrypted:after {
  content: attr(data-a) "@"attr(data-b) "."attr(data-c);
}

@media only screen and (max-width: 991px) {
  .footer-follow {
    margin: 0 !important;
  }

  .containerContactInfo {
    border-top: 2px solid #cfcfcf;
    margin-top: 30px;
    padding-top: 20px;
  }
}

/*------------------------------------*\
	Footer
\*------------------------------------*/
#footer {
  position: relative;
}

.footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo>a>img {
  max-height: 80px;
}

.footer-follow {
  text-align: right;
  margin-top: 40px;
}

.footer-follow li {
  float: right;
  margin: 0 0 0 5px;
}

.footer-follow li a {
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #6195FF;
  color: #FFF;
}

.footer-copyright p {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
}

/*------------------------------------*\
	Responsive
\*------------------------------------*/
@media only screen and (max-width: 767px) {
  .section-header h2.title {
    font-size: 31.5px;
  }

  .main-btn, .default-btn, .outline-btn, .white-btn {
    padding: 8px 22px;
    font-size: 14px;
  }

  .home-content h1 {
    font-size: 36px;
  }

  .header-wrapper h2 {
    margin-bottom: 20px;
    text-align: center;
    display: block;
  }

  .header-wrapper .breadcrumb {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #portfolio [class*='col-xs'] {
    width: 100%;
  }

  #numbers [class*='col-xs'] {
    width: 100%;
  }

  .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
    width: 100%;
  }

  .contact-form .input:nth-child(2) {
    margin-left: 0px;
  }

  .reply-form form .input, .reply-form form .input {
    width: 100%;
  }

  .reply-form form .input:nth-child(2) {
    margin-left: 0px;
  }

  .blog-author .media .media-left {
    display: block;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .blog-author .media {
    text-align: center;
  }

  .blog-author .media .media-heading .author-social {
    margin-top: 10px;
    float: none;
  }

  .blog-author .media .media-left img {
    margin: auto;
  }

  .blog-comments .media .media {
    margin: 0px -15px;
  }
}

/*------------------------------------*\
	Owl theme
\*------------------------------------*/
/* -- dots -- */
.owl-theme .owl-dots .owl-dot span {
  border: none;
  background: #EEE;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #a8cf45;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #a8cf45;
  width: 20px;
}

/* -- nav -- */
.owl-theme .owl-nav {
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.owl-theme:hover .owl-nav {
  opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #6195FF;
  color: #FFF;
  padding: 0px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  line-height: 50px;
  margin: 0;
}

.owl-theme .owl-prev {
  left: 0px;
}

.owl-theme .owl-next {
  right: 0px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  opacity: 0.8;
  background: #6195FF;
}

/*------------------------------------*\
	Back to top
\*------------------------------------*/
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.31);
  border-radius: 3px;
  color: #FFF;
  z-index: 9999;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  cursor: pointer;
}

#back-to-top:after {
  content: "\f106";
  font-family: 'FontAwesome';
}

#back-to-top:hover {
  opacity: 0.8;
}

/*------------------------------------*\
	Preloader
\*------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  z-index: 99999;
}

.preloader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader .g0_1 {
  fill: #FFFFFF;
}

.preloader .g1_1 {
  fill: #A7A9AC;
}

.preloader .g2_1 {
  fill: none;
  stroke: #CCCCCC;
  stroke-width: 0.433125;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 22;
}

.preloader .g3_1 {
  fill: #231F20;
}

.preloader .g4_1 {
  fill: #00AEEF;
}

.preloader .g5_1 {
  fill: #EC008C;
}

.preloader .g6_1 {
  fill: #FFF200;
}

.preloader .g7_1 {
  fill: #A6CE39;
}

.preloader .g8_1 {
  fill: #A6CE39;
  stroke: #A6CE39;
  stroke-width: 0.86609715;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 22;
}

.preloader .trace {
  -webkit-animation: 1s preloadTrace ease-in-out infinite;
  animation: preloadTrace 1s ease-in-out infinite;
}

.preloader .trace.path1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.preloader .trace.path2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.preloader .trace.path3 {
  -webkit-animation-delay: 0.10s;
  animation-delay: 0.10s;
}

.preloader .trace.path4 {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.preloader .trace.path5 {
  -webkit-animation-delay: 0.20s;
  animation-delay: 0.20s;
}

.preloader .trace.path6 {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.preloader .trace.path7 {
  -webkit-animation-delay: 0.30s;
  animation-delay: 0.30s;
}

.preloader .trace.path8 {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.preloader .trace.path9 {
  -webkit-animation-delay: 0.40s;
  animation-delay: 0.40s;
}

.preloader .trace.path10 {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.preloader .trace.path11 {
  -webkit-animation-delay: 0.50s;
  animation-delay: 0.50s;
}

.preloader .trace.path12 {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.preloader .trace.path13 {
  -webkit-animation-delay: 0.60s;
  animation-delay: 0.60s;
}

.preloader .trace.path14 {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.preloader .trace.path15 {
  -webkit-animation-delay: 0.70s;
  animation-delay: 0.70s;
}

.preloader .trace.path16 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.preloader .trace.path17 {
  -webkit-animation-delay: 0.80s;
  animation-delay: 0.80s;
}

.preloader .trace.path18 {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}

.preloader .trace.path19 {
  -webkit-animation-delay: 0.90s;
  animation-delay: 0.90s;
}

.preloader .trace.path20 {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}

.preloader .trace.path21 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.preloader .trace.path22 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.preloader .trace.path23 {
  -webkit-animation-delay: 1.10s;
  animation-delay: 1.10s;
}

.preloader .trace.path24 {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.preloader .trace.path25 {
  -webkit-animation-delay: 1.20s;
  animation-delay: 1.20s;
}

.preloader .trace.path26 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.preloader .trace.path27 {
  -webkit-animation-delay: 1.30s;
  animation-delay: 1.30s;
}

.preloader .trace.path28 {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

.preloader .trace.path29 {
  -webkit-animation-delay: 1.40s;
  animation-delay: 1.40s;
}

.preloader .trace.path30 {
  -webkit-animation-delay: 1.45s;
  animation-delay: 1.45s;
}

.preloader .trace.path31 {
  -webkit-animation-delay: 1.50s;
  animation-delay: 1.50s;
}

.preloader .trace.path32 {
  -webkit-animation-delay: 1.55s;
  animation-delay: 1.55s;
}

.preloader .trace.path33 {
  -webkit-animation-delay: 1.60s;
  animation-delay: 1.60s;
}

.preloader .trace.path34 {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

.preloader .trace.path35 {
  -webkit-animation-delay: 1.70s;
  animation-delay: 1.70s;
}

.preloader .trace.path36 {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.preloader .trace.path37 {
  -webkit-animation-delay: 1.80s;
  animation-delay: 1.80s;
}

.preloader .trace.path38 {
  -webkit-animation-delay: 1.85s;
  animation-delay: 1.85s;
}

.preloader .trace.path39 {
  -webkit-animation-delay: 1.90s;
  animation-delay: 1.90s;
}

.preloader .trace.path40 {
  -webkit-animation-delay: 1.95s;
  animation-delay: 1.95s;
}

.preloader .trace.path41 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.preloader .trace.path42 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.preloader .trace.path43 {
  -webkit-animation-delay: 2.10s;
  animation-delay: 2.10s;
}

.preloader .trace.path45 {
  -webkit-animation-delay: 2.15s;
  animation-delay: 2.15s;
}

.preloader .trace.path46 {
  -webkit-animation-delay: 2.20s;
  animation-delay: 2.20s;
}

.preloader .trace.path47 {
  -webkit-animation-delay: 2.25s;
  animation-delay: 2.25s;
}

.preloader .trace.path48 {
  -webkit-animation-delay: 2.30s;
  animation-delay: 2.30s;
}

@keyframes preloadTrace {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-webkit-keyframes preloadTrace {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }

  50% {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
