/*  
    =====================
    Base styles
    --------------
    Contents
    ========*/
/*  Genaral styles
    |__ Body text
    |__ Links
    |__ Headings
    |__ Emphasis & misc
    |__ Home Section Texts
    |__ Home Section Texts
    Typography
    Atmosphere
    Hacks 
*/
/*
  ========================================
  Genaral styles
  ========================================
*/
/* 
 Body text
 -------------------------
 */
body {
  color: #0c0c17;
  overflow-x: hidden;
  font: 300 14px/21px 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
body ::-moz-selection {
  background: #35e9f1;
  color: #ffffff;
}
body ::selection {
  background: #35e9f1;
  color: #ffffff;
}
p {
  margin: 0 0 21px;
}
/* 
 Links
 -------------------------
 */
a {
  color: #35e9f1;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
            transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  }
}
a:hover,
a:focus {
  color: #0ec3cb;
  text-decoration: none;
  outline: 0;
}
p a {
  border-bottom: 1px solid #35e9f1;
}
p a:hover {
  border-bottom: 1px solid #0ec3cb;
}
ul,
ol {
  margin: 0 0 1.5em 0;
}
/* 
 Headings
------------------------- 
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-top: 10.5px;
  font-weight: 700;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small {
  font-size: 75%;
  color: #757a86;
}
h1,
h2,
h3 {
  margin-bottom: 7px;
}
h4,
h5,
h6 {
  margin-bottom: 10.5px;
}
/* Body Content */
h1 {
  font-size: 1.571em;
  /* 1.571x body copy size = 22px */
}
h2 {
  font-size: 1.428em;
  /* 1.428x body copy size = 20px */
}
h3 {
  font-size: 1.214em;
  /* 1.214x body copy size = 17px */
}
h4 {
  font-size: 1.142em;
  /* 1.142x body copy size = 16px */
}
h5 {
  font-size: 1em;
  /* 1x body copy size = 14px */
}
h6 {
  font-size: 1em;
  /* 1.125x body copy size = 18px */
}
blockquote {
  font-size: 1.2em;
  /* 20px / 16px */
  margin: 3em 0;
  line-height: 1.25;
  /* 25px / 20px */
  border: 0;
}
blockquote p {
  margin-bottom: 30px;
}
blockquote footer {
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 400;
}
cite {
  font-weight: 300;
}
input:focus,
textarea:focus {
  outline: none;
}
hr {
  margin-top: 0;
  margin-bottom: 0;
  /*border-top: 1px solid #eeeef7;*/
}
/*  Bootstrap Useful Text Classes
.text-left           { text-align: left; }
.text-right          { text-align: right; }
.text-center         { text-align: center; }
.text-justify        { text-align: justify; }
.text-nowrap         { white-space: nowrap; }


.text-lowercase      { text-transform: lowercase; }
.text-uppercase      { text-transform: uppercase; }
.text-capitalize     { text-transform: capitalize; }
*/
/*  
    ======================
    Modules styles
    --------------
    Contents
    ========
        Animations
        |__ Ripple effect
        |__ Animated Navicon
        |__ Loaders
        Generic Layout Classes --( set 01 )--
        |__ Home Section Texts
        |__ Sections Titles
        |__ Emphasis & misc
        |__ Columns Of Same Height
        |__ Sections Layout
        Buttons
        |__ Animated buttons
            |__ Split Button
            |__ Slide Button
            |__ Play Button

        Navbar
        |__ Sticky Navbar
        |__ Transparent Sticky Navbar

        Carousel
        |__ Owl Carousel
        |__ Genaral Controls Modifications
            |__ Carousel arrows
            |__ Carosel indicators
        |__ Making Bootstrap carousel fade instead of sliding
        |__ Falling Carousel Indicators Style
        |__ Filling Carousel Indicators Style

        Animate Slider Styles
        Skill Bars
*/
/*
  ========================================
  Animations
  ========================================
*/
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInOutDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
}
@keyframes fadeInOutDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
            transform: translate3d(0, -20%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
            transform: translate3d(0, 20%, 0);
  }
}
/*-------------------------------------*/
@-webkit-keyframes zoom-outy {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1);
            transform: scale3d(1.6, 1.6, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-outy {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.6, 1.6, 1);
            transform: scale3d(1.6, 1.6, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 1;
  }
}
.zoom-outy {
  -webkit-animation-name: zoom-outy;
          animation-name: zoom-outy;
}
/*-------------------------------------*/
@-webkit-keyframes zoomOutIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1.3, 1.3, 1);
            transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOutIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1.3, 1.3, 1);
            transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.zoomOutIn {
  -webkit-animation-name: zoomOutIn;
          animation-name: zoomOutIn;
}
/*-------------------------------------*/
@-webkit-keyframes zoomInOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
  }
}
@keyframes zoomInOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
  }
}
.zoomInOut {
  -webkit-animation-name: zoomInOut;
          animation-name: zoomInOut;
}
/*-------------------------------------*/
@-webkit-keyframes zoomOutSm {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(0.9, 0.9, 1);
            transform: scale3d(0.9, 0.9, 1);
  }
}
@keyframes zoomOutSm {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale3d(0.9, 0.9, 1);
            transform: scale3d(0.9, 0.9, 1);
  }
}
.zoomOutSm {
  -webkit-animation-name: zoomOutSm;
          animation-name: zoomOutSm;
}
/*-------------------------------------*/
@-webkit-keyframes foldUp {
  0% {
    -webkit-transform: perspective(500px) translate3d(0, 25px, 0) rotate3d(1, 0, 0, 80deg) translate3d(0, 0, -50px);
            transform: perspective(500px) translate3d(0, 25px, 0) rotate3d(1, 0, 0, 80deg) translate3d(0, 0, -50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
            transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes foldUp {
  0% {
    -webkit-transform: perspective(500px) translate3d(0, 25px, 0) rotate3d(1, 0, 0, 80deg) translate3d(0, 0, -50px);
            transform: perspective(500px) translate3d(0, 25px, 0) rotate3d(1, 0, 0, 80deg) translate3d(0, 0, -50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
            transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
    opacity: 1;
  }
}
.foldUp {
  -webkit-animation-name: foldUp;
          animation-name: foldUp;
  -webkit-transform-origin: 50% 20%;
      -ms-transform-origin: 50% 20%;
          transform-origin: 50% 20%;
}
/*-------------------------------------*/
@-webkit-keyframes foldOut {
  0% {
    -webkit-transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
            transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(500px) translate3d(0, -40px, 0) rotate3d(1, 0, 0, 90deg) translate3d(0, -100px, 25px);
            transform: perspective(500px) translate3d(0, -40px, 0) rotate3d(1, 0, 0, 90deg) translate3d(0, -100px, 25px);
    opacity: 0;
  }
}
@keyframes foldOut {
  0% {
    -webkit-transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
            transform: perspective(500px) rotate3d(1, 0, 0, 0deg) translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(500px) translate3d(0, -40px, 0) rotate3d(1, 0, 0, 90deg) translate3d(0, -100px, 25px);
            transform: perspective(500px) translate3d(0, -40px, 0) rotate3d(1, 0, 0, 90deg) translate3d(0, -100px, 25px);
    opacity: 0;
  }
}
.foldOut {
  -webkit-animation-name: foldOut;
          animation-name: foldOut;
  -webkit-transform-origin: 50% 20%;
      -ms-transform-origin: 50% 20%;
          transform-origin: 50% 20%;
}
/*-------------------------------------*/
@-webkit-keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(0, 200px, 400px);
            transform: perspective(400px) translate3d(0, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(0, 200px, 400px);
            transform: perspective(400px) translate3d(0, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUpScale {
  -webkit-animation-name: fadeInUpScale;
          animation-name: fadeInUpScale;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
}
/*-------------------------------------*/
@-webkit-keyframes fadeInUpLeftScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(-300px, 200px, 400px);
            transform: perspective(400px) translate3d(-300px, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUpLeftScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(-300px, 200px, 400px);
            transform: perspective(400px) translate3d(-300px, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUpLeftScale {
  -webkit-animation-name: fadeInUpLeftScale;
          animation-name: fadeInUpLeftScale;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
}
/*-------------------------------------*/
@-webkit-keyframes fadeInUpRightScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(300px, 200px, 400px);
            transform: perspective(400px) translate3d(300px, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUpRightScale {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) translate3d(300px, 200px, 400px);
            transform: perspective(400px) translate3d(300px, 200px, 400px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUpRightScale {
  -webkit-animation-name: fadeInUpRightScale;
          animation-name: fadeInUpRightScale;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
}
/*--------------------------------------*/
@-webkit-keyframes cloudLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes cloudLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
/*-------------------------------------*/
@-webkit-keyframes shine {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shine {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
.shine {
  background: #222222 -webkit-gradient(linear, left top, right top, from(#222222), to(#222222), color-stop(0.5, #ffffff)) 0 0 no-repeat;
  -webkit-background-size: 125px;
  color: rgba(255, 255, 255, 0.1);
  -webkit-background-clip: text;
  -webkit-animation-name: shine;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
}
/*-------------------------------------*/
.animsition .init-animation-1,
.animsition .init-animation-2,
.animsition .init-animation-3,
.animsition .init-animation-4,
.animsition .init-animation-5 {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
/* 
 Ripple Effect
 -------------------------
 */
@-webkit-keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
.ripple-group-parent,
.ripple-alone {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* Fixing a Webkit browsers bug*/
}
.ink {
  display: block;
  position: absolute;
  background: rgba(53, 233, 241, 0.5);
  border-radius: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  z-index: 10;
}
/*animation effect*/
.ink.animate {
  -webkit-animation: ripple 0.5s ease-out;
          animation: ripple 0.5s ease-out;
}
/* 
 .queNecesito
 -------------------------
 */
@media screen and (max-width: 600px) 
{ 
    .queNecesito .col-xs-12{
        padding: 0px;    
    }
}
/* 
 Animated Navicon
 -------------------------
 */
#animated-navicon .icon-bar {
  position: relative;
  top: 0;
  -webkit-transition: top 0.14s linear 0.22s, -webkit-transform 0.22s ease-out, opacity 0.22s ease-out 0.22s;
          transition: top 0.14s linear 0.22s, transform 0.22s ease-out, opacity 0.22s ease-out 0.22s;
}
#animated-navicon.opened .icon-bar:nth-child(3) {
  opacity: 0;
  -webkit-transition: opacity 0.14s ease-in;
          transition: opacity 0.14s ease-in;
}
#animated-navicon.opened .icon-bar:nth-child(2) {
  top: 6px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: top 0.14s ease-in, -webkit-transform 0.22s ease-in-out 0.14s;
          transition: top 0.14s ease-in, transform 0.22s ease-in-out 0.14s;
}
#animated-navicon.opened .icon-bar:nth-child(4) {
  top: -6px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: top 0.14s ease-in, -webkit-transform 0.22s ease-in-out 0.14s;
          transition: top 0.14s ease-in, transform 0.22s ease-in-out 0.14s;
}
/* 
 Loaders
 -------------------------
 */
@-webkit-keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes load1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* loader1 */
.loader1 {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 25px auto;
  box-shadow: inset 0 0 0 1px #171724;
  border-radius: 50%;
  font-size: 11px;
  text-indent: -99em;
  -webkit-animation: load2 3s infinite linear;
          animation: load2 3s infinite linear;
}
.loader1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 50px;
  border-style: solid;
  border-radius: 50px 0 0 50px;
  border-width: 1px 0 1px 1px;
  -webkit-animation: load1 1.2s infinite ease-in-out 0.4s;
          animation: load1 1.2s infinite ease-in-out 0.4s;
  -webkit-transform-origin: 25px 25px;
      -ms-transform-origin: 25px 25px;
          transform-origin: 25px 25px;
}
.loader1:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 50px;
  border-style: solid;
  border-radius: 0 50px 50px 0;
  border-width: 1px 1px 1px 0;
  -webkit-animation: load1 1.2s infinite ease-in-out;
          animation: load1 1.2s infinite ease-in-out;
  -webkit-transform-origin: 0 25px;
      -ms-transform-origin: 0 25px;
          transform-origin: 0 25px;
}
/* loader2 */
.loader2 {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 25px auto;
  box-shadow: inset 0 0 0 1px #171724;
  border-radius: 50%;
  font-size: 11px;
  text-indent: -99em;
  -webkit-animation: load2 3s infinite linear;
          animation: load2 3s infinite linear;
}
.loader2:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 28px;
  height: 56px;
  border-radius: 56px 0 0 56px;
  -webkit-animation: load1 1.2s infinite ease-in-out 0.4s;
          animation: load1 1.2s infinite ease-in-out 0.4s;
  -webkit-transform-origin: 28px 28px;
      -ms-transform-origin: 28px 28px;
          transform-origin: 28px 28px;
}
.loader2:after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 28px;
  height: 56px;
  border-radius: 0 56px 56px 0;
  -webkit-animation: load1 1.2s infinite ease-in-out;
          animation: load1 1.2s infinite ease-in-out;
  -webkit-transform-origin: 0 28px;
      -ms-transform-origin: 0 28px;
          transform-origin: 0 28px;
}
/* loader3 */
.loader3 {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  margin: 25px auto;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  font-size: 10px;
  text-indent: -99em;
  -webkit-animation: load2 1.1s infinite linear;
          animation: load2 1.1s infinite linear;
}
/*
  ========================================
  Generic Layout Classes --( set 01 )--
  ========================================
*/
.font-second {
  font-family: 'Lato', sans-serif;
  /*text-transform: capitalize;*/
}
/* 
 Home Section Texts
 -------------------------
 */
.hs-text-1 {
  position: relative;
  margin-top: 0;
  font-size: 30px;
  letter-spacing: 33px;
  margin-right: -33px;
  font-weight: 400;
  color: #fff;
  opacity: .9;
}
.hs-text-2 {
  position: relative;
  margin-top: 0;
  font-size: 36px;
  letter-spacing: .1em;
  margin-right: -0.1em;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
}
.hs-text-3 {
  position: relative;
  margin-top: 0;
  font-size: 14px;
  letter-spacing: 3px;
  margin-right: -3px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
}
.hs-text-4 {
  position: relative;
  margin-top: 0;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: .2em;
  margin-right: -0.2em;
  font-weight: 900;
  text-transform: uppercase;
}
.hs-text-5 {
  position: relative;
  margin-top: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 300;
  text-transform: uppercase;
}
.hs-text-6 {
  position: relative;
  margin-top: 0;
  font-size: 14px;
  letter-spacing: .35em;
  margin-right: -0.35em;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}
.hs-text-7 {
  position: relative;
  margin-top: 0;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: .6em;
  margin-right: -0.6em;
  font-weight: 400;
  text-transform: capitalize;
}
.hs-text-8 {
  position: relative;
  margin-top: 0;
  display: inline-block;
  padding: 15px 24px;
  background: #ffffff;
  font-size: 12px;
  letter-spacing: 2px;
  margin-right: -2px;
  font-weight: 400;
  color: #171724;
}
.hs-text-8 > span {
  margin: 0 10px;
}
.hs-text-8.highlight {
  background: #e41919;
  opacity: .65;
}
.hs-text-8.transparent {
  background: none;
  color: #ffffff;
  padding: 0;
}
.hs-text-9 {
  position: relative;
  margin-top: 0;
  font-size: 30px;
  letter-spacing: .5em;
  margin-right: -0.5em;
  line-height: 1.8;
  font-weight: 100;
  opacity: .9;
}
.hs-text-10 {
  position: relative;
  margin-top: 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .1em;
  margin-right: -0.1em;
  font-weight: 100;
}
.hs-text-10 span:not(.cd-words-wrapper) {
  font-weight: 900;
}
.hs-text-11 {
  position: relative;
  margin-top: 0;
  font-size: 35px;
  line-height: 1;
  letter-spacing: .02em;
  margin-right: -0.1em;
  font-weight: 700;
}
.hs-text-11 span em {
  text-transform: lowercase;
}
.hs-text-11 span i:first-child em {
  text-transform: uppercase;
}
.hs-text-11 span:not(.cd-words-wrapper) {
  font-weight: 100;
}
.hs-text-12 {
  position: relative;
  margin-top: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 100;
  text-transform: capitalize;
}
.hs-text-12 span {
  font-weight: 700;
}
.hs-text-13 {
  position: relative;
  margin-top: 0;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: .2em;
  margin-right: -0.2em;
  font-weight: 400;
}
.hs-text-14 {
  position: relative;
  margin-top: 0;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 1.1em;
  margin-right: -1.1em;
  font-weight: 400;
  text-transform: uppercase;
}
.hs-text-detail {
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 10px;
  margin-right: -10px;
  font-size: 11px;
  padding-left: 10px;
  margin-bottom: 0;
}
/* 
 Sections Titles
 -------------------------
 */
.section-title {
  position: relative;
  padding-bottom: 40px;
  text-align: center;
}
.section-title-heading {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 300;
  font-size: 32px;
  margin-top: 0;
}
.section-title-heading span {
  font-weight: 700;
}
.section-title-more {
  display: inline-block;
  position: relative;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .65em;
  margin-right: -0.65em;
  font-size: 12px;
}
.section-title-more p {
  position: relative;
  margin: 0;
  padding: 0 10px;
  z-index: 2;
}
.section-title-small {
  text-align: left;
}
.section-title-small .section-title-heading {
  font-size: 28px;
  margin-top: 0;
  padding: 10px 0 10px 20px;
  border-left: 2px solid #ffffff;
}
.section-title-small .section-title-heading:after {
  content: none;
}
/* 
 Emphasis & misc
 -------------------------
 */
small,
.small {
  font-size: 85%;
}
.section-text {
  margin-bottom: 10.5px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
}
.presentation {
  font-size: 27px;
  font-weight: 100;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-thin {
  font-weight: 100;
}
.text-normal {
  font-weight: 300;
}
.text-strong {
  font-weight: 700 !important;
}
.uppercase {
  text-transform: uppercase;
}
.letter-space {
  letter-spacing: 1em;
  margin-right: -1em;
}
.italic {
  font-style: italic;
}
.highlight {
  color: #35e9f1;
}
.text-white {
  color: #fff !important;
}
.black {
  color: #000 !important;
}
.font-size-16 {
  font-size: 16px;
}
.font-size-24 {
  font-size: 24px;
}
.font-size-36 {
  font-size: 36px;
}
.font-size-48 {
  font-size: 48px;
}
.font-size-64 {
  font-size: 64px;
}
.clearlist,
.clearlist li {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}
.no-transp {
  opacity: 1 !important;
}
.perspect {
  -webkit-perspective: 700px;
          perspective: 700px;
}
.fullwidth-galley-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
}
/* Columns Of Same Height */
.row-same-height {
  display: table;
}
.col-xs-height {
  display: table-cell;
  float: none !important;
}
@media (min-width: 768px) {
  .col-sm-height {
    display: table-cell;
    float: none !important;
  }
}
@media (min-width: 992px) {
  .col-md-height {
    display: table-cell;
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .col-lg-height {
    display: table-cell;
    float: none !important;
  }
}
.col-middle {
  vertical-align: middle;
}



/* 
 testDelInversor
 -------------------------
 */


#testDelInversor{
    position: relative;    
    padding: 30px;
    margin: auto;
    background-color: #FFF;
    max-width: 1000px;
    text-align: left; 
}
    #testDelInversor .cerrar{
        position: absolute;
        top: -30px;
        right: 10px;
        
        padding: 3px;
        color: #FFF;
        font-size: 16px;    
    }
    #testDelInversor .cerrar:hover,
    #testDelInversor .cerrar:active,
    #testDelInversor .cerrar:focus{
        color: #c1c1c1;
    }
    #testDelInversor ul{
        display: block;
        list-style: none;
        padding: 0px;
    }
    
    #testDelInversor h2{
        font-family: 'Lato', sans-serif;
        font-size: 32px;
        margin: 0;
        text-transform: uppercase;
    }
    
    #testDelInversor label{
        display: block;
        padding: 0 0 6px 0;
        font-weight: normal;
        font-family: 'Lato', sans-serif;
        font-size: 14px;
    }
    #testDelInversor label *{
        vertical-align: middle;
    }

    #testDelInversor .resultados{
        display: none;
    }
    #testDelInversor .msj_error{
        color: red;
        display: none;
    }
    #testDelInversor ul li:after{
        content: '';
        display: block;
        clear: both;
    }
    #testDelInversor ul li div > a{
        margin: 0px;
    }
    #testDelInversor ul li > .volver{
        margin-right: 20px;
    }
    #testDelInversor ul li > .volver,
    #testDelInversor ul li > .siguiente{
        float: left;
        display: inline-block; 
        vertical-align: middle;
        margin-top: 15px;    
    }
    #testDelInversor.test-mobile{
      position: absolute; 
      width: 100%; 
      margin-top: 100px; 
      left: 50%; 
      margin-left: -500px;
    }
@media screen and (max-width: 440px) {
    #testDelInversor ul li .btn{
        min-width: 110px;
    }
    #testDelInversor.test-mobile{
      position: absolute; 
      width: 100%; 
      margin-top: 50px; 
      left: 50%; 
      margin-left: -180px;
    }
}

/* 
 -------------------------
 */   
form .error {
    color: #fff;
    background-color: #df5e63;
}
/* 
 ajustes para el munu y las secciones
 -------------------------
 */   
#services-section{padding-top: 120px;}

#services2-section{padding-top: 120px;}

#services3-section{padding-top: 120px;}

#services3-section {margin-bottom: -90px;}
#seccionTestDelInversor{padding-top: 90px;}


#client-testimonials{padding-top: 120px;}

#blog-section{padding-top: 120px;}

#contact-section{padding-top: 120px;}
/* 
 General
 -------------------------
 */
 .esconder{display: none;}

@media screen and (max-width: 400px) {
    #home-section h1{
        white-space: nowrap;    
        font-size: 29px;
    }
}
 .navbar > .container .navbar-brand{
        z-index: 9;   
 }
.owl-carousel .owl-item img{
    width: auto;
    max-width: 100%;    
}

.itemQueNecesito{
    position: relative;
}
    .itemQueNecesito .icon{
        position: absolute;
        top: 0px;
        left:0px;
    }
    .itemQueNecesito .txt{
        padding-left: 91px;
        min-height: 70px;
        padding-top: 19px;  
    }
@media screen and (max-width: 470px) {
    .itemQueNecesito.pos3 .txt {
        padding-top: 9px;
    }
}
@media screen and (max-width: 363px) {
    .itemQueNecesito.pos1 .txt ,
    .itemQueNecesito.pos2 .txt {
        padding-top: 9px; 
    }
}      
@media screen and (max-width: 336px) {
    .itemQueNecesito.pos3 .txt {
        padding-top: 0px;
    }
}

#contact-section.section{
    padding-bottom: 30px;        
}

#pricing-section .infoCV{
    margin: auto;
    float: none;
}

.clear{
    clear: both;
}

@media (max-width: 768px) {
  #client-testimonials .owl-carousel .owl-nav.disabled{
    display:block;
  }  
  #client-testimonials .carousel-control .icon-prev, 
  #client-testimonials .carousel-control .arrow-left,
  #client-testimonials .carousel-control .arrow-right{
    opacity: 1;
  }
}

/* 
 paquetes
 -------------------------
 */
.paquetes{
    margin-bottom: 20px;
}
.paquetes .btn-default{
    border:  0px; 

    font-weight: 400; 
}
.paquetes .pricing-features li {
    border-top: 1px solid #8e8e8e;
    font-weight: 400;
    text-align: center;
}
.paquetes .pricing-header,
.paquetes .popular .pricing-header
{
    font-weight: 400;   
    background-color: #FFF;
    text-align: center; 
}
.paquetes .pricing-header h3
{
    font-size: 30px;
    font-weight: 400;
    color: #2DAFDC;
}
.paquetes .pricing-header p
{
    font-size: 19px;
    font-weight: 400;
    color: #4e4e4e;
    
    font-family: 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
}
.paquetes .pricing-header img{
    height: 100px;
    margin-bottom: 10px;
}
.paquetes .col1 .btn-split.btn-default:after, 
.paquetes .col1 .btn-split.btn-default:before
{
    background-color: #7C7679;
    color: #FFF;    
}
.paquetes .col2 .btn-split.btn-default:after, 
.paquetes .col2 .btn-split.btn-default:before
{
    background-color: #7AC3C8;
    color: #FFF;    
}
.paquetes .col3 .btn-split.btn-default:after, 
.paquetes .col3 .btn-split.btn-default:before
{
    background-color: #466BA5;
    color: #FFF;    
}

.paquetes .hidden-xs{
    display: block!important;
    width: 100%!important;
    margin: auto;
    max-width: 100%;
}
.paquetes .pricing-footer{
    display: block;
    position: relative;
    height: auto;
}
.paquetes .select.visible-xs{
    display: none;
}
/* 
 seccion Test Del Inversor
 -------------------------
 */
#seccionTestDelInversor{

}
    #seccionTestDelInversor .btnHacerTestInversor img{
        max-width: 90%;
    }
    #seccionTestDelInversor .btnHacerTestInversor:hover .btn{
        background-color: #0685b3;    
    }
    #seccionTestDelInversor .btnHacerTestInversor .btn{
        max-width: 90%;
        background-color: transparent;
        color: #FFF;
        margin: 30px 30px;
        border: 2px solid #FFF;
        border-radius: 8px;
        padding: 16px 25px;
        min-width: 0px;
        font-size: 13px;
        vertical-align: middle;
    }

/* 
 

/* 
 services 3
 -------------------------
 */
#services3-section.facts-section {
    background-color: #FFF;
}
#services3-section .services-section-item-icon{
    font-size: 27px;
    line-height: 27px;
}
#facts-section .fact-number{
    font-weight: 400;    
}
/* 
 Sections Layout
 -------------------------
 */
.section {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  #services3-section,
  #services2-section{
    padding-bottom: 0px;  
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 40px;
    padding-bottom: 90px;
  }
  #services3-section,
  #services2-section{
    padding-bottom: 0px;  
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 40px;
    padding-bottom: 120px;
  }
  #services3-section,
  #services2-section{
    padding-bottom: 0px;  
  }
}
.small-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .small-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .small-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .small-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/* The difference between padding-top and padding-bottom of .sticky-nav-here element and marging-top of .sticky-visible-here must be the height of the .navbar in normal state -not transarent-. */
.sticky-nav-here {
  padding-top: 100px;
  padding-bottom: 34px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sticky-nav-here {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .sticky-nav-here {
    padding-top: 150px;
  }
}
@media (min-width: 1200px) {
  .sticky-nav-here {
    padding-top: 180px;
    padding-bottom: 34px;
  }
}
.sticky-visible-here {
  margin-top: -60px;
  /* must be the height of navbar */
}
@media (min-width: 992px) {
  .sticky-visible-here {
    margin-top: -120px;
  }
}


.overlay {
  position: relative;
}
.overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*
  ========================================
                   Buttons
  ========================================
*/
.btn {
  display: inline-block;
  line-height: 1.5;
  min-width: 162px;
  max-width: 270px;
  padding: 8px 20px;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  -webkit-transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
          transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: 0;
}
.btn:hover,
.btn:focus {
  text-decoration: none;
}
.btn:active,
.btn.active {
  box-shadow: none;
}
.btn-small {
  display: inline-block;
  line-height: 1.5;
  min-width: 117px;
  max-width: 160px;
  padding: 4px 10px;
  border-radius: 0;
  font-size: 10px;
}
/*
 Animated buttons
 -------------------------
 */
.btn-animated {
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.35s ease-out;
          transition: all 0.35s ease-out;
}
.btn-animated > span:not(.ink) {
  vertical-align: middle;
}
/* Split Button */
.btn-split {
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}
.btn-split::before,
.btn-split::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-split::before {
  top: 0;
  padding-top: 8px;
}
.btn-split::after {
  bottom: 0;
  line-height: 0;
}
.btn-split > span:not(.ink) {
  display: block;
  -webkit-transform: scale3d(0.2, 0.2, 1);
          transform: scale3d(0.2, 0.2, 1);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
          transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-split .btn-icon {
  position: relative;
  height: 16px;
}
.btn-split .btn-icon:before {
  position: absolute;
  margin: 0;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.btn-split:hover::before {
  -webkit-transform: translate3d(0, -105%, 0);
          transform: translate3d(0, -105%, 0);
}
.btn-split:hover::after {
  -webkit-transform: translate3d(0, 105%, 0);
          transform: translate3d(0, 105%, 0);
}
.btn-split:hover > span:not(.ink) {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
/* Slide Button */
.btn-slide {
  overflow: hidden;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
          transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn-slide > span:not(.ink) {
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
          transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-slide .btn-icon {
  line-height: 37.5px;
  position: absolute;
  height: 100%;
  top: 0;
  right: 8px;
  font-size: 24px;
  -webkit-transform: translate3d(50px, 0, 0);
          transform: translate3d(50px, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
          transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-slide.btn-small .btn-icon {
  line-height: 24px;
  font-size: 18px;
}
.btn-slide:hover > span:not(.ink) {
  -webkit-transform: translate3d(-8px, 0, 0);
          transform: translate3d(-8px, 0, 0);
}
.btn-slide:hover .btn-icon {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
/* Play Button */
.btn-play {
  display: inline-block;
  position: relative;
  height: 73px;
  width: 73px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  vertical-align: middle;
  -webkit-transition: background .20s;
          transition: background .20s;
}
.btn-play:after,
.btn-play:before {
  content: "";
  position: relative;
  display: block;
  height: 1px;
  width: 20px;
  background: #ffffff;
  top: 34.5px;
  left: 26.5px;
}
.btn-play:after {
  -webkit-transform: rotateZ(35deg);
          transform: rotateZ(35deg);
  -webkit-transform-origin: 100% -100%;
      -ms-transform-origin: 100% -100%;
          transform-origin: 100% -100%;
}
.btn-play:before {
  -webkit-transform: rotateZ(-35deg);
          transform: rotateZ(-35deg);
  -webkit-transform-origin: 100% 200%;
      -ms-transform-origin: 100% 200%;
          transform-origin: 100% 200%;
}
.btn-play:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


.btn.btn-verde {
  margin: 10px;
  background: #25d366;
  color: #fff!important;
  border: 0px;
  font-weight: 600!important;  
  display: inline-block;
  line-height: 1.5;
  min-width: 162px;
  max-width: 270px;
  padding: 8px 20px;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  -webkit-transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
          transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
}
    .btn.btn-verde:focus,
    .btn.btn-verde:active:focus,
    .btn.btn-verde.active:focus {
      outline: 0;
      background: #21a051;
      border: 0px;
    }
    .btn.btn-verde:hover,
    .btn.btn-verde:focus {
      text-decoration: none;
      background: #21a051;
      border: 0px;
    }
    .btn.btn-verde:active,
    .btn.btn-verde.active {
      box-shadow: none;
      background: #21a051;
      border: 0px;
    }

.btn.btn-rojo {
  margin: 10px;
  background: #ff0000;
  color: #fff!important;
  border: 0px;
  font-weight: 600!important;  
  display: inline-block;
  line-height: 1.5;
  min-width: 162px;
  max-width: 270px;
  padding: 8px 20px 8px 10px;
  border-radius: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  -webkit-transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
          transition: color 0.27s ease-out, background 0.27s ease-out, border 0.27s ease-out 0s;
}
    .btn.btn-rojo:focus,
    .btn.btn-rojo:active:focus,
    .btn.btn-rojo.active:focus {
      outline: 0;
      background: #cd2323;
      border: 0px;
    }
    .btn.btn-rojo:hover,
    .btn.btn-rojo:focus {
      text-decoration: none;
      background: #cd2323;
      border: 0px;
    }
    .btn.btn-rojo:active,
    .btn.btn-rojo.active {
      box-shadow: none;
      background: #cd2323;
      border: 0px;
    }
/*
  ========================================
                Navbar 
  ========================================
*/
.navbar {
  position: relative;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid #757a86;
  min-height: 60px;
  margin-bottom: 0;
}
.navbar-collapse {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  box-shadow: none;
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 250px;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
}
.navbar-fixed-top {
  border-width: 1px;
}
.navbar-fixed-bottom {
  border-width: 0;
}
.navbar-header {
  position: relative;
}
.navbar-brand {
  position: relative;
  font-size: 18px;
  line-height: 21px;
  padding: 0 11.25px;
  height: 100%;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand p {
  padding: 19.5px 0 19.5px 10px;
  margin: 0;
  height: 60px;
  vertical-align: middle;
  letter-spacing: .4em;
  font-size: 14px;
  text-transform: uppercase;
  /*The line-height here and your logo height should be the same, so type the height of your logo in front of line-height below */
  line-height: 30px;
  padding: 15px 0 15px 10px;
  -webkit-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
}
.navbar-logo {
  margin: 0 auto;
  padding: 15px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}
#logo-svg-navbar {
  width: 60px;
  height: 30px;
}
.nav > li > a {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .navbar-nav {
    width: auto;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.navbar-nav > li > a {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 21px;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.navbar-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: 11.25px;
  padding: 25px 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0;
  margin-bottom: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
/* Sticky Navbar */
.sticky-navbar {
  top: 0;
  position: absolute;
  z-index: 2000;
  width: 100%;
  padding-top: 60px;
}
.sticky-navbar #nav {
  position: relative;
  width: 100%;
  top: -60px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.sticky-navbar #nav.affix {
  visibility: visible;
  position: fixed;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
  width: 100%;
  opacity: 0.9;
  -webkit-transition: -webkit-transform .5s;
          transition: transform .5s;
}
/* Transparent Sticky Navbar */
.transp-nav.sticky-navbar #nav {
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 0;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.transp-nav.sticky-navbar #nav.affix {
  visibility: visible;
  position: fixed;
  top: -60px;
  bottom: auto;
  width: 100%;
  opacity: 0.9;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
  -webkit-transition: -webkit-transform .5s;
          transition: transform .5s;
}
.sticky-visible {
  padding-top: 0;
}
.navbar-nav-elastic {
  margin-top: 103px;
}
.float{
    position:fixed;
    width:90px;
    height:90px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:100%;
    text-align:center;
    font-size:60px;
    box-shadow: 2px 2px 3px #999;
    z-index:9999;
    cursor: pointer;

  }

.fa-whatsapp:before{
    color:#FFF;
 }

  .my-float{
    margin-top:17px;
  }

  @media only screen and (max-width: 600px) and (orientation: portrait){
    .float{
    position:fixed;
    width:70px;
    height:70px;
    bottom:40px;
    right:20px;
    background-color:#25d366;
    color:#FFF;
    border-radius:100%;
    text-align:center;
    font-size:50px;
    box-shadow: 4px 4px 6px #999;
    z-index:9999;
    cursor: pointer;
    }

    .my-float{
    margin-top:11px;
    }
  }
/*
  ========================================
                Carousel
  ========================================
*/
/* Owl Carousel */
.owl-controls {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
/* owl carousel dots customization */
.owl-nav .disabled {
  opacity: .5;
  cursor: default;
}
.owl-dots {
  margin: 15px auto;
  text-align: center;
}
.owl-dot {
  display: inline-block;
  zoom: 1;
  width: 11px;
  height: 7px;
  margin: 7px;
}
.owl-dot span {
  /*background: #d6d6d6;*/
  display: block;
  /*border-radius: 50%*/
  width: 11px;
  height: 7px;
  margin: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backface-visibility: visible;
  -webkit-transition: background 0.27s ease-out;
          transition: background 0.27s ease-out;
  /*border-radius: 50%*/
}
.owl-dot.active span {
  background: #35e9f1;
  /*border-radius: 50%*/
}
.dots-over .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 0;
}
/* 
 Genaral Controls Modifications
 -------------------------
 */
/* Carousel arrows */
.carousel-control {
  width: 100px;
  border: none;
  padding: 0 !important;
  margin: 0 !important;
  text-shadow: none;
  opacity: 1;
}
.carousel-control.left,
.carousel-control.right {
  background: 0;
  -webkit-filter: 0;
          filter: 0;
  opacity: .9;
  cursor: pointer;
  z-index: 6;
}
.carousel-control.left:hover,
.carousel-control.right:hover {
  background: 0;
  opacity: 1;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .arrow-left,
.carousel-control .arrow-right {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 96px;
  background: rgba(23, 23, 36, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: -webkit-transform 0.27s ease-out, opacity 0.27s ease-out;
          transition: transform 0.27s ease-out, opacity 0.27s ease-out;
  z-index: 7;
}
.carousel-control .icon-prev::before,
.carousel-control .icon-next::before,
.carousel-control .arrow-left::before,
.carousel-control .arrow-right::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transition: -webkit-transform 0.2s ease-out;
          transition: transform 0.2s ease-out;
}
.carousel-control .icon-prev,
.carousel-control .arrow-left {
  left: -1px;
  -webkit-transform: translateX(-30%) translateY(-50%);
      -ms-transform: translateX(-30%) translateY(-50%);
          transform: translateX(-30%) translateY(-50%);
  opacity: 0;
}
.carousel-control .icon-prev::before,
.carousel-control .arrow-left::before {
  left: 50%;
  border-top: 2px #ffffff solid;
  border-left: 2px #ffffff solid;
  border-top-left-radius: 2px;
  -webkit-transform: translateX(-30%) translateY(-50%) rotate(-45deg);
      -ms-transform: translateX(-30%) translateY(-50%) rotate(-45deg);
          transform: translateX(-30%) translateY(-50%) rotate(-45deg);
}
.carousel-control .icon-next,
.carousel-control .arrow-right {
  right: -1px;
  -webkit-transform: translateX(30%) translateY(-50%);
      -ms-transform: translateX(30%) translateY(-50%);
          transform: translateX(30%) translateY(-50%);
  opacity: 0;
}
.carousel-control .icon-next::before,
.carousel-control .arrow-right::before {
  left: 50%;
  border-top: 2px #ffffff solid;
  border-right: 2px #ffffff solid;
  border-top-right-radius: 2px;
  -webkit-transform: translateX(-80%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-80%) translateY(-50%) rotate(45deg);
          transform: translateX(-80%) translateY(-50%) rotate(45deg);
}
.carousel:hover .icon-prev,
.carousel:hover .arrow-left {
  -webkit-transform: translateX(0) translateY(-50%);
      -ms-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.carousel:hover .icon-next,
.carousel:hover .arrow-right {
  -webkit-transform: translateX(0) translateY(-50%);
      -ms-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
  opacity: 1;
}
/* 
 Carosel indicators
 -------------------------
 */
.carousel-indicators li {
  margin: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transition: background .5s ease;
          transition: background .5s ease;
}
.carousel-indicators .active {
  margin: 3px;
  width: 8px;
  height: 8px;
}
/* 
 Making Bootstrap carousel fade instead of sliding
 -------------------------
 */
.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition: opacity .8s;
          transition: opacity .8s;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}
/* 
 Falling Carousel Indicators Style
 -------------------------
 */
.dotstyle-fall li,
.dotstyle-fall div {
  position: relative;
  border-width: 0;
  background: 0;
  background: transparent !important;
}
.dotstyle-fall li:after,
.dotstyle-fall div:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: rgba(53, 233, 241, 0.3);
  visibility: hidden;
  opacity: 0;
}
.dotstyle-fall li a,
.dotstyle-fall div a,
.dotstyle-fall li span,
.dotstyle-fall div span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: rgba(53, 233, 241, 0.3);
  outline: none;
  text-indent: -999px;
  /* make the text accessible to screen readers */
  direction: ltr;
  cursor: pointer;
}
.dotstyle-fall li a:focus,
.dotstyle-fall div a:focus,
.dotstyle-fall li.active a,
.dotstyle-fall div.active a,
.dotstyle-fall li span:focus,
.dotstyle-fall div span:focus,
.dotstyle-fall li.active span,
.dotstyle-fall div.active span {
  background: #35e9f1;
}
.dotstyle-fall li.active,
.dotstyle-fall div.active {
  background: 0 !important;
}
.dotstyle-fall li.active:after,
.dotstyle-fall div.active:after {
  opacity: 1;
  visibility: visible;
  background: rgba(53, 233, 241, 0.8);
}
.dotstyle-fall li.active a,
.dotstyle-fall div.active a,
.dotstyle-fall li.active span,
.dotstyle-fall div.active span {
  opacity: 0;
}
/* 
 Filling Carousel Indicators Style
 -------------------------
 */
.dotstyle-fillup li,
.dotstyle-fillup div {
  position: relative;
  border: 0;
}
.dotstyle-fillup li a,
.dotstyle-fillup div a,
.dotstyle-fillup li span,
.dotstyle-fillup div span {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  outline: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.dotstyle-fillup li a:after,
.dotstyle-fillup div a:after,
.dotstyle-fillup li span:after,
.dotstyle-fillup div span:after {
  background-color: #fff;
  bottom: 0;
  content: "";
  width: 0;
  left: 0;
  position: absolute;
  height: 100%;
}
.dotstyle-fillup li.active a:after,
.dotstyle-fillup div.active a:after,
.dotstyle-fillup li.active span:after,
.dotstyle-fillup div.active span:after {
  width: 100%;
}
/*=============================================
=            Animate Slider Styles            =
=============================================*/
.animate-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.animate-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.as-background {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: opacity 0s ease-out 0.57s;
          transition: opacity 0s ease-out 0.57s;
}
.as-overlay .as-background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(34, 34, 34, 0.3);
}
.active-as-background {
  -webkit-transition: opacity 0.57s ease-out 0s;
          transition: opacity 0.57s ease-out 0s;
  z-index: 3;
}
.as-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 5px;
  width: 150px;
  margin: 0 auto;
  font-size: 0;
  z-index: 6;
  text-align: center;
}
.as-indicator {
  float: left;
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 2px;
  margin-right: 5px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.as-indicator:last-child {
  margin-right: 0;
}
.as-load-bar {
  position: absolute;
  height: 100%;
  background: #ffffff;
  display: block;
  border-radius: 2px;
}
.single-loadbar .as-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
}
.single-loadbar .as-indicator.active {
  opacity: 1;
}
.single-loadbar .as-load-bar {
  -webkit-transition: width 0s;
          transition: width 0s;
}
.show-indicators .as-indicators {
  bottom: 40px;
  padding: 10px;
}
.show-indicators .as-indicator {
  display: inline-block;
  float: none;
  width: 11px;
  height: 7px;
  margin: 7px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}
.show-indicators .as-indicator.active {
  background: #ffffff;
}
.show-indicators .as-load-bar {
  height: 0;
}
.show-indicators .dotstyle-fall .as-load-bar {
  height: 100%;
  width: 100% !important;
}
.active .as-load-bar {
  -webkit-transition: width 0s;
          transition: width 0s;
}
.as-arrow {
  z-index: 6;
}
/*=============================================
=             Background Slideshow            =
=============================================*/
.bg-slideshow-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /*animation*/
  -webkit-animation: slideShow 24s linear infinite 0s;
          animation: slideShow 24s linear infinite 0s;
}
.bg-slide-1 {
  opacity: 1;
}
.bg-slide-2 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
.bg-slide-3 {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}
/* keyframes*/
@-webkit-keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1);
            transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes slideShow {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1);
            transform: scale3d(1.3, 1.3, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
/*
  ========================================
               Home Section Text Mask
  ========================================
*/
.text-mask-light {
  background-image: url(../img/backgrounds/home-background-01.jpg);
  background-position: 50% 50%;
  background-size: cover;
  text-align: center;
}
.retina-support .text-mask-light .cd-headline {
  background-image: url("../img/backgrounds/home-background-01.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .text-mask-light .cd-headline {
    background-image: url("../img/backgrounds/home-background-01.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .text-mask-light .cd-headline {
    background-image: url("../img/backgrounds/home-background-01@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .text-mask-light .cd-headline {
    background-image: url("../img/backgrounds/home-background-01@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .text-mask-light .cd-headline {
    background-image: url("../img/backgrounds/home-background-01@lg2x.jpg");
  }
}
.text-mask {
  margin: 50px auto 0;
  padding: 0 25px;
  display: inline;
  border-radius: 700px;
  background: #fff;
  color: #000;
  mix-blend-mode: lighten;
}
.text-mask b {
  margin-left: .1em;
}
/*
  ========================================
                Skill Bars
  ========================================
*/
.skillbar-container {
  position: relative;
  margin-bottom: 20px;
  font-size: 13px;
}
.skillbar-container:last-child {
  margin-bottom: 0;
}
.skillbar-title {
  font-size: 15px;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.skillbar-title span {
  float: right;
}

.skillbar-container img{
  width: 100%;
}
.skillbar {
  width: 100%;
  height: 3px;
  border-radius: 0 2px 2px 0;
  overflow: hidden;
}
.skillbar-bar {
  height: 3px;
  width: 0;
  border-radius: 0 2px 2px 0;
}
.skillbars p a{
  color: #000;
}
.skillbars p a:hover{
  color: #00b2ca;
}
/* 
    =========================
    Layout styles
    --------------
    Contents
    ========

    General Styles
    Page Loader
    Scroll Progress Bar
    Home Section
    About Section
    Facts Section
    Services Section
    Works Section
    Project Order
    Team Section
    Process Section
    Testimonials
    Prices Section
    Blog Section
    Contact Section
    Google Map
    Footer Section

    Blog Pages Styles
    Works Pages Styles
    Blog and Work pages background images

    Generic Layout Classes --( set 02 )--

*/
/*
  ========================================
  General Styles
  ========================================
*/
body {
  overflow-x: hidden;
}
#page {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
}
#page-2 {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  z-index: 999;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 950px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1053px;
  }
}
/*
  ========================================
  Page Loader
  ========================================
*/
.animsition-loading .loader1,
.animsition-loading .loader2,
.animsition-loading .loader3 {
  top: calc(38% - 50px);
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.page-loader-text {
  position: absolute;
  top: calc(38% + 50px);
  width: 100%;
  margin: 0 auto;
  padding-left: 7px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4em;
}
/*
  ========================================
  Scroll Progress Bar
  ========================================
*/
#scroll-progressbar {
  display: none;
}
/*============================
= Home Section               =
============================*/
.home-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#home-section  .hs-text-6{
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 648px;
}
@media (max-width: 500px) {
    #home-section  .hs-text-6{
        line-height: 1.4;
    }
    #home-section .hs-content-inner .init-animation-2 h1{
            margin-bottom: 130px;    
    }
}
.hs-content {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  color: #ffffff;
}
.hs-content-inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  padding: 0 15px;
  z-index: 5;
}
.hs-content-inner > div {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.scroll-down-arrow {
  position: absolute;
  bottom: 0;
  left: calc(50% - 13px);
  width: 26px;
  height: 50px;
  -webkit-animation-name: fadeInOutDown;
          animation-name: fadeInOutDown;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  z-index: 6;
}
.scroll-down-arrow a {
  font-size: 28px;
  text-align: center;
}
.hero-clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 250.625em;
  height: 43.75em;
  background: url(../img/backgrounds/clouds.png) 0px 100% repeat-x;
  -webkit-animation: cloudLoop 80s linear infinite;
          animation: cloudLoop 80s linear infinite;
}
.particles,
.fss,
.fss-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100%;
  overflow: hidden;
}
.particles {
  opacity: .5;
}
.fss {
  opacity: .15;
}
.particles-js {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 40%;
  height: 30%;
  overflow: hidden;
  opacity: 0.8;
}
.video-background,
.youtube-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.video-background:before,
.youtube-bg:before {
  z-index: 4;
}
.parallax-hero,
.zoom-hero {
  position: fixed;
  top: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section-bg {
  position: absolute;
  height: 120vh !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile .parallax-section-bg {
  height: 100% !important;
}
.fixed-bg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.zoom-hero {
  background-attachment: fixed;
}
.scaled-up {
  -webkit-transform: scale3d(1.4, 1.4, 1);
          transform: scale3d(1.4, 1.4, 1);
}
.owl-hs-slider {
  height: 100%;
  width: 100%;
}
.owl-hs-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
}
.owl-hs-slider .owl-stage-outer,
.owl-hs-slider .owl-stage,
.owl-hs-slider .owl-item,
.owl-hs-slider .owl-hs-slide {
  height: 100%;
}
.owl-hs-slide {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
#logo-svg-hs {
  width: 400px;
}
.home-bg {
  background-image: url(../img/backgrounds/home-background-01.jpg);
}
/* 
 Home section Owl slider Backgrounds
 -------------------------
 */
.owl-hs-slide-01 {
  background-image: url(../img/backgrounds/home-background-01.jpg);
}
.owl-hs-slide-02 {
  background-image: url(../img/backgrounds/home-background-02.jpg);
}
.owl-hs-slide-03 {
  background-image: url(../img/backgrounds/home-background-03.jpg);
}
.retina-support .owl-hs-slide-01 {
  background-image: url("../img/backgrounds/home-background-01.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .owl-hs-slide-01 {
    background-image: url("../img/backgrounds/home-background-01.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .owl-hs-slide-01 {
    background-image: url("../img/backgrounds/home-background-01@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .owl-hs-slide-01 {
    background-image: url("../img/backgrounds/home-background-01@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .owl-hs-slide-01 {
    background-image: url("../img/backgrounds/home-background-01@lg2x.jpg");
  }
}
.retina-support .owl-hs-slide-02 {
  background-image: url("../img/backgrounds/home-background-02.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .owl-hs-slide-02 {
    background-image: url("../img/backgrounds/home-background-02.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .owl-hs-slide-02 {
    background-image: url("../img/backgrounds/home-background-02@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .owl-hs-slide-02 {
    background-image: url("../img/backgrounds/home-background-02@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .owl-hs-slide-02 {
    background-image: url("../img/backgrounds/home-background-02@lg2x.jpg");
  }
}
.retina-support .owl-hs-slide-03 {
  background-image: url("../img/backgrounds/home-background-03.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .owl-hs-slide-03 {
    background-image: url("../img/backgrounds/home-background-03.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .owl-hs-slide-03 {
    background-image: url("../img/backgrounds/home-background-03@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .owl-hs-slide-03 {
    background-image: url("../img/backgrounds/home-background-03@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .owl-hs-slide-03 {
    background-image: url("../img/backgrounds/home-background-03@lg2x.jpg");
  }
}
/* 
 Home section SlideShow Backgrounds
 -------------------------
 */
.bg-slide-1 {
  opacity: 1;
  background: url(../img/backgrounds/home-background-01.jpg) no-repeat center center;
  background-size: cover;
}
.bg-slide-2 {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
  background: url(../img/backgrounds/home-background-02.jpg) no-repeat center center;
  background-size: cover;
}
.bg-slide-3 {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
  background: url(../img/backgrounds/home-background-03.jpg) no-repeat center center;
  background-size: cover;
}
.retina-support .bg-slide-1 {
  background-image: url("../img/backgrounds/home-background-01.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .bg-slide-1 {
    background-image: url("../img/backgrounds/home-background-01.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .bg-slide-1 {
    background-image: url("../img/backgrounds/home-background-01@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .bg-slide-1 {
    background-image: url("../img/backgrounds/home-background-01@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .bg-slide-1 {
    background-image: url("../img/backgrounds/home-background-01@lg2x.jpg");
  }
}
.retina-support .bg-slide-2 {
  background-image: url("../img/backgrounds/home-background-02.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .bg-slide-2 {
    background-image: url("../img/backgrounds/home-background-02.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .bg-slide-2 {
    background-image: url("../img/backgrounds/home-background-02@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .bg-slide-2 {
    background-image: url("../img/backgrounds/home-background-02@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .bg-slide-2 {
    background-image: url("../img/backgrounds/home-background-02@lg2x.jpg");
  }
}
.retina-support .bg-slide-3 {
  background-image: url("../img/backgrounds/home-background-03.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .bg-slide-3 {
    background-image: url("../img/backgrounds/home-background-03.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .bg-slide-3 {
    background-image: url("../img/backgrounds/home-background-03@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .bg-slide-3 {
    background-image: url("../img/backgrounds/home-background-03@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .bg-slide-3 {
    background-image: url("../img/backgrounds/home-background-03@lg2x.jpg");
  }
}
/*=============================
=  About Section              =
=============================*/
.about-section-img {
  margin: 10px auto;
}
/*.skillbars {
  margin-top: 11px;
}*/
.skill-bars {
  padding-bottom: 400px;
}
.about-quote {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 10px 0 0 0;
  font-weight: 300;
  line-height: 1.2;
}
.about-quote p {
  margin-bottom: 16px;
}
.about-quote footer {
  font-size: 14px;
}
.about-section-tips {
  padding-top: 40px;
}
.about-section-tips:hover .about-section-item-icon {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.about-item-title {
  font-weight: 300;
}
.about-section-item {
  position: relative;
  overflow: visible;
}
.about-section-item:nth-child(2) .about-section-item-text {
  margin-left: -50%;
}
.about-section-item:nth-child(3) .about-section-item-text {
  margin-left: -165%;
}
.about-section-item:nth-child(4) .about-section-item-text {
  margin-left: -278%;
}
.about-section-item:hover {
  z-index: 4;
}
.about-section-item:hover .about-section-item-text {
  opacity: 1;
}
.about-section-item-icon {
  -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.37s ease-in-out;
          transition: transform 0.37s ease-in-out;
}
.about-section-item-icon:hover {
  color: #35e9f1;
}
.about-section-item-icon i {
  font-size: 42px;
}
.about-section-item-text {
  margin-left: 60%;
  width: 320%;
  padding-top: 40px;
  opacity: 0;
  -webkit-transition: opacity .27s;
          transition: opacity .27s;
}
.about-section-btn .btn-default {
  border: 1px solid #0c0c17;
}
.dropshadow:after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -3px;
  width: 94%;
  left: 50%;
  margin-left: -47%;
  height: 30px;
  box-shadow: 0 16px 30px -5px #000000;
  -webkit-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
  -ms-transform: perspective(800px) rotateY(0deg) rotateX(45deg);
  transform: perspective(800px) rotateY(0deg) rotateX(45deg);
}

.skillbar-bar.red{
    background-color: #ca0025;
}
/*=============================
= Facts Section               =
=============================*/
.fact-item {
  position: relative;
}
.fact-icon {
  font-size: 39px;
  line-height: 80px;
  vertical-align: middle;
}
.fact-number {
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
}
.fact-number p {
  display: inline-block;  
  margin-bottom: 10px;
}
.fact-text {
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  display: inline-block;
  padding-left: 1px; 
}
.fact-text p {
  margin-bottom: 0;
}
.fact-item.valores .fact-text{
  
  font-weight: 700;
  font-size: 20px;
}
.fact-item.valores .fact-text p{
    color: #717171;    
}
/*===================================
= Services Section                  =
===================================*/
.services-section-item {
  -webkit-perspective: 300px;
          perspective: 300px;
  text-align: center;
}
.services-item-title {
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 300;
}
.services-section-item-icon {
  margin: 0 auto;
  font-size: 44px;
}
.services-section-item-text {
  font-size: 14px;
  line-height: 1.2;
}
/*=============================
= Works Section               =
=============================*/
.portfolio-section .section-text {
  margin-top: 12px;
}
.portfolio-filters {
  text-align: center;
  display: inline-block;
  margin-bottom: 40px;
}
.portfolio-filters .btn {
  margin: 0;
  min-width: 250px;
  display: inline-block;
}
.portfolio-filters .btn::before,
.portfolio-filters .btn::after {
  height: 49%;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .portfolio-filters .btn::before,
  .portfolio-filters .btn::after {
    height: 50%;
  }
}
.portfolio-filters .selected::before {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
.portfolio-filters .selected::after {
  -webkit-transform: translate3d(0, 105%, 0);
          transform: translate3d(0, 105%, 0);
}
.portfolio-filters .selected > span:not(.ink) {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.portfolio-container {
  margin-right: -4px;
  margin-left: 0;
  overflow: hidden;
}
.portfolio-container.container {
  margin-right: auto;
  margin-left: auto;
}
.portfolio-container.no-transition,
.portfolio-item.no-transition {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  float: left;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  margin-right: -1px;
}
.portfolio-item-img {
  overflow: hidden;
}
.portfolio-item-img p{
  position: absolute;
  width: 80%;
  overflow: visible;
  margin: auto;
  top: 45%;
  left: 0;
  right: 0;
  z-index: 5;
  float: left;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  font-size: 1.214em;
  font-weight: 700;
}
.portfolio-item-img .plus{
  position: absolute;
  width: 80%;
  overflow: visible;
  margin: auto;
  top: 55%;
  left: 0;
  right: 0;
  z-index: 5;
  float: left;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  font-size: 1.214em;
  font-weight: 800;
}
.portfolio-item-img img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
}
.portfolio-item-img:after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
}
.video-work {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
}
.video-work:after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 4;
}
.video-work .video-background {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-transform: scale(1.07);
      -ms-transform: scale(1.07);
          transform: scale(1.07);
}
.gapped {
  margin-left: -20px;
  margin-right: -26px;
  padding-bottom: 20px;
}
.gapped .portfolio-item {
  padding: 20px;
  margin-right: -2px;
}
.gapped .portfolio-item-img:after,
.gapped .video-work {
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.real-gapped {
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 20px;
}
.real-gapped .portfolio-item {
  padding: 20px;
}
.real-gapped .portfolio-item-img:after,
.real-gapped .video-work {
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.portfolio-item-info {
  position: absolute;
  width: 80%;
  overflow: visible;
  margin: auto;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.portfolio-item-title {
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}
.portfolio-item-detail {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.15);
          transform: translate3d(0, 20px, 0) scale(1.15);
}
.portfolio-item-detail p {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.portfolio-item-detail a {
  font-size: 28px;
  display: inline-block;
  height: 60px;
  width: 80px;
  line-height: 60px;
}
.portfolio-item:hover .portfolio-item-img img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.portfolio-item:hover .portfolio-item-img:after {
  opacity: 1;
}
.portfolio-item:hover .video-work:after {
  opacity: 1;
}
.portfolio-item:hover .video-background {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.portfolio-item:hover .portfolio-item-title {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.portfolio-item:hover .portfolio-item-detail {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}
/*=====================================
= Project Order                       =
=====================================*/
.project-order-section {
  margin-top: -1px;
}
.project-order-section a {
  font-weight: 700;
}
/*=============================
= Team Section                =
=============================*/
.team-carousel {
  cursor: col-resize;
}
.team-carousel .owl-grab {
  cursor: col-resize;
}
.team-items .owl-item img {
  display: inline-block;
  width: auto;
  height: 380px;
  margin: 20px 0;
}
.team-items .owl-dots {
  position: static;
  margin: 40px auto 0;
}
.team-item {
  position: relative;
  margin-bottom: 70px;
}
.team-item-img {
  text-align: center;
}
.team-item-img img {
  display: inline-block;
  width: 79%;
  height: auto;
  margin: 20px auto 20px auto;
}
.team-item-info {
  position: absolute;
  height: calc(100% + 10px);
  width: 100%;
  bottom: -10px;
  left: 0;
  padding: 50px 30px 0 30px;
  opacity: 0;
  -webkit-transition: opacity 0.27s ease-out;
          transition: opacity 0.27s ease-out;
}
.team-item-name {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  text-align: center;
  z-index: 3;
}
.team-item-name h4 {
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 300;
}
.team-item-name span {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}
.team-item-text {
  text-align: center;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.team-item-text h3 {
  padding-bottom: 20px;
  font-weight: 300;
}
.team-item-text h3 span {
  font-weight: 700;
}
.team-item-social {
  padding: 30px 0;
  text-align: center;
}
.team-item-social li {
  display: inline-block;
  margin: 0 10px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  font-size: 18px;
  border-radius: 50%;
}
/* Hover effects */
.team-item:hover .team-item-info {
  opacity: 1;
}
/*===============================
= Process Section               =
===============================*/
.process-section .owl-stage-outer {
  overflow: hidden;
}
.process-section p {
  font-weight: 300;
}
.process-section .owl-controls {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translatex(-50%);
      -ms-transform: translatex(-50%);
          transform: translatex(-50%);
}
@media screen and (max-width: 767px) {
  .process-section .owl-controls {
    width: 100%;
  }
}
.process {
  cursor: col-resize;
}
.process .owl-grab {
  cursor: col-resize;
}
.owl-stage-outer {
  width: 100%;
}
/* Process Lables */
.process-labels {
  position: relative;
  left: 50%;
  width: 80%;
  margin: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.process-labels li {
  display: inline-block;
  position: absolute;
  bottom: 0;
}
.process-labels i {
  position: absolute;
  bottom: 40px;
  left: 50%;
  padding: 10px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 44px;
}
.process-labels .icon-shade {
  max-width: 0;
  left: 10px;
  padding: 10px 0;
  bottom: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  overflow: hidden;
  color: #35e9f1;
}
.process-labels span {
  bottom: 0;
  height: 55px;
  overflow: hidden;
  line-height: 55px;
  opacity: 0;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 300;
}
.process-labels span:before {
  content: attr(data-active);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 0;
  overflow: hidden;
  text-transform: capitalize;
}
.process-labels .process-label-active span {
  opacity: 1;
}
.process-labels .process-label-active span:before {
  max-width: 100%;
}
.process-labels .process-label-active .icon-shade {
  max-width: 100%;
}
/* Process Line */
.line-process-parent {
  position: relative;
  left: 50%;
  width: 80%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: #f5f5fa;
}
.line-process {
  position: absolute;
  width: 0;
  height: 100%;
  background: #35e9f1;
  z-index: 3;
  -webkit-transition: width 0.5s ease-in-out;
          transition: width 0.5s ease-in-out;
}
/* Process Dots */
.line-process-mood {
  position: absolute;
  width: calc(80% - 30px);
  top: -56px;
  left: calc(10% + 15px);
  height: 30px;
  z-index: 4;
}
.line-process-mood .owl-dot {
  position: absolute;
  height: 120px;
  width: 90px;
  -webkit-transform: translateX(-30px) translateY(-90px);
      -ms-transform: translateX(-30px) translateY(-90px);
          transform: translateX(-30px) translateY(-90px);
  margin: 0 0 0 -12.5px;
}
.line-process-mood .owl-dot:first-child {
  margin-left: -12px;
}
.line-process-mood .owl-dot:last-child {
  margin-left: -12px;
}
.line-process-mood .owl-dot span {
  height: 1px;
  width: 25px;
  -webkit-transform: translateX(30px) translateY(90px);
      -ms-transform: translateX(30px) translateY(90px);
          transform: translateX(30px) translateY(90px);
  border-radius: 0;
  background-color: #cccce6;
}
.line-process-mood .owl-dot span:after {
  border-radius: 0;
  background-color: #35e9f1;
}
.line-process-mood .owl-dot .process-active-dot:after {
  width: 100%;
}
.process-item {
  margin: 0 auto;
  padding-top: 20px;
  font-size: 14px;
}
.process-section .owl-stage .icon{
  width: 67px;
  display: inline-block;
}
/*==============================
= Asesor Financiero                 =
==============================*/
.section-asesor_financiero {

  text-align: center;

  background-image: url(../img/backgrounds/asesor_finaciero-background.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-asesor_financiero .section-title-heading,
.section-asesor_financiero *{color: #FFF;}
.section-asesor_financiero .verde{
    color: #71D40E; 
}
.section-asesor_financiero .section-title-heading span.ya{
    font-weight: 600;
}
.section-asesor_financiero .section-title-heading span.new{
    font-size: 12px;
    vertical-align: middle;
    padding-left: 5px;
}
.section-asesor_financiero .sub_titulo{
    font-size: 18px;    
}
.section-asesor_financiero .letra_chica{
    font-size: 13px;
    font-style: italic;
}
/*==============================
= Testimonials                 =
==============================*/
.client-testimonials {
  position: relative;
  overflow: hidden;
}
.quote-icon {
  position: relative;
  font-size: 44px;
  text-align: center;
  color: #35e9f1;
  padding-bottom: 44px;
}
.client-testimonials-bg {
  background-image: url(../img/backgrounds/testimonials-background.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.retina-support .client-testimonials-bg {
  background-image: url('../img/backgrounds/testimonials-background.jpg');
}
@media only screen and (min-device-width: 320px) {
  .retina-support .client-testimonials-bg {
    background-image: url('../img/backgrounds/testimonials-background.jpg');
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .client-testimonials-bg {
    background-image: url("../img/backgrounds/testimonials-background@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .client-testimonials-bg {
    background-image: url("../img/backgrounds/testimonials-background@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .client-testimonials-bg {
    background-image: url("../img/backgrounds/testimonials-background@lg2x.jpg");
  }
}
.testimonials .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.testimonials .owl-item {
  margin-bottom: 10px;
  text-align: center;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.testimonials .owl-item .testimo-img {
  width: 60px;
  height: 60px;
  margin: 10px auto;
  border-radius: 50%;
}
.testimonials .owl-item .testimo-logo {
  height: 30px;
  width: auto;
  margin: 20px auto;
}
.testimonials .owl-dots {
  width: 100%;
  margin: 50px auto 0;
  text-align: center;
}
.testimo-item {
  margin: 0 auto;
}
.testimo-item blockquote {
  font-weight: 300;
  margin: 0;
  padding: 0;
}
.testimo-item blockquote p {
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}
.testimo-item blockquote footer {
  font-family: 'Lato', sans-serif;
}
.testimo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.client-image {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 50%;
}
.client-image img {
  height: 100%;
  width: auto;
  border-radius: 50%;
}
.client-logos .container {
  padding-right: 25px;
  padding-left: 25px;
}
.client-logos i {
  display: block;
  text-align: center;
  font-size: 60px;
}

/*==============================
= Taxes Section               =
==============================*/
#taxes-section p{
  text-align: center;
}

#taxes-section h4{
  text-align: center;
}

/*==============================
= Cost Section               =
==============================*/
#cost-section p{
  text-align: center;
}

#cost-section h4{
  text-align: center;
}


/*==============================
= Prices Section               =
==============================*/
.pricing-table {
  position: relative;
  border: 1px solid #f5f5fa;
}
    .paquetes .pricing-table {
      border: 1px solid #8e8e8e;
    }
.pricing-header {
  position: relative;
  z-index: 1;
  height: 80px;
  padding: 14px;
  pointer-events: none;
  background-color: #757a86;
}
.pricing-header h3 {
  margin-top: 0;
}
.currency,
.value {
  font-size: 3rem;
  font-weight: 300;
}
.duration {
  font-weight: 600;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.duration::before {
  /*content: '/';*/
  margin-right: 2px;
}
.pricing-body {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-features {
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  padding: 0px;
}
.pricing-features:after {
  content: "";
  display: table;
  clear: both;
}
.pricing-header{
    height: auto;    
}
.pricing-header h3{
        padding-left: 12px;    
}
.popular .pricing-header .duration{
    padding-left: 12px;   
}

#pricing-section .popular .pricing-header{
    background-color: #FFF;    
}
.pricing-features li{
    border-top: 1px solid #f5f5fa; 
    padding: 4px 27px;   
}
/*
.pricing-features li {
  width: 100px;
  float: left;
  padding: 1.6em 14px;
  font-size: 1.4rem;
  text-align: center;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
*/
.pricing-features em {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.pricing-footer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  /* on mobile it covers the .pricing-header */
  height: 80px;
  width: 100%;
}
.pricing-footer::after {
  /* right arrow visible on mobile */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 20px;
}
.select {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  /* hide button text on mobile */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.select .icon {
  position: absolute;
  right: 0;
  height: 80px;
  margin-right: 5px;
  line-height: 80px;
  font-size: 30px;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .pricing-header {
    height: auto;
    padding: 1.9em 0.9em 1.6em;
    pointer-events: auto;
    text-align: center;
  }
  .value {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
  }
  .currency {
    display: inline-block;
    margin-top: 10px;
    vertical-align: top;
    font-size: 2rem;
    font-weight: 700;
  }
  .duration {
    font-size: 1.4rem;
  }
  .pricing-body {
    overflow-x: visible;
  }
  .pricing-features {
    width: auto;
    padding: 0;
    margin-bottom: 30px;
  }
  .pricing-features li {
    float: none;
    width: auto;
    padding: 8px;
  }
  .pricing-features em {
    display: inline-block;
    margin-bottom: 0;
    font-style: normal;
  }
  .pricing-footer {
    position: relative;
    height: auto;
    padding: 0;
    text-align: center;
  }
  .pricing-footer::after {
    display: none;
  }
  .pricing-footer .btn {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}
.popular .pricing-header .duration{
  color: #0c0c17;
}
/*==============================
= Modals              =
==============================*/
.modal{ z-index: 12000;}
.modal .modal-body p {      font-size: 16px;  }
.modal .modal-body p.preline {      font-size: 16px; white-space: pre-line; }
.modal .modal-content{border-radius: 0px;}
/*==============================
= Blog Section               =
==============================*/
.blog-post-preview-link {
  display: block;
}
.blog-post-preview-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-post-preview-img img {
  width: 100%;
  height: auto;
}
.blog-post-preview-date {
  margin-bottom: 8px;
  margin-top: 3px;
  padding-left: 3px;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  color: #757a86;
}
.blog-post-preview-title {
  margin-top: 0;
  margin-bottom: 4px;
  -webkit-transition: color .25s;
          transition: color .25s;
  color: #171724;
  font-weight: 300;
}
.blog-post-preview-title span {
  font-weight: 700;
}
.blog-post-preview-text {
  margin-top: 13px;
  font-weight: 300;
}
.blog-post-preview-text p {
  margin-bottom: 0;
}
.blog-post-preview h4{
  margin-bottom: 15px;
  margin-top: 15px;
}
/*=======================================
= Contact Section                       =
=======================================*/
.contact-item {
  text-align: center;
}
.contact-item p {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 13px;
}
.contact-item i {
  font-size: 28px;
}
.input {
  position: relative;
  display: inline-block;
  vertical-align: top;
  z-index: 1;
}
.input-field {
  position: relative;
  display: block;
  padding: 8px 20px;
  line-height: 1.5;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  -webkit-transition: border-color 0.25s;
          transition: border-color 0.25s;
  -webkit-appearance: none;
  /* for box shadows to show on iOS */
}
.textarea-label {
  display: block;
}
.textarea {
  height: 8em;
}
.input-label,
.textarea-label {
  display: inline-block;
  width: 100%;
  margin-bottom: 2px;
  padding: 0 14px;
  overflow: hidden;
  text-align: left;
  font-weight: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.input-label {
  position: absolute;
  bottom: 100%;
  margin-bottom: 0;
  -webkit-transform: translate3d(0, 3em, 0);
          transform: translate3d(0, 3em, 0);
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  z-index: 3;
  cursor: text;
}
.input-label-content {
  position: relative;
  display: block;
  margin-bottom: 12px;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.input-label-content::after {
  content: attr(data-content);
  position: absolute;
  bottom: 100%;
  left: 0;
  height: 110%;
  width: 100%;
}
.input-field:focus + .input-label,
.input--filled .input-label {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.input-field:focus + .input-label .input-label-content,
.input--filled .input-label-content {
  -webkit-transform: translate3d(0, 140%, 0);
          transform: translate3d(0, 140%, 0);
}
.input-field:focus + .input-field,
.input--filled .input-field {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.5);
}
.btn-contact {
  overflow: hidden;
}
.btn-contact::before,
.btn-contact::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
  background: #ffffff;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-contact::before {
  top: 0;
  padding-top: 8px;
}
.btn-contact::after {
  bottom: 0;
  line-height: 0;
}
.btn-contact > span:not(.ink) {
  display: block;
  -webkit-transform: scale3d(0.2, 0.2, 1);
          transform: scale3d(0.2, 0.2, 1);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
          transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.btn-contact .btn-icon {
  position: relative;
  height: 16px;
}
.btn-contact .loader-parent {
  position: absolute;
  margin: 0;
  font-size: 28px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.btn-contact .loader3 {
  -webkit-animation: none;
          animation: none;
  height: 20px;
  width: 20px;
}
.btn-contact.btn-loading::before {
  -webkit-transform: translate3d(0, -105%, 0);
          transform: translate3d(0, -105%, 0);
}
.btn-contact.btn-loading::after {
  -webkit-transform: translate3d(0, 105%, 0);
          transform: translate3d(0, 105%, 0);
}
.btn-contact.btn-loading > span:not(.ink) {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.btn-contact.btn-loading .loader3 {
  -webkit-animation: load2 .5s infinite linear;
          animation: load2 .5s infinite linear;
}
.form-message {
  padding: 0;
  line-height: 36px;
  text-align: center;
}
/*==================================
= Google Map                       =
==================================*/
.map-section {
  height: 100px;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.2s ease-out;
          transition: height 0.2s ease-out;
}
.map-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 4;
}
.map-mask .row {
  position: relative;
}
.map-mask .row > div {
  position: relative;
  top: 50%;
}
.map-opener {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -200px;
  width: 400px;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  text-align: center;
  font-weight: 400;
}
.map-opener div {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.map-opener div:first-child {
  opacity: 1;
}
.map-opener div:nth-child(2) {
  margin-top: -50px;
  opacity: 0;
}
.map-opener i {
  font-size: 28px;
  vertical-align: middle;
}
.map-opener i:before {
  display: inline;
}
.map-opened {
  height: 450px;
}
.map-opened .map-mask {
  height: 100px;
}
.map-opened .map-opener div:first-child {
  opacity: 0;
}
.map-opened .map-opener div:nth-child(2) {
  opacity: 1;
}
#google-map {
  position: relative;  
}
#map-canvas {
  position: relative;
  height: 450px;
  cursor: -webkit-grab;
  cursor: grab;
}
#map-zoom-in,
#map-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-position: 1px 1px;
  background-image: url("../img/google-map-assets/map-icon-controller.svg");
}
#map-zoom-in {
  background-position: 50% 0;
  margin-top: 120px;
  margin-bottom: 1px;
}
#map-zoom-out {
  background-position: 50% -32px;
}
.gmap-popup {
  max-width: 204px;
  min-height: 150px;
}
/*======================================
= Footer Section                       =
======================================*/
#logo-svg {
  height: 70px;
  width: 100%;
}
.footer-section {
  overflow-x: hidden;
}
.footer-logo {
  width: 400px;
  margin: 0 auto;
}
.footer-logo p {
  font-size: 17px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4em;
  padding-left: 16px;
  padding-top: 14px;
}
.footer-social {
  padding: 51px 0;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}
footer .footer-social a {
  margin: 0 10px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  line-height: 37px;
  font-size: 16px;
  color: #e6e6e6;
}
    footer .footer-social a:active,
    footer .footer-social a:focus,
    footer .footer-social a:hover {
      color: #706f83;
    }
/* 
 Go Top Button
 -------------------------
 */
.go-top {
  position: relative;
  overflow: visible;
}
.go-top div {
  position: absolute;
}
.circle1,
.circle2 {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  left: 50%;
  bottom: 0;
  z-index: 3;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.circle1 {
  margin-left: -90.42857143px;
  -webkit-transform: translateX(60px);
      -ms-transform: translateX(60px);
          transform: translateX(60px);
}
.circle1:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 240px;
  right: 40px;
  bottom: 0;
}
.circle2 {
  margin-left: 11.42857143px;
  -webkit-transform: translateX(-60px);
      -ms-transform: translateX(-60px);
          transform: translateX(-60px);
}
.circle2:after {
  content: "";
  position: absolute;
  height: 40px;
  width: 240px;
  left: 40px;
  bottom: 0;
}
.square {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  bottom: -61.6px;
  margin-left: -40px;
  border-radius: 20%;
  -webkit-transform: rotate(45deg) translateY(40px) translateX(40px);
      -ms-transform: rotate(45deg) translateY(40px) translateX(40px);
          transform: rotate(45deg) translateY(40px) translateX(40px);
  z-index: 2;
}
.square span {
  position: absolute;
  height: 13.33333333px;
  width: 13.33333333px;
  left: 13.33333333px;
  top: 13.33333333px;
  border-top-left-radius: 0;
}
.rectangle {
  height: 40px;
  width: 240px;
  left: 50%;
  bottom: -30px;
  margin-left: -120px;
  -webkit-transform: translateY(16px);
      -ms-transform: translateY(16px);
          transform: translateY(16px);
}
.go-top-out .square {
  position: absolute;
  cursor: pointer;
  -webkit-transform: rotate(45deg) translateY(0) translateX(0);
      -ms-transform: rotate(45deg) translateY(0) translateX(0);
          transform: rotate(45deg) translateY(0) translateX(0);
}
.go-top-out .rectangle {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.go-top-out .circle1 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.go-top-out .circle2 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.footer-bottom {
  position: relative;
  z-index: 5;
  padding: 0px;
  text-align: center;
  font-weight: 400;
}
footer .footer-bottom{
    background-color: #FFF;
}
.footer-bottom-text {
  display: inline-block;
  padding-bottom: 6px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .23em;
  margin-right: -0.23em;
  padding: 14px 0;
}
.footer-made {
  display: inline-block;
  font-size: 10px;
}

.footer-bottom .logos{
    padding: 20px 0;
    text-align: center;  
    background-color: #424143; 
}
    .footer-bottom .logos img{
        max-width: 100%;   
    }
.footer-bottom p{
    margin-bottom: 0px;
}
.footer-bottom .legal a{
    text-decoration: none;
    color: #939598;
    font-size: 13px;
    border: 0px;
}
a.arriba{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border: 0px;
    background-color: #aab2be;
    padding: 10px;
    border-radius: 3px;
}
.footer-bottom .legal a:focus,
.footer-bottom .legal a:active,
.footer-bottom .legal a:hover{
    text-decoration: underline;
}
.footer-bottom .copy{
    position: relative;
    margin: 0px auto;
    padding: 28px 170px 0px 170px;
    width: auto;  
    color: #d1d3d4;
    font-size: 17px;
}
.footer-bottom .codigo_QR{
    position: absolute;
    left: 33px;
    top: 100px;    
}
.footer-bottom .footer_iconos{
    position: absolute;
    right: 35px;
    top: 110px; 
}
    
.footer-bottom .legal{
    margin: 0px auto;
    padding: 0px 170px 0 170px;
    width: auto;
    color: #939598;
    font-size: 13px;
}
.footer-bottom .legal_contenido{
    margin: 0px auto;
    padding: 25px 33px 0px 33px;
    width: auto;
    text-align: justify;
    color: #939598;
    font-size: 11px;
    line-height: 1.3em;
}

@media screen and (max-width: 700px) {
    .footer-bottom .codigo_QR{
        position: relative;
        left: auto;
        top: auto;   
        padding-top: 20px; 
    }
    .footer-bottom .copy{
        padding: 28px 30px 0px 30px;
    }
    .footer-bottom .legal{
        padding: 0px 30px 0 30px;
    }
    
    .footer-bottom .footer_iconos{
        display: none;
    }
}
/*

===============================================
===============================================
===========(( Blog Pages Styles  ))============
===============================================
===============================================

*/
.page-header {
  position: relative;
  padding-bottom: 0;
  margin: 0;
  border-bottom: 0;
  height: 400px;
  width: 100%;
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
}
.page-header .table {
  height: 100%;
}
.page-header .page-header-title-middle {
  margin: 0;
  text-align: center;
}
.page-header .page-header-title-left {
  margin: 0;
  text-align: center;
}
.page-header .page-header-title-left span {
  font-weight: 700;
}
.page-header .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  line-height: 100px;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.blog-page-title {
  margin-bottom: 30px;
  padding-bottom: 10px;
}
/* Blog Item */
.sidebarfixed {
  position: fixed!important;
  top: 0;
}
.blog-item {
  position: relative;
  margin-bottom: 60px;
  border: 1px solid #f5f5fa;
  border-bottom: 0;
}
.blog-media {
  overflow: hidden;
  height: 200px;
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.27s ease-out;
          transition: opacity 0.27s ease-out;
}
.blog-media:hover {
  opacity: .85;
}
.blog-media .carousel {
  max-height: 400px;
}
.blog-media .blog-item-slider {
  max-height: 600px;
}
.blog-page-media {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}
.parallax-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog-media img,
.blog-media .video,
.blog-media .carousel {
  padding: 0;
}
.blog-item-q {
  background: #f5f5fa;
  margin: 1em 0;
  padding: 20px 15px;
}
.blog-item-detail {
  position: relative;
  box-shadow: 0 8px 3px -9px #706f83;
  padding: 10px 0;
  margin: 0 10px;
  text-transform: capitalize;
  font-weight: 300;
  font-size: 13px;
}
.blog-item-detail a {
  padding-right: 15px;
}
.blog-item-detail i {
  padding-right: 5px;
}
.blog-item-detail .no-padding-right {
  padding-right: 0;
}
.btn-blog-more {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 11px;
  padding-right: 0;
  letter-spacing: 2px;
  margin-right: -22px;
}
.btn-blog-more .btn-icon {
  font-size: 18px;
  vertical-align: middle;
  line-height: 0;
  padding-left: 10px;
  padding-right: 0;
  opacity: 0;
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: -webkit-transform 0.2s ease-out, opacity 0.2s ease-out;
          transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.btn-blog-more:hover .btn-icon {
  opacity: 1;
  padding-left: 10px;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
.blog-item-title-wrapper {
  padding-top: 40px;
  margin: 0 10px;
}
.blog-item-title h1 {
  margin-top: 0;
  font-weight: 300;
}
.blog-item-title span {
  font-weight: 700;
}
.post-date {
  margin: 15px 0;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 300 !important;
}
.blog-item-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}
.blog-item-body blockquote {
  padding-left: 40px;
}
.blog-page-post-title {
  font-weight: 300;
  margin: 30px 0 0 0;
}
.blog-page-post-title span {
  font-weight: 700;
}
.blog-post {
  margin-bottom: 80px;
}
.blog-post .blog-item-body {
  margin: 30px 0;
}
.blog-post .blog-item-detail {
  padding: 15px 0;
}
.article-nav {
  text-align: center;
  margin: 30px 0;
  border-top: 1px solid #ebebf5;
  border-bottom: 1px solid #ebebf5;
}
.article-nav-link {
  display: inline-block;
  padding: 30px 0;
  font-size: 18px;
  text-transform: capitalize;
}
.article-nav-link p {
  display: inline-block;
  margin: 0;
}
.article-nav-link span {
  font-weight: 700;
}
.article-nav-link i {
  font-size: 32px;
}
.widget {
  margin-bottom: 60px;
}
.widget-title {
  margin-bottom: 15px;
  margin-top: 0;
  padding: 10px;
  background-color: #f5f5fa;
  font-weight: 300;
  letter-spacing: .05em;
}
.widget-body {
  font-size: 13px;
  padding: 10px;
}
.widget-body .post-date {
  margin: 0;
}
.widget-body a {
  text-transform: capitalize;
  color: #171724;
  font-size: 1.1em;
  font-weight: 300;
}
.widget-text {
  line-height: 1.7;
}
.search-wrap {
  position: relative;
}
.search-button {
  position: absolute;
  top: 50%;
  right: 1px;
  overflow: hidden;
  width: 42px;
  height: 40px;
  line-height: 38px;
  margin-top: -20px;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
}
/* Recent Posts */
.widget-posts-recent ul li {
  position: relative;
  margin: 0;
  padding: 8px 0;
  line-height: 1.5em;
}
.widget-posts-recent ul li span {
  display: block;
  padding-top: 3px;
  opacity: 0.85;
}
.widget-posts-recent ul i {
  position: absolute;
  top: 9px;
  left: -4px;
  font-size: 20px;
  opacity: 0.85;
}
.widget-posts-img {
  float: left;
  margin: 0 7px 0 0;
  width: 70px;
  height: auto;
}
.widget-posts-descr {
  overflow: hidden;
  text-transform: capitalize;
}
.widget-categories {
  font-size: 13px;
}
.widget-categories li {
  line-height: 1.5em;
  padding: 8px 0;
  position: relative;
}
.widget-categories li a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.widget-categories li small {
  font-size: 10px;
  color: #757a86;
}
.widget-categories li i {
  position: absolute;
  top: 9px;
  left: -4px;
  font-size: 20px;
  opacity: 0.5;
}
.tags a {
  display: inline-block;
  margin: 0 2px 5px 0;
  padding: 5px 7px;
  border: 1px solid #b8b7cb;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.default-tabs > li > a {
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: .05em;
}
.default-tabs-cont {
  padding: 30px 0 0;
  line-height: 1.8;
}
/* Comments */
.widget-comments li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5fa;
}
/* Comments */
.blog-comment-section {
  margin: 80px 0;
}
.blog-comment-section .form-message {
  margin: 0 auto;
}
li.comment-item {
  padding: 30px 0;
  border-bottom: 1px solid #ebebf5;
  margin-bottom: 5px;
}
.comment-item {
  padding: 30px 0 0 0;
  font-size: 14px;
  overflow: hidden;
}
.comment-item:first-child {
  padding-top: 0;
}
.comment-item p {
  margin-bottom: 10px;
}
.comment-item a {
  opacity: 1;
  -webkit-transition: opacity 0.27s ease-out;
          transition: opacity 0.27s ease-out;
}
.comment-item a:hover {
  opacity: .8;
}
.comment-item i {
  padding-top: 9px;
}
.comment-item-data {
  margin: 0 0 10px;
  text-transform: capitalize;
  font-size: 13px;
}
.comment-author {
  display: inline-block;
  margin-right: 20px;
  font-weight: 700;
}
.comment-avatar {
  height: 50px;
  width: 50px;
  margin-right: 10px;
  font-size: 50px;
  line-height: 50px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}
.comment-reply {
  color: #757a86;
  font-size: 13px;
}
/* Pagination */
.pagination {
  font-size: 13px;
}
.pagination a {
  display: inline-block;
  min-width: 30px;
  margin: 2px;
  padding: 7px 15px;
  border: 1px solid #b8b7cb;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.pagination a.active,
.pagination a.active:hover {
  cursor: default;
}
.pagination a i {
  vertical-align: middle;
}
.pagination .fa,
.pagination .icon {
  line-height: 21px;
  font-size: 18px;
}
/*

===============================================
===============================================
===========(( Works Pages Styles  ))===========
===============================================
===============================================

*/
.project-header {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% 50%;
}
.portfolio-nav {
  position: relative;
  border-top: 1px solid #e4e4f2;
  border-bottom: 1px solid #e4e4f2;
}
.portfolio-nav a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  color: #0c0c17;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.portfolio-nav a:hover {
  background: #f5f5fa;
}
.portfolio-nav a i {
  display: inline-block;
  font-size: 24px;
  line-height: 60px;
  height: 60px;
  vertical-align: bottom;
}
.all-works {
  border-left: 1px solid #e4e4f2;
  border-right: 1px solid #e4e4f2;
}
.all-works i {
  display: none !important;
}
.work-category-title {
  border-bottom: 1px solid #e4e4f2;
}
.category-item {
  padding: 10px 0;
  border-bottom: 1px solid #e4e4f2;
}
.middle-poster {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.middle-poster .table {
  height: 100%;
}
.related-projests li {
  padding: 30px;
}
.related-projests .video-work {
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  top: 30px;
  right: 30px;
}

/*
  ========================================
  Descargas
  ========================================
*/

#modalLogin .form-message.error{
    color: #FFF;
}

.selectDescargas{
    
}
    .selectDescargas > div{
        margin-bottom: 25px;   
    }
    .selectDescargas .header{
        background-color: transparent;  
        padding: 0px; 
    }
    .selectDescargas .header .img{
        margin-top: 25px;
    }
    .selectDescargas .header .btn{
        width: 100%;
        max-width: 100%;
    }
    .selectDescargas .header p{
        color: #2DAFDC; 
        font-weight: 600;    
    }
    
    
    
#modalFormularios{
    
}   
    #modalFormularios .titulo{
        font-size: 25px;
    }
    #modalFormularios .titulo:after{
        content: '';
        display: block;
        clear: both;
        float: none;
    }
    #modalFormularios .titulo img{
        vertical-align: middle; 
        padding-right: 15px;
        height: 83px; 
        float: left;    
    } 
    #modalFormularios .titulo span{
        display: inline-block;
        padding: 15px 10px 0 10px;
        line-height: 1.2em;
        font-weight: 400;
        text-align: center;
        color: #00b2ca;        
    } 
    #modalFormularios p a{
      color: #000;
      font-weight: 400;
      display: inline-block;
      margin-bottom: 3px;
    }
    #modalFormularios p a:hover{
      color: #00b2ca;
    }
    #modalFormularios p .fa{
        padding-right: 7px;
    }
    #modalFormularios p.list{
        padding-left: 20px;
    }
    #modalFormularios p.importante{
        padding-top: 20px;
        font-weight: normal;
        text-align: justify;
    }
    #modalFormularios p.importante span{
        color: red;
        font-weight: bold;
        
    }

    
/*
  ========================================
  Blog and Work pages background images
  ========================================
*/
.blog-background {
  background-image: url(../img/blog/blog-background.jpg);
}
.blog-post01-bg {
  background-image: url(../img/blog/blog-post01-bg.jpg);
}
.blog-post02-bg {
  background-image: url(../img/blog/blog-post02-bg.jpg);
}
.work01-bg {
  background-image: url(../img/portfolio/work01_lg.jpg);
}
.work02-bg {
  background-image: url(../img/portfolio/work02_lg.jpg);
}
.work03-bg {
  background-image: url(../img/portfolio/work03_lg.jpg);
}
.work04-bg {
  background-image: url(../img/portfolio/work04_lg.jpg);
}
.work05-bg {
  background-image: url(../img/portfolio/work05_lg.jpg);
}
.work06-bg {
  background-image: url(../img/portfolio/work06_lg.jpg);
}
.work-preview02 {
  background-image: url(../img/portfolio/work-preview02.jpg);
}
.work-preview03 {
  background-image: url(../img/portfolio/work-preview03.jpg);
}
.retina-support .blog-background {
  background-image: url("../img/blog/blog-background.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .blog-background {
    background-image: url("../img/blog/blog-background.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .blog-background {
    background-image: url("../img/blog/blog-background@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .blog-background {
    background-image: url("../img/blog/blog-background@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .blog-background {
    background-image: url("../img/blog/blog-background@lg2x.jpg");
  }
}
.retina-support .blog-post01-bg {
  background-image: url("../img/blog/blog-post01-bg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .blog-post01-bg {
    background-image: url("../img/blog/blog-post01-bg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .blog-post01-bg {
    background-image: url("../img/blog/blog-post01-bg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .blog-post01-bg {
    background-image: url("../img/blog/blog-post01-bg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .blog-post01-bg {
    background-image: url("../img/blog/blog-post01-bg@lg2x.jpg");
  }
}
.retina-support .blog-post02-bg {
  background-image: url("../img/blog/blog-post02-bg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .blog-post02-bg {
    background-image: url("../img/blog/blog-post02-bg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .blog-post02-bg {
    background-image: url("../img/blog/blog-post02-bg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .blog-post02-bg {
    background-image: url("../img/blog/blog-post02-bg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .blog-post02-bg {
    background-image: url("../img/blog/blog-post02-bg@lg2x.jpg");
  }
}
.retina-support .work01-bg {
  background-image: url("../img/portfolio/work01_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work01-bg {
    background-image: url("../img/portfolio/work01_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work01-bg {
    background-image: url("../img/portfolio/work01_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work01-bg {
    background-image: url("../img/portfolio/work01_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work01-bg {
    background-image: url("../img/portfolio/work01_lg@lg2x.jpg");
  }
}
.retina-support .work02-bg {
  background-image: url("../img/portfolio/work02_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work02-bg {
    background-image: url("../img/portfolio/work02_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work02-bg {
    background-image: url("../img/portfolio/work02_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work02-bg {
    background-image: url("../img/portfolio/work02_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work02-bg {
    background-image: url("../img/portfolio/work02_lg@lg2x.jpg");
  }
}
.retina-support .work03-bg {
  background-image: url("../img/portfolio/work03_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work03-bg {
    background-image: url("../img/portfolio/work03_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work03-bg {
    background-image: url("../img/portfolio/work03_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work03-bg {
    background-image: url("../img/portfolio/work03_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work03-bg {
    background-image: url("../img/portfolio/work03_lg@lg2x.jpg");
  }
}
.retina-support .work04-bg {
  background-image: url("../img/portfolio/work04_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work04-bg {
    background-image: url("../img/portfolio/work04_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work04-bg {
    background-image: url("../img/portfolio/work04_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work04-bg {
    background-image: url("../img/portfolio/work04_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work04-bg {
    background-image: url("../img/portfolio/work04_lg@lg2x.jpg");
  }
}
.retina-support .work05-bg {
  background-image: url("../img/portfolio/work05_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work05-bg {
    background-image: url("../img/portfolio/work05_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work05-bg {
    background-image: url("../img/portfolio/work05_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work05-bg {
    background-image: url("../img/portfolio/work05_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work05-bg {
    background-image: url("../img/portfolio/work05_lg@lg2x.jpg");
  }
}
.retina-support .work06-bg {
  background-image: url("../img/portfolio/work06_lg.jpg");
}
@media only screen and (min-device-width: 320px) {
  .retina-support .work06-bg {
    background-image: url("../img/portfolio/work06_lg.jpg");
  }
}
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4), (min--moz-device-pixel-ratio: 2.4), (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
  .retina-support .work06-bg {
    background-image: url("../img/portfolio/work06_lg@2x.jpg");
  }
}
@media only screen and (min-device-width: 1200px) {
  .retina-support .work06-bg {
    background-image: url("../img/portfolio/work06_lg@lg.jpg");
  }
}
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .retina-support .work06-bg {
    background-image: url("../img/portfolio/work06_lg@lg2x.jpg");
  }
}
/*
  ========================================
  Generic Layout Classes --( set 02 )--
  ========================================
*/
.position-relative {
  position: relative;
}
.position-fixed {
  position: fixed;
}
.inline-block {
  display: inline-block !important;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.full-screen {
  height: 100vh;
  width: 100%;
  /* Foloowing hacks are due to buggy behavior of the "vh" unit in iOS7 */
  /* iPad in portrait*/
  /* iPad in landscape */
  /* iPhone 5 & 5S in portrait */
  /* iPhone 5 & 5S in landscape */
  /* iPhone 2G-4S in portrait */
  /* iPhone 2G-4S in landscape */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .full-screen {
    height: 1024px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .full-screen {
    height: 768px;
  }
}
@media only screen and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  .full-screen {
    height: 568px;
  }
}
@media only screen and (device-aspect-ratio: 40/71) and (orientation: landscape) {
  .full-screen {
    height: 320px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: portrait) {
  .full-screen {
    height: 480px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: landscape) {
  .full-screen {
    height: 320px;
  }
}
.half-height {
  height: 78vh !important;
  width: 100%;
  /* iPad in portrait*/
  /* iPad in landscape */
  /* iPhone 5 & 5S in portrait */
  /* iPhone 5 & 5S in landscape */
  /* iPhone 2G-4S in portrait */
  /* iPhone 2G-4S in landscape */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .half-height {
    height: 799px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .half-height {
    height: 600px;
  }
}
@media only screen and (device-aspect-ratio: 40/71) and (orientation: portrait) {
  .half-height {
    height: 444px;
  }
}
@media only screen and (device-aspect-ratio: 40/71) and (orientation: landscape) {
  .half-height {
    height: 250px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: portrait) {
  .half-height {
    height: 374px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: landscape) {
  .half-height {
    height: 250px;
  }
}
/*************************************************************/
/*********************** Generic Styles **********************/
/*************************************************************/
.no-margin {
  margin: 0;
}
.no-margin-left {
  margin-left: 0;
}
.no-margin-top {
  margin-top: 0;
}
.no-margin-right {
  margin-right: 0;
}
.no-margin-bottom {
  margin-bottom: 0;
}
.margin-5 {
  margin: 5px;
}
.margin-left-5 {
  margin-left: 5px;
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-right-5 {
  margin-right: 5px;
}
.margin-bottom-5 {
  margin-bottom: 5px;
}
.margin-10 {
  margin: 10px;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-15 {
  margin: 15px;
}
.margin-left-15 {
  margin-left: 15px;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-right-15 {
  margin-right: 15px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-20 {
  margin: 20px;
}
.margin-left-20 {
  margin-left: 20px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-right-20 {
  margin-right: 20px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-30 {
  margin: 30px;
}
.margin-left-30 {
  margin-left: 30px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-right-30 {
  margin-right: 30px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-40 {
  margin: 40px;
}
.margin-left-40 {
  margin-left: 40px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-right-40 {
  margin-right: 40px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-50 {
  margin: 50px;
}
.margin-left-50 {
  margin-left: 50px;
}
.margin-top-50 {
  margin-top: 50px;
}
.margin-right-50 {
  margin-right: 50px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-60 {
  margin: 60px;
}
.margin-left-60 {
  margin-left: 60px;
}
.margin-top-60 {
  margin-top: 60px;
}
.margin-right-60 {
  margin-right: 60px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-70 {
  margin: 70px;
}
.margin-left-70 {
  margin-left: 70px;
}
.margin-top-70 {
  margin-top: 70px;
}
.margin-right-70 {
  margin-right: 70px;
}
.margin-bottom-70 {
  margin-bottom: 70px;
}
.margin-80 {
  margin: 80px;
}
.margin-left-80 {
  margin-left: 80px;
}
.margin-top-80 {
  margin-top: 80px;
}
.margin-right-80 {
  margin-right: 80px;
}
.margin-bottom-80 {
  margin-bottom: 80px;
}
.margin-90 {
  margin: 90px;
}
.margin-left-90 {
  margin-left: 90px;
}
.margin-top-90 {
  margin-top: 90px;
}
.margin-right-90 {
  margin-right: 90px;
}
.margin-bottom-90 {
  margin-bottom: 90px;
}
.margin-100 {
  margin: 100px;
}
.margin-left-100 {
  margin-left: 100px;
}
.margin-top-100 {
  margin-top: 100px;
}
.margin-right-100 {
  margin-right: 100px;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .no-margin-xs {
    margin: 0;
  }
  .no-margin-xs-left {
    margin-left: 0;
  }
  .no-margin-xs-top {
    margin-top: 0;
  }
  .no-margin-xs-right {
    margin-right: 0;
  }
  .no-margin-xs-bottom {
    margin-bottom: 0;
  }
  .margin-xs-5 {
    margin: 5px;
  }
  .margin-left-xs-5 {
    margin-left: 5px;
  }
  .margin-top-xs-5 {
    margin-top: 5px;
  }
  .margin-right-xs-5 {
    margin-right: 5px;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5px;
  }
  .margin-xs-10 {
    margin: 10px;
  }
  .margin-left-xs-10 {
    margin-left: 10px;
  }
  .margin-top-xs-10 {
    margin-top: 10px;
  }
  .margin-right-xs-10 {
    margin-right: 10px;
  }
  .margin-bottom-xs-10 {
    margin-bottom: 10px;
  }
  .margin-xs-15 {
    margin: 15px;
  }
  .margin-left-xs-15 {
    margin-left: 15px;
  }
  .margin-top-xs-15 {
    margin-top: 15px;
  }
  .margin-right-xs-15 {
    margin-right: 15px;
  }
  .margin-bottom-xs-15 {
    margin-bottom: 15px;
  }
  .margin-xs-20 {
    margin: 20px;
  }
  .margin-left-xs-20 {
    margin-left: 20px;
  }
  .margin-top-xs-20 {
    margin-top: 20px;
  }
  .margin-right-xs-20 {
    margin-right: 20px;
  }
  .margin-bottom-xs-20 {
    margin-bottom: 20px;
  }
  .margin-xs-30 {
    margin: 30px;
  }
  .margin-left-xs-30 {
    margin-left: 30px;
  }
  .margin-top-xs-30 {
    margin-top: 30px;
  }
  .margin-right-xs-30 {
    margin-right: 30px;
  }
  .margin-bottom-xs-30 {
    margin-bottom: 30px;
  }
  .margin-xs-40 {
    margin: 40px;
  }
  .margin-left-xs-40 {
    margin-left: 40px;
  }
  .margin-top-xs-40 {
    margin-top: 40px;
  }
  .margin-right-xs-40 {
    margin-right: 40px;
  }
  .margin-bottom-xs-40 {
    margin-bottom: 40px;
  }
  .margin-xs-50 {
    margin: 50px;
  }
  .margin-left-xs-50 {
    margin-left: 50px;
  }
  .margin-top-xs-50 {
    margin-top: 50px;
  }
  .margin-right-xs-50 {
    margin-right: 50px;
  }
  .margin-bottom-xs-50 {
    margin-bottom: 50px;
  }
  .margin-xs-60 {
    margin: 60px;
  }
  .margin-left-xs-60 {
    margin-left: 60px;
  }
  .margin-top-xs-60 {
    margin-top: 60px;
  }
  .margin-right-xs-60 {
    margin-right: 60px;
  }
  .margin-bottom-xs-60 {
    margin-bottom: 60px;
  }
  .margin-xs-70 {
    margin: 70px;
  }
  .margin-left-xs-70 {
    margin-left: 70px;
  }
  .margin-top-xs-70 {
    margin-top: 70px;
  }
  .margin-right-xs-70 {
    margin-right: 70px;
  }
  .margin-bottom-xs-70 {
    margin-bottom: 70px;
  }
  .margin-xs-80 {
    margin: 80px;
  }
  .margin-left-xs-80 {
    margin-left: 80px;
  }
  .margin-top-xs-80 {
    margin-top: 80px;
  }
  .margin-right-xs-80 {
    margin-right: 80px;
  }
  .margin-bottom-xs-80 {
    margin-bottom: 80px;
  }
  .margin-xs-90 {
    margin: 90px;
  }
  .margin-left-xs-90 {
    margin-left: 90px;
  }
  .margin-top-xs-90 {
    margin-top: 90px;
  }
  .margin-right-xs-90 {
    margin-right: 90px;
  }
  .margin-bottom-xs-90 {
    margin-bottom: 90px;
  }
  .margin-xs-100 {
    margin: 100px;
  }
  .margin-left-xs-100 {
    margin-left: 100px;
  }
  .margin-top-xs-100 {
    margin-top: 100px;
  }
  .margin-right-xs-100 {
    margin-right: 100px;
  }
  .margin-bottom-xs-100 {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .no-margin-sm {
    margin: 0;
  }
  .no-margin-sm-left {
    margin-left: 0;
  }
  .no-margin-sm-top {
    margin-top: 0;
  }
  .no-margin-sm-right {
    margin-right: 0;
  }
  .no-margin-sm-bottom {
    margin-bottom: 0;
  }
  .margin-sm-5 {
    margin: 5px;
  }
  .margin-left-sm-5 {
    margin-left: 5px;
  }
  .margin-top-sm-5 {
    margin-top: 5px;
  }
  .margin-right-sm-5 {
    margin-right: 5px;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5px;
  }
  .margin-sm-10 {
    margin: 10px;
  }
  .margin-left-sm-10 {
    margin-left: 10px;
  }
  .margin-top-sm-10 {
    margin-top: 10px;
  }
  .margin-right-sm-10 {
    margin-right: 10px;
  }
  .margin-bottom-sm-10 {
    margin-bottom: 10px;
  }
  .margin-sm-15 {
    margin: 15px;
  }
  .margin-left-sm-15 {
    margin-left: 15px;
  }
  .margin-top-sm-15 {
    margin-top: 15px;
  }
  .margin-right-sm-15 {
    margin-right: 15px;
  }
  .margin-bottom-sm-15 {
    margin-bottom: 15px;
  }
  .margin-sm-20 {
    margin: 20px;
  }
  .margin-left-sm-20 {
    margin-left: 20px;
  }
  .margin-top-sm-20 {
    margin-top: 20px;
  }
  .margin-right-sm-20 {
    margin-right: 20px;
  }
  .margin-bottom-sm-20 {
    margin-bottom: 20px;
  }
  .margin-sm-30 {
    margin: 30px;
  }
  .margin-left-sm-30 {
    margin-left: 30px;
  }
  .margin-top-sm-30 {
    margin-top: 30px;
  }
  .margin-right-sm-30 {
    margin-right: 30px;
  }
  .margin-bottom-sm-30 {
    margin-bottom: 30px;
  }
  .margin-sm-40 {
    margin: 40px;
  }
  .margin-left-sm-40 {
    margin-left: 40px;
  }
  .margin-top-sm-40 {
    margin-top: 40px;
  }
  .margin-right-sm-40 {
    margin-right: 40px;
  }
  .margin-bottom-sm-40 {
    margin-bottom: 40px;
  }
  .margin-sm-50 {
    margin: 50px;
  }
  .margin-left-sm-50 {
    margin-left: 50px;
  }
  .margin-top-sm-50 {
    margin-top: 50px;
  }
  .margin-right-sm-50 {
    margin-right: 50px;
  }
  .margin-bottom-sm-50 {
    margin-bottom: 50px;
  }
  .margin-sm-60 {
    margin: 60px;
  }
  .margin-left-sm-60 {
    margin-left: 60px;
  }
  .margin-top-sm-60 {
    margin-top: 60px;
  }
  .margin-right-sm-60 {
    margin-right: 60px;
  }
  .margin-bottom-sm-60 {
    margin-bottom: 60px;
  }
  .margin-sm-70 {
    margin: 70px;
  }
  .margin-left-sm-70 {
    margin-left: 70px;
  }
  .margin-top-sm-70 {
    margin-top: 70px;
  }
  .margin-right-sm-70 {
    margin-right: 70px;
  }
  .margin-bottom-sm-70 {
    margin-bottom: 70px;
  }
  .margin-sm-80 {
    margin: 80px;
  }
  .margin-left-sm-80 {
    margin-left: 80px;
  }
  .margin-top-sm-80 {
    margin-top: 80px;
  }
  .margin-right-sm-80 {
    margin-right: 80px;
  }
  .margin-bottom-sm-80 {
    margin-bottom: 80px;
  }
  .margin-sm-90 {
    margin: 90px;
  }
  .margin-left-sm-90 {
    margin-left: 90px;
  }
  .margin-top-sm-90 {
    margin-top: 90px;
  }
  .margin-right-sm-90 {
    margin-right: 90px;
  }
  .margin-bottom-sm-90 {
    margin-bottom: 90px;
  }
  .margin-sm-100 {
    margin: 100px;
  }
  .margin-left-sm-100 {
    margin-left: 100px;
  }
  .margin-top-sm-100 {
    margin-top: 100px;
  }
  .margin-right-sm-100 {
    margin-right: 100px;
  }
  .margin-bottom-sm-100 {
    margin-bottom: 100px;
  }
  .margin-sm-110 {
    margin: 110px;
  }
  .margin-left-sm-110 {
    margin-left: 110px;
  }
  .margin-top-sm-110 {
    margin-top: 110px;
  }
  .margin-right-sm-110 {
    margin-right: 110px;
  }
  .margin-bottom-sm-110 {
    margin-bottom: 110px;
  }
}
@media (min-width: 992px) {
  .no-margin-md {
    margin: 0;
  }
  .no-margin-md-left {
    margin-left: 0;
  }
  .no-margin-md-top {
    margin-top: 0;
  }
  .no-margin-md-right {
    margin-right: 0;
  }
  .no-margin-md-bottom {
    margin-bottom: 0;
  }
  .margin-md-5 {
    margin: 5px;
  }
  .margin-left-md-5 {
    margin-left: 5px;
  }
  .margin-top-md-5 {
    margin-top: 5px;
  }
  .margin-right-md-5 {
    margin-right: 5px;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5px;
  }
  .margin-md-10 {
    margin: 10px;
  }
  .margin-left-md-10 {
    margin-left: 10px;
  }
  .margin-top-md-10 {
    margin-top: 10px;
  }
  .margin-right-md-10 {
    margin-right: 10px;
  }
  .margin-bottom-md-10 {
    margin-bottom: 10px;
  }
  .margin-md-15 {
    margin: 15px;
  }
  .margin-left-md-15 {
    margin-left: 15px;
  }
  .margin-top-md-15 {
    margin-top: 15px;
  }
  .margin-right-md-15 {
    margin-right: 15px;
  }
  .margin-bottom-md-15 {
    margin-bottom: 15px;
  }
  .margin-md-20 {
    margin: 20px;
  }
  .margin-left-md-20 {
    margin-left: 20px;
  }
  .margin-top-md-20 {
    margin-top: 20px;
  }
  .margin-right-md-20 {
    margin-right: 20px;
  }
  .margin-bottom-md-20 {
    margin-bottom: 20px;
  }
  .margin-md-30 {
    margin: 30px;
  }
  .margin-left-md-30 {
    margin-left: 30px;
  }
  .margin-top-md-30 {
    margin-top: 30px;
  }
  .margin-right-md-30 {
    margin-right: 30px;
  }
  .margin-bottom-md-30 {
    margin-bottom: 30px;
  }
  .margin-md-40 {
    margin: 40px;
  }
  .margin-left-md-40 {
    margin-left: 40px;
  }
  .margin-top-md-40 {
    margin-top: 40px;
  }
  .margin-right-md-40 {
    margin-right: 40px;
  }
  .margin-bottom-md-40 {
    margin-bottom: 40px;
  }
  .margin-md-50 {
    margin: 50px;
  }
  .margin-left-md-50 {
    margin-left: 50px;
  }
  .margin-top-md-50 {
    margin-top: 50px;
  }
  .margin-right-md-50 {
    margin-right: 50px;
  }
  .margin-bottom-md-50 {
    margin-bottom: 50px;
  }
  .margin-md-60 {
    margin: 60px;
  }
  .margin-left-md-60 {
    margin-left: 60px;
  }
  .margin-top-md-60 {
    margin-top: 60px;
  }
  .margin-right-md-60 {
    margin-right: 60px;
  }
  .margin-bottom-md-60 {
    margin-bottom: 60px;
  }
  .margin-md-60 {
    margin: 60px;
  }
  .margin-left-md-60 {
    margin-left: 60px;
  }
  .margin-top-md-60 {
    margin-top: 60px;
  }
  .margin-right-md-60 {
    margin-right: 60px;
  }
  .margin-bottom-md-60 {
    margin-bottom: 60px;
  }
  .margin-md-80 {
    margin: 80px;
  }
  .margin-left-md-80 {
    margin-left: 80px;
  }
  .margin-top-md-80 {
    margin-top: 80px;
  }
  .margin-right-md-80 {
    margin-right: 80px;
  }
  .margin-bottom-md-80 {
    margin-bottom: 80px;
  }
  .margin-md-90 {
    margin: 90px;
  }
  .margin-left-md-90 {
    margin-left: 90px;
  }
  .margin-top-md-90 {
    margin-top: 90px;
  }
  .margin-right-md-90 {
    margin-right: 90px;
  }
  .margin-bottom-md-90 {
    margin-bottom: 90px;
  }
  .margin-md-100 {
    margin: 100px;
  }
  .margin-left-md-100 {
    margin-left: 100px;
  }
  .margin-top-md-100 {
    margin-top: 100px;
  }
  .margin-right-md-100 {
    margin-right: 100px;
  }
  .margin-bottom-md-100 {
    margin-bottom: 100px;
  }
}
.no-padding {
  padding: 0;
}
.no-padding-left {
  padding-left: 0;
}
.no-padding-top {
  padding-top: 0;
}
.no-padding-right {
  padding-right: 0;
}
.no-padding-bottom {
  padding-bottom: 0;
}
.padding-5 {
  padding: 5px;
}
.padding-left-5 {
  padding-left: 5px;
}
.padding-top-5 {
  padding-top: 5px;
}
.padding-right-5 {
  padding-right: 5px;
}
.padding-bottom-5 {
  padding-bottom: 5px;
}
.padding-10 {
  padding: 10px;
}
.padding-left-10 {
  padding-left: 10px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-right-10 {
  padding-right: 10px;
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-15 {
  padding: 15px;
}
.padding-left-15 {
  padding-left: 15px;
}
.padding-top-15 {
  padding-top: 15px;
}
.padding-right-15 {
  padding-right: 15px;
}
.padding-bottom-15 {
  padding-bottom: 15px;
}
.padding-20 {
  padding: 20px;
}
.padding-left-20 {
  padding-left: 20px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-right-20 {
  padding-right: 20px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.padding-30 {
  padding: 30px;
}
.padding-left-30 {
  padding-left: 30px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-right-30 {
  padding-right: 30px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.padding-40 {
  padding: 40px;
}
.padding-left-40 {
  padding-left: 40px;
}
.padding-top-40 {
  padding-top: 40px;
}
.padding-right-40 {
  padding-right: 40px;
}
.padding-bottom-40 {
  padding-bottom: 40px;
}
.padding-50 {
  padding: 50px;
}
.padding-left-50 {
  padding-left: 50px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-right-50 {
  padding-right: 50px;
}
.padding-bottom-50 {
  padding-bottom: 50px;
}
.padding-60 {
  padding: 60px;
}
.padding-left-60 {
  padding-left: 60px;
}
.padding-top-60 {
  padding-top: 60px;
}
.padding-right-60 {
  padding-right: 60px;
}
.padding-bottom-60 {
  padding-bottom: 60px;
}
.padding-70 {
  padding: 70px;
}
.padding-left-70 {
  padding-left: 70px;
}
.padding-top-70 {
  padding-top: 70px;
}
.padding-right-70 {
  padding-right: 70px;
}
.padding-bottom-70 {
  padding-bottom: 70px;
}
.padding-80 {
  padding: 80px;
}
.padding-left-80 {
  padding-left: 80px;
}
.padding-top-80 {
  padding-top: 80px;
}
.padding-right-80 {
  padding-right: 80px;
}
.padding-bottom-80 {
  padding-bottom: 80px;
}
.padding-90 {
  padding: 90px;
}
.padding-left-90 {
  padding-left: 90px;
}
.padding-top-90 {
  padding-top: 90px;
}
.padding-right-90 {
  padding-right: 90px;
}
.padding-bottom-90 {
  padding-bottom: 90px;
}
.padding-100 {
  padding: 100px;
}
.padding-left-100 {
  padding-left: 100px;
}
.padding-top-100 {
  padding-top: 100px;
}
.padding-right-100 {
  padding-right: 100px;
}
.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .no-padding-xs {
    padding: 0;
  }
  .no-padding-xs-left {
    padding-left: 0;
  }
  .no-padding-xs-top {
    padding-top: 0;
  }
  .no-padding-xs-right {
    padding-right: 0;
  }
  .no-padding-xs-bottom {
    padding-bottom: 0;
  }
  .padding-xs-5 {
    padding: 5px;
  }
  .padding-left-xs-5 {
    padding-left: 5px;
  }
  .padding-top-xs-5 {
    padding-top: 5px;
  }
  .padding-right-xs-5 {
    padding-right: 5px;
  }
  .padding-bottom-xs-5 {
    padding-bottom: 5px;
  }
  .padding-xs-10 {
    padding: 10px;
  }
  .padding-left-xs-10 {
    padding-left: 10px;
  }
  .padding-top-xs-10 {
    padding-top: 10px;
  }
  .padding-right-xs-10 {
    padding-right: 10px;
  }
  .padding-bottom-xs-10 {
    padding-bottom: 10px;
  }
  .padding-xs-15 {
    padding: 15px;
  }
  .padding-left-xs-15 {
    padding-left: 15px;
  }
  .padding-top-xs-15 {
    padding-top: 15px;
  }
  .padding-right-xs-15 {
    padding-right: 15px;
  }
  .padding-bottom-xs-15 {
    padding-bottom: 15px;
  }
  .padding-xs-20 {
    padding: 20px;
  }
  .padding-left-xs-20 {
    padding-left: 20px;
  }
  .padding-top-xs-20 {
    padding-top: 20px;
  }
  .padding-right-xs-20 {
    padding-right: 20px;
  }
  .padding-bottom-xs-20 {
    padding-bottom: 20px;
  }
  .padding-xs-30 {
    padding: 30px;
  }
  .padding-left-xs-30 {
    padding-left: 30px;
  }
  .padding-top-xs-30 {
    padding-top: 30px;
  }
  .padding-right-xs-30 {
    padding-right: 30px;
  }
  .padding-bottom-xs-30 {
    padding-bottom: 30px;
  }
  .padding-xs-40 {
    padding: 40px;
  }
  .padding-left-xs-40 {
    padding-left: 40px;
  }
  .padding-top-xs-40 {
    padding-top: 40px;
  }
  .padding-right-xs-40 {
    padding-right: 40px;
  }
  .padding-bottom-xs-40 {
    padding-bottom: 40px;
  }
  .padding-xs-50 {
    padding: 50px;
  }
  .padding-left-xs-50 {
    padding-left: 50px;
  }
  .padding-top-xs-50 {
    padding-top: 50px;
  }
  .padding-right-xs-50 {
    padding-right: 50px;
  }
  .padding-bottom-xs-50 {
    padding-bottom: 50px;
  }
  .padding-xs-60 {
    padding: 60px;
  }
  .padding-left-xs-60 {
    padding-left: 60px;
  }
  .padding-top-xs-60 {
    padding-top: 60px;
  }
  .padding-right-xs-60 {
    padding-right: 60px;
  }
  .padding-bottom-xs-60 {
    padding-bottom: 60px;
  }
  .padding-xs-70 {
    padding: 70px;
  }
  .padding-left-xs-70 {
    padding-left: 70px;
  }
  .padding-top-xs-70 {
    padding-top: 70px;
  }
  .padding-right-xs-70 {
    padding-right: 70px;
  }
  .padding-bottom-xs-70 {
    padding-bottom: 70px;
  }
  .padding-xs-80 {
    padding: 80px;
  }
  .padding-left-xs-80 {
    padding-left: 80px;
  }
  .padding-top-xs-80 {
    padding-top: 80px;
  }
  .padding-right-xs-80 {
    padding-right: 80px;
  }
  .padding-bottom-xs-80 {
    padding-bottom: 80px;
  }
  .padding-xs-90 {
    padding: 90px;
  }
  .padding-left-xs-90 {
    padding-left: 90px;
  }
  .padding-top-xs-90 {
    padding-top: 90px;
  }
  .padding-right-xs-90 {
    padding-right: 90px;
  }
  .padding-bottom-xs-90 {
    padding-bottom: 90px;
  }
  .padding-xs-100 {
    padding: 100px;
  }
  .padding-left-xs-100 {
    padding-left: 100px;
  }
  .padding-top-xs-100 {
    padding-top: 100px;
  }
  .padding-right-xs-100 {
    padding-right: 100px;
  }
  .padding-bottom-xs-100 {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .no-padding-sm {
    padding: 0;
  }
  .no-padding-sm-left {
    padding-left: 0;
  }
  .no-padding-sm-top {
    padding-top: 0;
  }
  .no-padding-sm-right {
    padding-right: 0;
  }
  .no-padding-sm-bottom {
    padding-bottom: 0;
  }
  .padding-sm-5 {
    padding: 5px;
  }
  .padding-left-sm-5 {
    padding-left: 5px;
  }
  .padding-top-sm-5 {
    padding-top: 5px;
  }
  .padding-right-sm-5 {
    padding-right: 5px;
  }
  .padding-bottom-sm-5 {
    padding-bottom: 5px;
  }
  .padding-sm-10 {
    padding: 10px;
  }
  .padding-left-sm-10 {
    padding-left: 10px;
  }
  .padding-top-sm-10 {
    padding-top: 10px;
  }
  .padding-right-sm-10 {
    padding-right: 10px;
  }
  .padding-bottom-sm-10 {
    padding-bottom: 10px;
  }
  .padding-sm-15 {
    padding: 15px;
  }
  .padding-left-sm-15 {
    padding-left: 15px;
  }
  .padding-top-sm-15 {
    padding-top: 15px;
  }
  .padding-right-sm-15 {
    padding-right: 15px;
  }
  .padding-bottom-sm-15 {
    padding-bottom: 15px;
  }
  .padding-sm-20 {
    padding: 20px;
  }
  .padding-left-sm-20 {
    padding-left: 20px;
  }
  .padding-top-sm-20 {
    padding-top: 20px;
  }
  .padding-right-sm-20 {
    padding-right: 20px;
  }
  .padding-bottom-sm-20 {
    padding-bottom: 20px;
  }
  .padding-sm-30 {
    padding: 30px;
  }
  .padding-left-sm-30 {
    padding-left: 30px;
  }
  .padding-top-sm-30 {
    padding-top: 30px;
  }
  .padding-right-sm-30 {
    padding-right: 30px;
  }
  .padding-bottom-sm-30 {
    padding-bottom: 30px;
  }
  .padding-sm-40 {
    padding: 40px;
  }
  .padding-left-sm-40 {
    padding-left: 40px;
  }
  .padding-top-sm-40 {
    padding-top: 40px;
  }
  .padding-right-sm-40 {
    padding-right: 40px;
  }
  .padding-bottom-sm-40 {
    padding-bottom: 40px;
  }
  .padding-sm-50 {
    padding: 50px;
  }
  .padding-left-sm-50 {
    padding-left: 50px;
  }
  .padding-top-sm-50 {
    padding-top: 50px;
  }
  .padding-right-sm-50 {
    padding-right: 50px;
  }
  .padding-bottom-sm-50 {
    padding-bottom: 50px;
  }
  .padding-sm-60 {
    padding: 60px;
  }
  .padding-left-sm-60 {
    padding-left: 60px;
  }
  .padding-top-sm-60 {
    padding-top: 60px;
  }
  .padding-right-sm-60 {
    padding-right: 60px;
  }
  .padding-bottom-sm-60 {
    padding-bottom: 60px;
  }
  .padding-sm-70 {
    padding: 70px;
  }
  .padding-left-sm-70 {
    padding-left: 70px;
  }
  .padding-top-sm-70 {
    padding-top: 70px;
  }
  .padding-right-sm-70 {
    padding-right: 70px;
  }
  .padding-bottom-sm-70 {
    padding-bottom: 70px;
  }
  .padding-sm-80 {
    padding: 80px;
  }
  .padding-left-sm-80 {
    padding-left: 80px;
  }
  .padding-top-sm-80 {
    padding-top: 80px;
  }
  .padding-right-sm-80 {
    padding-right: 80px;
  }
  .padding-bottom-sm-80 {
    padding-bottom: 80px;
  }
  .padding-sm-90 {
    padding: 90px;
  }
  .padding-left-sm-90 {
    padding-left: 90px;
  }
  .padding-top-sm-90 {
    padding-top: 90px;
  }
  .padding-right-sm-90 {
    padding-right: 90px;
  }
  .padding-bottom-sm-90 {
    padding-bottom: 90px;
  }
  .padding-sm-100 {
    padding: 100px;
  }
  .padding-left-sm-100 {
    padding-left: 100px;
  }
  .padding-top-sm-100 {
    padding-top: 100px;
  }
  .padding-right-sm-100 {
    padding-right: 100px;
  }
  .padding-bottom-sm-100 {
    padding-bottom: 100px;
  }
  .padding-sm-150 {
    padding: 150px;
  }
  .padding-left-sm-150 {
    padding-left: 150px;
  }
  .padding-top-sm-150 {
    padding-top: 150px;
  }
  .padding-right-sm-150 {
    padding-right: 150px;
  }
  .padding-bottom-sm-150 {
    padding-bottom: 150px;
  }
}
@media (min-width: 992px) {
  .no-padding-md {
    padding: 0;
  }
  .no-padding-md-left {
    padding-left: 0;
  }
  .no-padding-md-top {
    padding-top: 0;
  }
  .no-padding-md-right {
    padding-right: 0;
  }
  .no-padding-md-bottom {
    padding-bottom: 0;
  }
  .padding-md-5 {
    padding: 5px;
  }
  .padding-left-md-5 {
    padding-left: 5px;
  }
  .padding-top-md-5 {
    padding-top: 5px;
  }
  .padding-right-md-5 {
    padding-right: 5px;
  }
  .padding-bottom-md-5 {
    padding-bottom: 5px;
  }
  .padding-md-10 {
    padding: 10px;
  }
  .padding-left-md-10 {
    padding-left: 10px;
  }
  .padding-top-md-10 {
    padding-top: 10px;
  }
  .padding-right-md-10 {
    padding-right: 10px;
  }
  .padding-bottom-md-10 {
    padding-bottom: 10px;
  }
  .padding-md-15 {
    padding: 15px;
  }
  .padding-left-md-15 {
    padding-left: 15px;
  }
  .padding-top-md-15 {
    padding-top: 15px;
  }
  .padding-right-md-15 {
    padding-right: 15px;
  }
  .padding-bottom-md-15 {
    padding-bottom: 15px;
  }
  .padding-md-20 {
    padding: 20px;
  }
  .padding-left-md-20 {
    padding-left: 20px;
  }
  .padding-top-md-20 {
    padding-top: 20px;
  }
  .padding-right-md-20 {
    padding-right: 20px;
  }
  .padding-bottom-md-20 {
    padding-bottom: 20px;
  }
  .padding-md-30 {
    padding: 30px;
  }
  .padding-left-md-30 {
    padding-left: 30px;
  }
  .padding-top-md-30 {
    padding-top: 30px;
  }
  .padding-right-md-30 {
    padding-right: 30px;
  }
  .padding-bottom-md-30 {
    padding-bottom: 30px;
  }
  .padding-md-40 {
    padding: 40px;
  }
  .padding-left-md-40 {
    padding-left: 40px;
  }
  .padding-top-md-40 {
    padding-top: 40px;
  }
  .padding-right-md-40 {
    padding-right: 40px;
  }
  .padding-bottom-md-40 {
    padding-bottom: 40px;
  }
  .padding-md-50 {
    padding: 50px;
  }
  .padding-left-md-50 {
    padding-left: 50px;
  }
  .padding-top-md-50 {
    padding-top: 50px;
  }
  .padding-right-md-50 {
    padding-right: 50px;
  }
  .padding-bottom-md-50 {
    padding-bottom: 50px;
  }
  .padding-md-60 {
    padding: 60px;
  }
  .padding-left-md-60 {
    padding-left: 60px;
  }
  .padding-top-md-60 {
    padding-top: 60px;
  }
  .padding-right-md-60 {
    padding-right: 60px;
  }
  .padding-bottom-md-60 {
    padding-bottom: 60px;
  }
  .padding-md-70 {
    padding: 70px;
  }
  .padding-left-md-70 {
    padding-left: 70px;
  }
  .padding-top-md-70 {
    padding-top: 70px;
  }
  .padding-right-md-70 {
    padding-right: 70px;
  }
  .padding-bottom-md-70 {
    padding-bottom: 70px;
  }
  .padding-md-80 {
    padding: 80px;
  }
  .padding-left-md-80 {
    padding-left: 80px;
  }
  .padding-top-md-80 {
    padding-top: 80px;
  }
  .padding-right-md-80 {
    padding-right: 80px;
  }
  .padding-bottom-md-80 {
    padding-bottom: 80px;
  }
  .padding-md-90 {
    padding: 90px;
  }
  .padding-left-md-90 {
    padding-left: 90px;
  }
  .padding-top-md-90 {
    padding-top: 90px;
  }
  .padding-right-md-90 {
    padding-right: 90px;
  }
  .padding-bottom-md-90 {
    padding-bottom: 90px;
  }
  .padding-md-100 {
    padding: 100px;
  }
  .padding-left-md-100 {
    padding-left: 100px;
  }
  .padding-top-md-100 {
    padding-top: 100px;
  }
  .padding-right-md-100 {
    padding-right: 100px;
  }
  .padding-bottom-md-100 {
    padding-bottom: 100px;
  }
}
/*  
    Responsive styles
    --------------
    Contents
    ========
    min-width: 481px
    max-width: 767px
    min-width: 768px
    min-width: 992px
    min-width: 1200px
    max-width: 480px
    Blended
    Animation delays
*/
/*
min-width: 481px
 -------------------------
 */
@media (min-width: 481px) {
  .hs-text-2 {
    font-size: 60px;
    line-height: 1.3;
  }
  .hs-text-4 {
    font-size: 36px;
    line-height: 1.3;
  }
  .hs-text-7 {
    font-size: 48px;
    line-height: 1.4;
  }
  .hs-text-10 {
    font-size: 50px;
    line-height: 1.2;
  }
  .hs-text-11 {
    font-size: 30px;
    line-height: 1;
  }
  .hs-text-12 {
    font-size: 54px;
    line-height: 1.2;
  }
  .hs-text-14 {
    font-size: 32px;
    line-height: 1.3;
  }
  .process-labels span {
    opacity: 1;
  }
  .line-process-mood .owl-dot {
    height: 120px;
    width: 120px;
    -webkit-transform: translateX(-60px) translateY(-90px);
        -ms-transform: translateX(-60px) translateY(-90px);
            transform: translateX(-60px) translateY(-90px);
  }
  .line-process-mood .owl-dot span {
    -webkit-transform: translateX(60px) translateY(90px);
        -ms-transform: translateX(60px) translateY(90px);
            transform: translateX(60px) translateY(90px);
  }
}
/*
max-width: 767px
 -------------------------
 */
@media (max-width: 767px) {
  .navbar-nav {
    overflow: hidden;
  }
  .navbar-nav > li > a {
    line-height: 21px;
  }
  .navbar-nav > li > a:hover,
  .navbar-nav > li > a:focus {
    background-image: none;
  }
  .navbar-nav > li:first-child > a {
    padding-top: 30px;
  }
  .navbar-nav > li:last-child > a {
    padding-bottom: 30px;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
}
/*
min-width: 768px
 -------------------------
 */
@media screen and (min-width: 768px) {
  h1 {
    font-size: 1.785em;
    /* 1.785x body copy size = 25px */
  }
  h2 {
    font-size: 1.571em;
    /* 1.571x body copy size = 22px */
  }
  h3 {
    font-size: 1.357em;
    /* 1.357 body copy size = 19px */
    /* 25px / 22px */
  }
  h4 {
    font-size: 1.214em;
    /* 1.214x body copy size = 17px */
  }
  h5 {
    font-size: 1.0714em;
    /* 1.0714x body copy size = 15px */
  }
  h6 {
    font-size: 1em;
    /* 1.x body copy size = 14px */
  }
  .hs-text-2 {
    font-size: 75px;
    line-height: 1.3;
  }
  .hs-text-10 {
    font-size: 80px;
    line-height: 1.2;
  }
  .hs-text-11 {
    font-size: 75px;
    line-height: 1;
  }
  .hs-content-inner {
    padding: 0 70px;
  }
  .hs-content-inner.text-left > div {
    margin-left: 0;
  }
  .hs-content-inner.text-right > div {
    margin-right: 0;
  }
  .as-indicators {
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  /* scroll progress bar */
  #scroll-progressbar {
    display: block;
    position: absolute;
    top: 0;
    height: 2px;
    width: 100%;
    z-index: 99999;
  }
  #scroll-progressbar div {
    position: relative;
    height: 100%;
    width: 0;
    -webkit-transition: width 0.3s ease-out;
            transition: width 0.3s ease-out;
  }
  #scroll-progressbar .scroll-shadow {
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
        -ms-transform: rotate(3deg) translate(0px, -4px);
            transform: rotate(3deg) translate(0px, -4px);
  }
  /*navbar*/
  .navbar {
    border-radius: 0;
    -webkit-transition: padding 0.21s ease-out, background 0.21s ease-out, border 0.21s ease-out;
            transition: padding 0.21s ease-out, background 0.21s ease-out, border 0.21s ease-out;
  }
  .navbar .ink.animate {
    -webkit-animation: ripple 0.7s ease-out;
            animation: ripple 0.7s ease-out;
  }
  .navbar-brand {
    padding: 0 0 0 45px;
  }
  .navbar-toggle {
    margin-right: 45px;
  }
  .navbar-default .navbar-toggle:hover > .navbar-header,
  .navbar-default .navbar-toggle:focus .container > .navbar-header,
  .container-fluid > .navbar-header,
  .navbar-default .navbar-toggle:hover > .navbar-collapse,
  .navbar-default .navbar-toggle:focus .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -45px;
  }
  .navbar-nav > li > a {
    padding-top: 19.5px;
    padding-bottom: 19.5px;
  }
  .navbar-nav.navbar-right:last-child {
    margin-right: -15px;
  }
  /* Navigation links falling effect */
  .cl-effect-5 > li {
    padding-top: 19.5px;
    padding-bottom: 19.5px;
  }
  .cl-effect-5 > li > a {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  .cl-effect-5 > li > a span[data-hover] {
    position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform .4s;
            transition: transform .4s;
  }
  .cl-effect-5 > li > a span[data-hover]:before {
    position: absolute;
    top: 100%;
    font-weight: 700;
    color: #171724;
    letter-spacing: 0.5px;
    content: attr(data-hover);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: color .4s;
            transition: color .4s;
  }
  .cl-effect-5 > li > a:hover span[data-hover] {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  .cl-effect-5 > .active > a span[data-hover],
  .cl-effect-5 > .active > a:focus span[data-hover],
  .cl-effect-5 > .active > a:hover span[data-hover] {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  /* 
 Falling Carousel Indicators Style
 -------------------------
 */
  .dotstyle-fall li:after,
  .dotstyle-fall div:after {
    -webkit-transform: translate3d(0, -200%, 0);
            transform: translate3d(0, -200%, 0);
    -webkit-transition: -webkit-transform .3s ease, opacity .5s ease, visibility 0s .5s;
            transition: transform .3s ease, opacity .5s ease, visibility 0s .5s;
  }
  .dotstyle-fall li a,
  .dotstyle-fall div a,
  .dotstyle-fall li span,
  .dotstyle-fall div span {
    -webkit-transform: translate3d(0, 0%, 0);
            transform: translate3d(0, 0%, 0);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease, background-color 0.5s ease 0s;
            transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.5s ease 0s;
  }
  .dotstyle-fall li.active:after,
  .dotstyle-fall div.active:after,
  .dotstyle-fall li.current:after,
  .dotstyle-fall div.current:after {
    -webkit-transition: -webkit-transform .5s ease, opacity .5s ease;
            transition: transform .5s ease, opacity .5s ease;
    -webkit-transform: translate3d(0, 0%, 0);
            transform: translate3d(0, 0%, 0);
  }
  .dotstyle-fall li.active a,
  .dotstyle-fall div.active a,
  .dotstyle-fall li.current a,
  .dotstyle-fall div.current a,
  .dotstyle-fall li.active span,
  .dotstyle-fall div.active span,
  .dotstyle-fall li.current span,
  .dotstyle-fall div.current span {
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0);
  }
  /* 
 Filling Carousel Indicators Style
 -------------------------
 */
  .dotstyle-fill li a,
  .dotstyle-fill div a,
  .dotstyle-fill li span,
  .dotstyle-fill div span {
    -webkit-transition: box-shadow 0.5s ease-out;
            transition: box-shadow 0.5s ease-out;
  }
  .dotstyle-fill li.active a,
  .dotstyle-fill div.active a,
  .dotstyle-fill li.current a,
  .dotstyle-fill div.current a,
  .dotstyle-fill li.active span,
  .dotstyle-fill div.active span,
  .dotstyle-fill li.current span,
  .dotstyle-fill div.current span {
    -webkit-transition: box-shadow 0.5s 0.2s ease-in;
            transition: box-shadow 0.5s 0.2s ease-in;
  }
  .dotstyle-fillup li a,
  .dotstyle-fillup div a,
  .dotstyle-fillup li span,
  .dotstyle-fillup div span {
    -webkit-transition: background 0.3s ease 0s;
            transition: background 0.3s ease 0s;
  }
  .dotstyle-fillup li a:after,
  .dotstyle-fillup div a:after,
  .dotstyle-fillup li span:after,
  .dotstyle-fillup div span:after {
    -webkit-transition: width 0.27s ease-out 0s;
            transition: width 0.27s ease-out 0s;
  }
  .dotstyle-fillup.from-bottom li a:after,
  .dotstyle-fillup.from-bottom div a:after,
  .dotstyle-fillup.from-bottom li span:after,
  .dotstyle-fillup.from-bottom div span:after {
    -webkit-transition: height 0.27s ease-out 0s, opacity 0.27s ease-out 0s;
            transition: height 0.27s ease-out 0s, opacity 0.27s ease-out 0s;
  }
  .team-item-img {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  .team-item:hover .team-item-img {
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }

  .section-title {
    padding-bottom: 90px;
  }
  #about-section .section-title {
    padding-bottom: 60px;
  }
  /* Works buttons */
  .portfolio-filters .btn {
    min-width: 130px;
  }
  .portfolio-container {
    -webkit-transition: height .5s;
            transition: height .5s;
  }
  .portfolio-container.no-transition {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
  .portfolio-item-img {
    overflow: hidden;
  }
  .portfolio-item-img img {
    -webkit-transition: -webkit-transform 0.25s ease-out;
            transition: transform 0.25s ease-out;
  }
  .portfolio-item-img:after {
    -webkit-transition: opacity 0.25s ease-out;
            transition: opacity 0.25s ease-out;
  }
  .video-work:after {
    -webkit-transition: opacity 0.25s ease-out;
            transition: opacity 0.25s ease-out;
  }
  .portfolio-item .video-background {
    -webkit-transition: -webkit-transform 0.25s ease-out;
            transition: transform 0.25s ease-out;
  }
  .portfolio-item-title {
    -webkit-transition: opacity 0.25s, -webkit-transform 0.40s;
            transition: opacity 0.25s, transform 0.40s;
  }
  .portfolio-item-detail {
    -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
            transition: opacity 0.25s, transform 0.25s;
  }
  .portfolio-item-detail a {
    padding: 0 10px;
    font-size: 28px;
    display: inline;
    line-height: 1.2;
  }
  .portfolio-item:hover .portfolio-item-detail {
    -webkit-transition: opacity 0.15s, -webkit-transform 0.25s;
            transition: opacity 0.15s, transform 0.25s;
  }
  /* Process Lables */
  .process-labels span {
    -webkit-transition: opacity 0.3s ease-in;
            transition: opacity 0.3s ease-in;
  }
  .process-labels span:before,
  .process-labels .icon-shade {
    -webkit-transition: max-width 0.3s ease 0s;
            transition: max-width 0.3s ease 0s;
  }
  .process-labels .process-label-active span:before,
  .process-labels .process-label-active .icon-shade {
    -webkit-transition: max-width 0.3s ease 0.5s;
            transition: max-width 0.3s ease 0.5s;
  }
  .line-process-mood .owl-dot {
    height: 120px;
    width: 192px;
    -webkit-transform: translateX(-96px) translateY(-90px);
        -ms-transform: translateX(-96px) translateY(-90px);
            transform: translateX(-96px) translateY(-90px);
  }
  .line-process-mood .owl-dot span {
    -webkit-transform: translateX(96px) translateY(90px);
        -ms-transform: translateX(96px) translateY(90px);
            transform: translateX(96px) translateY(90px);
  }
  .line-process-mood .owl-dot span:after {
    -webkit-transition: width 0.3s ease 0s;
            transition: width 0.3s ease 0s;
  }
  .line-process-mood .owl-dot.active span:after {
    -webkit-transition: width 0.3s ease 0.5s;
            transition: width 0.3s ease 0.5s;
  }
  /* skill bars */
  .skillbar-bar {
    -webkit-transition: width 2000ms cubic-bezier(0.26, 0.765, 0.07, 1.095);
            transition: width 2000ms cubic-bezier(0.26, 0.765, 0.07, 1.095);
  }
  /*  Services Section */
  .services-section-item {
    margin-bottom: 40px;
  }
  .no-touch.cssanimations .services-section-item {
    margin-bottom: 0;
  }
  .no-touch.cssanimations .services-section-item-icon {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
            transition: transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
  }
  .no-touch.cssanimations .services-item-title {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
            transition: transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
  }
  .no-touch.cssanimations .services-section-item-text {
    opacity: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg) translate3d(0, 50px, 0);
            transform: rotate3d(1, 0, 0, -90deg) translate3d(0, 50px, 0);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.2s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0.3s;
            transition: transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.2s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0.3s;
  }
  .no-touch.cssanimations .services-section-item:hover .services-section-item-icon {
    opacity: 0;
    -webkit-transform: rotate3d(1, 0, 0, 80deg) translate3d(0, -50px, 50px);
            transform: rotate3d(1, 0, 0, 80deg) translate3d(0, -50px, 50px);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0.2s;
            transition: transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0.2s;
  }
  .no-touch.cssanimations .services-section-item:hover .services-item-title {
    -webkit-transform: translate3d(0, -75px, 0);
            transform: translate3d(0, -75px, 0);
  }
  .no-touch.cssanimations .services-section-item:hover .services-section-item-text {
    opacity: 1;
    -webkit-transform: translate3d(0, -70px, 0);
            transform: translate3d(0, -70px, 0);
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
            transition: transform 0.7s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s, opacity 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985) 0s;
  }
  /* testimonials */
  .blog-post-preview-img {
    opacity: .9;
    -webkit-transition: opacity .27s;
            transition: opacity .27s;
  }
  .blog-post-preview:hover .blog-post-preview-img {
    opacity: 1;
  }
  /* map*/
  .map-mask {
    -webkit-transition: background 0.16s ease-in, height 0.4s cubic-bezier(0.57, 1.27, 0.85, 1.13) 0.2s;
            transition: background 0.16s ease-in, height 0.4s cubic-bezier(0.57, 1.27, 0.85, 1.13) 0.2s;
  }
  #map-zoom-in,
  #map-zoom-out {
    margin-left: 50px;
  }
  #map-zoom-in {
    margin-top: 228px;
  }
  /* go top pop up*/
  .rectangle,
  .square,
  .circle1,
  .circle2 {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.565, 0.375, 0.43, 1.475) 0.3s;
            transition: transform 0.6s cubic-bezier(0.565, 0.375, 0.43, 1.475) 0.3s;
  }
  /* page header */
  .page-header .breadcrumb {
    text-align: right;
  }
  .page-header .page-header-title-left {
    text-align: left;
  }
  .navbar-nav-elastic {
    margin-top: 100px;
  }
  /* blog*/
  .blog-item {
    margin-bottom: 180px;
  }
  .blog-media {
    height: 300px;
  }
  .blog-comment-section .btn {
    margin-left: 0;
  }
  /* Works */
  .prev-proj:hover,
  .next-proj:hover {
    letter-spacing: 4px;
  }
  .all-works i {
    display: inline-block !important;
    -webkit-transform: translate3d(37px, 0, 0) rotateZ(-90deg);
            transform: translate3d(37px, 0, 0) rotateZ(-90deg);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.96, 0.62, 1.49);
            transition: transform 0.6s cubic-bezier(0.08, 0.96, 0.62, 1.49);
  }
  .all-works span {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out 0s;
            transition: opacity 0.2s ease-out 0s;
  }
  .all-works:hover i,
  .all-works:focus i {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0deg);
            transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
  .all-works:hover span,
  .all-works:focus span {
    opacity: 1;
    -webkit-transition: opacity 0.2s cubic-bezier(0.08, 0.96, 0.62, 1.49) 0.6s;
            transition: opacity 0.2s cubic-bezier(0.08, 0.96, 0.62, 1.49) 0.6s;
  }
}
/*
max-width: 480px
 -------------------------
 */
@media (max-width: 480px) {
  .team-item-social {
    padding: 10px 0;
  }
  .team-item-social li {
    margin: 0 5px;
  }
}
@media (min-width: 992px) {
  .hs-text-2 {
    font-size: 90px;
    line-height: 1.3;
  }
  .hs-text-9 {
    font-size: 90px;
    line-height: 1.8;
  }
  .hs-text-11 {
    font-size: 96px;
    line-height: 1;
  }
  .hs-text-12 {
    font-size: 54px;
    line-height: 1.2;
  }
  .hs-content-inner {
    padding: 0 110px;
  }
  .text-mask {
    font-size: 72px !important;
  }
  .line-process-mood .owl-dot {
    height: 120px;
    width: 240px;
    -webkit-transform: translateX(-120px) translateY(-90px);
        -ms-transform: translateX(-120px) translateY(-90px);
            transform: translateX(-120px) translateY(-90px);
  }
  .line-process-mood .owl-dot span {
    -webkit-transform: translateX(120px) translateY(90px);
        -ms-transform: translateX(120px) translateY(90px);
            transform: translateX(120px) translateY(90px);
  }
}
@media (min-width: 1200px) {
  .hs-content-inner {
    padding: 0 180px;
  }
  .hs-text-10 {
    font-size: 100px;
  }
}
/*
Blended
 -------------------------
 */
@media screen and (min-height: 375px) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 380px;
  }
}
.team-section {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .team-section {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .team-section {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .team-section {
    padding-bottom: 150px;
  }
}
@media (min-width: 668px) and (max-width: 767px) {
  .team-carousel .team-item-info {
    padding: 90px 40px 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-carousel .team-item-info {
    padding: 50px 30px 0 30px;
  }
}
@media (min-width: 992px) {
  .team-carousel .team-item-info {
    padding: 40px 80px 0 80px;
  }
}
@media (min-width: 992px) {
  #team-carousel-3 .team-item-info {
    padding: 40px 20px 0 20px;
  }
  #team-carousel-3 .owl-item img {
    display: inline-block;
    width: auto;
    height: 350px;
    margin: 20px 0;
  }
}
.services-section {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .services-section {
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .services-section {
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .services-section {
    padding-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .client-logos .container {
    padding-right: 55px;
    padding-left: 45px;
  }
}
@media (min-width: 1200px) {
  .client-logos .container {
    padding-right: 85px;
    padding-left: 75px;
  }
}
/*
  ========================================
  Animation & Transition Delay Classes
  ========================================
*/
.delay0-05s {
  -webkit-animation-delay: .05s;
          animation-delay: .05s;
  -webkit-transition-delay: .05s;
          transition-delay: .05s;
}
.delay0-1s {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}
.delay0-2s {
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.delay0-15s {
  -webkit-animation-delay: .15s;
          animation-delay: .15s;
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}
.delay0-3s {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
.delay0-4s {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
.delay0-5s {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.delay0-6s {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
.delay0-7s {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}
.delay0-8s {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
  -webkit-transition-delay: .8s;
          transition-delay: .8s;
}
.delay0-9s {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}
.delay1-0s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.delay1-1s {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.delay1-2s {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.delay1-3s {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.delay1-4s {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.delay1-5s {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.delay1-6s {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.delay1-7s {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.delay1-8s {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.delay1-9s {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.delay2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.delay2-5s {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
.delay3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.delay3-5s {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}
.delay4s {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.delay4-5s {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
.delay5s {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
.delay5-5s {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
  -webkit-transition-delay: 5.5s;
          transition-delay: 5.5s;
}
.delay6s {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
  -webkit-transition-delay: 6s;
          transition-delay: 6s;
}
.delay6-5s {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
  -webkit-transition-delay: 6.5s;
          transition-delay: 6.5s;
}
.slide-out {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}




/*
home
 -------------------------
 */
body.home{
    
}
    body.home .hs-content-inner > div{
        padding-bottom: 80px;
    }
    body.home .txt_001{
        color: #a7a8aa;
        margin-bottom: 30px;
        font-size: 12px;
    }
    body.home #about-section{
        margin-top: 0px;
        padding-bottom: 0px;
        padding-top: 0px; 
    }
    .footer_home .legales{
        
    }
    .footer_home .legales p{
        font-size: 10px; 
        color: #939598;
        line-height: 1.2em;  
        text-align: justify;
        padding-left: 250px; 
    }
    
    .nav_home{
        text-align: center;    
    }
    .nav_home > a{
        position: relative;
        display: inline-block;
        width: 200px;
        height: 200px;  
        vertical-align: middle;  
    }
    .nav_home > a.inicial{
        margin-right: 40px;
    }
    .nav_home > a .fondo{
        z-index: -1;
        position: absolute; 
        top:0px;
        left: 0px;
        width: 100%;
        height: 100%;
        
        background-color: #0f2630;
        opacity: .5;  
    }
    .nav_home > a:active .fondo,
    .nav_home > a:focus .fondo,
    .nav_home > a:hover .fondo{
        background-color: #000;
    }
    .nav_home > a .titulo{
        display: block;
        text-align: center;
        color: #00afe9;
        font-size: 25px;
        padding: 10px 0;
        font-weight: 600;
    }
    .nav_home > a .img img{
        width: 122px;
    }
    .nav_home > a .bajada{
        display: block;
        text-align: center;
        color: #d1d3d4;
        font-size: 13px;
        padding: 10px 20px;
        line-height: 1.2em;
    }
    
@media screen and (max-height: 570px) {
  body.home .transp-nav.sticky-navbar #nav{
    display:none;
  }
}
@media screen and (max-width: 475px) {
    .nav_home > a{
        width: 45%;  
        height: 220px; 
    }
    .nav_home > a.inicial{
        margin-right: 4%;
    }
}
@media screen and (max-width: 410px) {
    .nav_home > a{
        width: 49%;  
        height: 220px; 
    }
    .nav_home > a.inicial{
        margin-right: 0;
        border-right: 1px solid #FFF;
    }
    .nav_home > a .titulo{
        font-size: 17px;
    }
    .nav_home > a .bajada{
        padding: 10px 5px;
    }
}
@media screen and (max-width: 380px) {

    .navbar > .container .navbar-brand{
        width: 85%;
    }
    .navbar > .container .navbar-brand .navbar-logo > img{
        width: 100%;    
    }
    .navbar > .container .navbar-brand > p{
        display: none;
    }

}



/***********************
g-recaptcha

***********************/

.g-recaptcha > div{
    margin: auto;
}
/* 
 Whatsapp button animation
 ------
*/
.bounce-whatsapp-button {
    animation: bounce-whatsapp-button 2s infinite;
    -webkit-animation: bounce-whatsapp-button 2s infinite;
    -moz-animation: bounce-whatsapp-button 2s infinite;
    -o-animation: bounce-whatsapp-button 2s infinite
  }

  @-webkit-keyframes bounce-whatsapp-button {

    0%,
    100%,
    20%,
    50%,
    80% {
      -webkit-transform: translateY(0)
    }

    40% {
      -webkit-transform: translateY(-30px)
    }

    60% {
      -webkit-transform: translateY(-15px)
    }
  }

  @-moz-keyframes bounce-whatsapp-button {

    0%,
    100%,
    20%,
    50%,
    80% {
      -moz-transform: translateY(0)
    }

    40% {
      -moz-transform: translateY(-30px)
    }

    60% {
      -moz-transform: translateY(-15px)
    }
  }

  @-o-keyframes bounce-whatsapp-button {

    0%,
    100%,
    20%,
    50%,
    80% {
      -o-transform: translateY(0)
    }

    40% {
      -o-transform: translateY(-30px)
    }

    60% {
      -o-transform: translateY(-15px)
    }
  }

  @keyframes bounce-whatsapp-button {

    0%,
    100%,
    20%,
    50%,
    80% {
      transform: translateY(0)
    }

    40% {
      transform: translateY(-30px)
    }

    60% {
      transform: translateY(-15px)
    }
  }



/* 
 Mensajes
 -------------------------
 */

.formMsj {
  padding: 0;
  line-height: 22px;
  text-align: left;
  clear: both;
  float: none;
}

.formMsj.success,
.formMsj .success {
  color: #545454;
  font-size: 15px;
  line-height: 1.3em;
  padding: 6px 24px 6px 40px;
  
  font-weight: bold;
  border: 2px solid #009900;
  position: relative;
  font-weight: 400;
  margin-bottom: 5px;
  background-color: rgba(255,255,255,.9);
}
    .formMsj.success:before,
    .formMsj .success:before{
        font-family:'FontAwesome';
        content: "\f00c";
        position: absolute;
        left:10px;
        display: inline-block;
        color: #009900;
        font-weight: 600;
    }
    
.boxMsjD2 .msj_error,
.formMsj.error,
.formMsj .error {
  color: #545454;
  font-size: 15px;
  line-height: 1.5em;
  padding: 6px 24px 6px 40px;
  font-weight: bold;
  border: 2px solid #ff3838;
  position: relative;
  font-weight: 400;
  margin-bottom: 5px;
  background-color: rgba(255,255,255,.9);
}
    .boxMsjD2 .msj_error:before,
    .formMsj.error:before,
    .formMsj .error:before{
        font-family:'FontAwesome';
        content: "\f00d";
        position: absolute;
        left:10px;
        display: inline-block;
        color: #ff3838;
        font-weight: 600;
    }
    .boxMsjD2 .msj_error *,
    .formMsj.error *,
    .formMsj .error *{
        font-size: 15px;
        line-height: 1.5em;
    }

.formMsj.advertencia,
.formMsj .advertencia {
  color: #545454;
  font-size: 15px;
  line-height: 1.3em;
  padding: 6px 24px 6px 40px;
  
  font-weight: bold;
  border: 2px solid #ffe600;
  position: relative;
  font-weight: 400;
  margin-bottom: 5px;
  background-color: rgba(255,255,255,.9);
}
    .formMsj.advertencia:before,
    .formMsj .advertencia:before{
        font-family:'FontAwesome';
        content: "\f071";
        position: absolute;
        left:10px;
        display: inline-block;
        color: #ffe600;
        font-weight: 600;
    }
    
.formMsj p{
    margin-bottom: 0px;
}

.videocotizacion{
  height: 35vh;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

@media (max-width: 1920px){
  .videocotizacion{
  height: 25vh;
  }
}

@media (max-width: 480px){
  .videocotizacion{
  height: auto;
  }
}
    

/*Boton IR A GARANTIZAR
 -------------------------
 */
    a.btniragarantizar:hover{
        background-color: #0685b3;    
    }
    a.btniragarantizar{
        background: rgb(3, 123, 193) !important;
        color: #fff;
        padding: 10px 20px;
        font-weight: 400;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        touch-action: manipulation;
        cursor: pointer;
        border: 1px solid transparent;
        vertical-align: middle;
        width: 300px;
    }

/*Boton IR A ACINDAR PYMES
 -------------------------
 */
    a.btniraacindarpymes:hover{
        background-color: #dd5523;
    }
    a.btniraacindarpymes{
        background: rgb(241, 90, 34) !important;
        color: #fff;
        padding: 10px 20px;
        font-weight: 400;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        touch-action: manipulation;
        cursor: pointer;
        border: 1px solid transparent;
        vertical-align: middle;
        width: 300px;
    }

/*Boton IR A AVAL FEDERAL
 -------------------------
 */
    a.btniraavalfederal:hover{
        background-color: #447681;
    }
    a.btniraavalfederal{
        background: rgb(81, 142, 165) !important;
        color: #fff;
        padding: 10px 20px;
        font-weight: 400;
        font-size: 16px;
        margin-top: 0px;
        margin-bottom: 20px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        touch-action: manipulation;
        cursor: pointer;
        border: 1px solid transparent;
        vertical-align: middle;
        width: 300px;
    }
    
    
/*
    EMBAJADORES     
    -------------------------
*/
  
#embajadoresLink{
    background: #3269a2;
}
    #embajadoresLink *{
        color: #fff;
    }
    #embajadoresLink h2{ 
        color: #fff; 
        font-weight: 400; 
        text-shadow: none; 
        font-size: 28px;
        text-shadow: 2px 2px 1px #3269a2
    }
        #embajadoresLink h2 *{ 
            font-size: 25px;
        }
    #embajadoresLink p{
        margin: 0px;
        font-size: 17px;
        line-height: 21px;   
        text-shadow: 2px 2px 1px #3269a2 
    }
    #embajadoresLink .grid{
        padding: 10px 0 20px 0; 
        align-items: center;   
        
        background: url(../img/embajadores-fondo-01.png?v02)  top right no-repeat;
        background-size: contain;
    }
    #embajadoresLink .btn{
        background: #00b5d9;
        color: #fff;
        padding: 10px 20px;
        font-weight: 400;
        font-size: 14px;
        margin-top: 0px;
        display: inline-block;
        width: auto;
        max-width: 100%;
        letter-spacing: 0px;
        
        min-width: 351px;
        margin-top: 10px;
    }
        #embajadoresLink .btn:hover{
            background: #0095b3;   
        }
   
#embajadores{
    background: url(../img/abrir-bg1.png) #3269a2 center left no-repeat;
    background-size: contain;
    
}
    #embajadores *{
        color: #fff;
    }
    #embajadores .grid{
        padding: 10px 0 20px 0; 
        align-items: center;   
        
        background: url(../img/embajadores-fondo-01.png?v02)  top right no-repeat;
        background-size: contain;
    }
    #embajadores h2{
        font-size: 20px; 
        text-transform: uppercase;
        margin: 10px 0 0 0;  
        line-height: 23px;  
        font-weight: 600; 
        text-shadow: 2px 2px 1px #3269a2  
    }
    #embajadores h2 b{
        font-size: 30px;   
        text-transform: uppercase;  
        font-weight: 600;
        text-shadow: 2px 2px 1px #3269a2
    }
#embajadoresContenido{
    background: #f4f4ef;
}
    #embajadoresContenido .titulo{
        margin-bottom: 30px;    
    }
        #embajadoresContenido .titulo:after {
            background: #3269a2;
            height: 11px;
        }
        #embajadoresContenido .titulo h3{
            font-size: 20px; 
            text-transform: uppercase;
            margin: 10px 0 0 0;  
            line-height: 23px;  
            font-weight: 700;   
            color:#0a3040;
        }
        #embajadoresContenido .titulo h3 span{
            font-size: 30px;   
            text-transform: uppercase;  
            font-weight: 700;
            color: #3269a2;
        }
    
    #embajadoresContenido .contenido{
        max-width: 961px;
        margin: auto;
        padding: 30px 15px;
    }
    
    #embajadoresContenido .txtWA{
        margin-top: 30px;        
    }
        #embajadoresContenido .txtWA b{
            color:#0a3040;        
        }
        #embajadoresContenido .txtWA a{
            background: #25d366;
            color: #fff;
            padding: 5px 15px;
            font-weight: 500;
            display: inline-block; 
            border: 0px;   
            margin: 10px 30px;   
        }
            #embajadoresContenido .txtWA span{
                padding: 0px 15px 0px 4px;      
            }
            #embajadoresContenido .txtWA .fa-whatsapp{
                font-size: 19px;
                vertical-align: middle;
            }
            #embajadoresContenido .txtWA a:hover{
                background: #00a93f;   
            }
        
    #embajadoresContenido .grupoCol_1{
        margin: 20px 0;
        display: grid;
        grid-gap: 10px;
        grid-template-columns: 50% 50% ;    
    }
        #embajadoresContenido .grupoCol_1 h4{
            color: #fff;
            font-size: 22px;
        }
        #embajadoresContenido .grupoCol_1{
            
        }
        #embajadoresContenido .grupoCol_1 ul {
            margin: 0;
            padding: 0;
            list-style: square;
            color: #fff;
            list-style-position: outside;
            padding: 0 0 0 19px;
        }
        #embajadoresContenido .grupoCol_1 li::marker {
            color: #0083b5;
        }
        #embajadoresContenido .grupoCol_1 .col2 li::marker {
            color: #384e59;    
        }
        #embajadoresContenido .grupoCol_1 li {
            padding-bottom: 9px;
        }
        #embajadoresContenido .grupoCol_1 .cols{
            position: relative;
            
        }
        #embajadoresContenido .grupoCol_1 .cols > img{
            width: 50px;   
            position: absolute;
            left: 10px;
            top: 7px;
        }
        #embajadoresContenido .grupoCol_1 .cols > .texto{
            padding-left: 80px;
            padding-top: 15px;
            padding-bottom: 20px;
            padding-right: 15px;
        }
    
    #embajadoresContenido .grupoCol_2{
        margin: 35px 0;
        display: grid;
        grid-gap: 10px;
        grid-template-columns: 33.33% 33.33% 33.33%;    
    }
        #embajadoresContenido .grupoCol_2 > div:nth-child(2),
        #embajadoresContenido .grupoCol_2 > div:nth-child(3){
            border-left: 1px solid #0c0c17;    
            padding-left: 13px;
        }
        #embajadoresContenido .grupoCol_2 h4{
            margin-top: 0px;
            margin-bottom: 15px;
        }
        #embajadoresContenido .grupoCol_2 ul{
            margin-bottom: 0px;
        }
        #embajadoresContenido .grupoCol_2 ul {
            margin: 0;
            padding: 0;
            list-style: square;
            color: #0c0c17;
            list-style-position: outside;
            padding: 0 15px 0 19px;
        }
        #embajadoresContenido .grupoCol_2 li {
            padding-bottom: 9px;
        }
        #embajadoresContenido .grupoCol_2 li::marker {
            color: #0083b5;
        }

@media screen and (max-width:1300px) { 
    
    #embajadoresLink .btn{
        min-width: auto;
    }
    
}
@media screen and (min-width:768px) {
    
    #embajadoresLink .btn{
        padding: 21px 20px;    
        font-size: 18px;
    }
}



@media screen and (max-width:767px) {
    
    #embajadoresLink h2{ 
        font-size: 24px;
    }
        #embajadoresLink h2 *{ 
            font-size: 22px;
        }
        #embajadoresLink h2 b{
            display: block;
        }
    #embajadoresLink p{
        margin: 0px;
        font-size: 16px;
        line-height: 18px;    
    }
    #embajadoresLink{
        background: url(../img/embajadores-fondo-03.png?v02)  center center no-repeat;
        background-size: cover;
        
        background-color: #3269a2;
    }
    #embajadoresLink .grid{
        background: none;
    }
    #embajadoresLink .grid {
        padding: 20px 0 40px 0;
    }
    
    
    
    
    #embajadoresContenido .grupoCol_1,
    #embajadoresContenido .grupoCol_2{    
        grid-gap: 10px;    
        grid-template-columns: 100%; 
    }  
    #embajadoresContenido .grupoCol_2 > div:nth-child(1){
        border-left: 1px solid #0c0c17;    
        padding-left: 13px;
    }
    
    #embajadores .grid{
        background: url(../img/embajadores-fondo-03.png?v02)  top right no-repeat;
        background-size: contain;
    }
    
    #embajadoresContenido .txtWA b{
        display: block;
        margin-bottom: 10px;     
    }
    
    #embajadoresContenido .escritorio{display: none!important;}
    #embajadoresContenido .celular{display: inline-block!important;}
}



/*
*************************************************************************
*************************************************************************
  2025-06-19
*************************************************************************
*************************************************************************
*/
.pagHome .btnredes{
    /*border: 1px solid #384f5a;*/
    padding: 20px;
    background-color: #ebe9e9;
    text-align: center;
}
.pagHome .btnredes:hover{
    box-shadow: inset rgba(53, 233, 241, 0.5) 0px 0px 20px 0px, rgba(0, 0, 0, .3) 0px 30px 100px -24px; 
}
.pagHome .contact a.btnredes{
    margin-bottom: 10px;
    color: #0d3041;
}
.pagHome .contact a.btnredes:hover{
    color: #35e9f1;
}
        
        

#textIniPresentacion{
    background-color: #1a3340;
    background: url(../img/toro_inversiones_inteligentes_o50.png?v02) #1a3340 bottom  right no-repeat;
    background-size: contain;
    
}
    #textIniPresentacion *{
        color: #fff;
    }
    #textIniPresentacion h2{ 
        color: #fff; 
        font-weight: 400; 
        text-shadow: none; 
        font-size: 24px;
        text-shadow: 0px 0px 4px #000000;
        
        position: relative;
        margin: 0px;
        padding: 30px 0 10px 0;
    }
        #textIniPresentacion h2 *{ 
            font-size: 25px;
        }
        #textIniPresentacion h2:after {
            background: #0083b5;
            height: 11px;
            width: 110px;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
        }

    #textIniPresentacion p{
        margin: 0px;
        font-size: 17px;
        line-height: 23px; 
        font-weight: 500; 
        color:#00b2ca;
        text-shadow: 2px 2px 1px #1a3340 
        
    }
    #textIniPresentacion .grid{
        padding: 40px 0 40px 0; 
        align-items: center;   
        
        /*
        background: url(../img/embajadores-fondo-01.png?v02)  top right no-repeat;
        background-size: contain;
        */
    }

#fondoComunInversion{

    background-color: #0d3041;
    background: url(../img/cuadraditos_fondo_comun_inversion.png?v02) #0d3041 top right no-repeat;
    background-size: contain;
    
}
    #fondoComunInversion h2{ 
        color: #00b2ca; 
        font-weight: 400; 
        text-shadow: none; 
        font-size: 18px;
        margin:0px;
    }
    #fondoComunInversion h3{ 
        color: #fff; 
        font-weight: 400; 
        text-shadow: none; 
        font-size: 24px;
        margin:0px 0 7px 0;
    }
    #fondoComunInversion p{
        margin: 0px;
        font-size: 15px;
        line-height: 19px; 
        font-weight: 500; 
        color:#fff;
    }

    #fondoComunInversion p.txt_D1{
        margin: 0px;
        font-size: 15px;
        line-height: 19px; 
        font-weight: 400!important; 
        color:#00b2ca;
        
        padding-top: 10px;
    }
    #fondoComunInversion p.txt_D2{
        margin: 0px;
        font-size: 15px;
        line-height: 19px; 
        font-weight: 500!important; 
        color:#fff;
    }
    #fondoComunInversion .decoracion{ 
        position: relative;
        margin: 0px;
        height: 11px;
        padding: 0 0 30px 0;
    }
        #fondoComunInversion .decoracion:after {
            background: #0083b5;
            height: 11px;
            width: 110px;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
        }
    #fondoComunInversion .g1{
        padding: 40px 0 20px 0; 
    }
    #fondoComunInversion .g2{
        max-width: 1200px;   
        padding: 60px 0 0px 0;  
    }
        #fondoComunInversion .g2 > .col1{
            grid-column: 1 / span 2;
        }
        #fondoComunInversion .g2 > .col2{
            grid-column: 3 / span 7;
        }
        #fondoComunInversion .g2 > .col1 img{
            width: 395px;
            margin-left: -98px;
        }
    #fondoComunInversion .g3{
        padding: 7px;
        background: #fff;
        margin: 20px 0px;
        grid-template-columns: repeat(6, 1fr);
        max-width: 700px;
        column-gap: 0px;
    }
        #fondoComunInversion .g3 > .col1{
            grid-column: 1 / span 2;
            text-align: center;
            
        }
        #fondoComunInversion .g3 > .col2{
            grid-column: 3;
            border-left: 1px solid #d0d0d0;
            border-right: 1px solid #d0d0d0;
            padding-bottom: 10px;
        }
        #fondoComunInversion .g3 > .col3{
            grid-column: 4;
            border-right: 1px solid #d0d0d0;
            padding-bottom: 10px;
        }
        #fondoComunInversion .g3 > .col4{
            grid-column: 5 / span 6;
        }
        #fondoComunInversion .g3 .col1 img{
            height: 40px;
        }
        #fondoComunInversion .g3 .col1 span{
            font-size: 37px;
            font-weight: 900;
            color: #000000;
            display: inline-block;
            padding-top: 7px;
        }
        #fondoComunInversion .g3 .col2 span,
        #fondoComunInversion .g3 .col3 span,
        #fondoComunInversion .g3 .col4 span{
            font-size: 21px;
            font-weight: 900;
            color: #000000;
            display: inline-block;
            padding-top: 0px;
            vertical-align: middle;
        }
        #fondoComunInversion .g3 > div{
            text-align: center;
        }
        #fondoComunInversion .g3 > div > *{
            vertical-align: middle;
        }
        #fondoComunInversion .g3 p{
            margin: 4px 0;
            font-size: 10px;
            line-height: 12px;
            font-weight: 400;
            color: #00b2ca;
        }
    @media screen and (max-width:1200px) {
        #fondoComunInversion .g3 > .col1{
            grid-column: 1 / span 3;
            text-align: center;
            
        }
        #fondoComunInversion .g3 > .col2 {
            grid-column: 4;
        }
        #fondoComunInversion .g3 > .col3 {
            grid-column: 5;
            border-right: 0px solid #d0d0d0;
        }
        #fondoComunInversion .g3 > .col4 {
            grid-column: 1 / span 5;
            padding-top: 13px;
        }
    }
    @media screen and (max-width:576px) {
        #fondoComunInversion .g3 > .col1{
            grid-column: 1 / span 3; 
            padding-bottom: 25px;
        }
        #fondoComunInversion .g3 > .col2 {
            grid-column: 1;
            border-left: 0px solid #d0d0d0;
            border-right: 0px solid #d0d0d0;
            border-top: 1px solid #d0d0d0;
            border-bottom: 1px solid #d0d0d0;
        }
        #fondoComunInversion .g3 > .col3 {
            grid-column: 3;
            border-left: 0px solid #d0d0d0;
            border-right: 0px solid #d0d0d0;
            border-top: 1px solid #d0d0d0;
            border-bottom: 1px solid #d0d0d0;
        }
        #fondoComunInversion .g3 > .col4 {
            grid-column: 1 / span 3;
            padding-top: 25px;
            padding-bottom: 10px;
        }
    } 
    #fondoComunInversion .btn{ 
        display: inline-block;
        padding: 4px 10px;
        border: 1px solid #0083b5;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        text-transform: none;
        width: 227px;
        max-width: 80%;
    }
    #fondoComunInversion .btn:focus,
    #fondoComunInversion .btn:hover{
        background-color: #0083b5;  
    }
    #fondoComunInversion .mensualImgInvertir.invertir,
    #fondoComunInversion .anualImgInvertir.invertir,
    #fondoComunInversion .diarioImgInvertir.invertir
    {
        transform: rotate(180deg);    
    }
    #fondoComunInversion .anualImgInvertir{
        height: 30px!important;
        margin-top: 14px;
        margin-bottom: -5px;    
    }
                              
    #fondoComunInversion .celular{display: none;}  
    
    
    
    @media screen and (max-width:767px) {
        #fondoComunInversion .escritorio{display: none;}
        #fondoComunInversion .celular{display: inline-block;}  
    }

    @media screen and (max-width:1200px) {
        #fondoComunInversion .g2 > .col1{
            grid-column: 1 / span 1;
        }
        #fondoComunInversion .g2 > .col2{
            grid-column: 2 / span 8;
        }
    }
    @media screen and (max-width:850px) {
        #fondoComunInversion .g1{
            padding-bottom: 70px;
        }
        #fondoComunInversion .g2 > .col1{
            grid-column: 1 / span 5;
            text-align: center;
        }
        #fondoComunInversion .g2 > .col2{
            grid-column: 1 / span 5;
        }
        #fondoComunInversion .g2{
            padding-top: 0px;
            
        }
        
        #fondoComunInversion .botonera{
            text-align: center;
        }
        #fondoComunInversion .g3{
            max-width: 100%;
        }
    }
    
body .asesor-cont{
    
}
    body .asesor-cont .grid,
    body .asesor-cont{
        background-image: none;
    }
    body .asesor-cont{
            padding-bottom: 50px;
    }
    @media screen and (max-width:1000px) and (min-width:565px) {
        .asesor-cont .asesores-cuadrados-gral {
            display: grid;    
        }
        .asesor-cont .asesores-cuadrados-gral > div:nth-child(1){
            grid-column: 1 / span 2!important;
            width: auto;
            
        }
        .asesor-cont .asesores-cuadrados-gral > div:nth-child(2){
            grid-column: 3 / span 2!important;
            width: auto;
        }
        .asesor-cont .asesores-cuadrados-gral > div:nth-child(3){
            grid-column: 5 / span 2!important;
            width: auto;
        }
        .asesor-cont .asesores-cuadrados-gral > div:nth-child(4){
            grid-column: 2 / span 2!important;
            width: auto;
        }
        .asesor-cont .asesores-cuadrados-gral > div:nth-child(5){
            grid-column: 4 / span 2!important;
            width: auto;
        }
        .asesor-cont .asesor-cuadrado img{
            width: 80%;
            right: auto;
        }
        
    } 
body  #homeAgendarEntrevista{
    
}
    
    body  #homeAgendarEntrevista {
        padding: 0px 0 ;
        
        background: linear-gradient(180deg,rgba(16, 50, 67, 1) 0%, rgba(56, 79, 90, 1) 55%, rgba(56, 79, 90, 1) 100%);
   

        /*
        background-position: right bottom;
        background-size: auto 100%;
        background-repeat: no-repeat;
        */
    }
    body  #homeAgendarEntrevista > div{
        background: url(../img/comunicacion_asesores_derecha.png?v02) transparent top right no-repeat;
        background-size: contain; 
        
        max-width:100%;
        padding: 0px;
    }
    body  #homeAgendarEntrevista > div > div{
        background: url(../img/comunicacion_asesores_izquierda.png?v03) transparent top left no-repeat;
        background-size: contain; 
        padding: 50px 25px;
    }
    body #homeAgendarEntrevista > div > div > div {
        max-width: 1000px;
        margin: auto;
    }
    body #homeAgendarEntrevista h5 {
        color: #fff;
        text-shadow: 2px 1px 6px #103243;
        font-size: 35px;
        line-height: 35px;
    }
    body #homeAgendarEntrevista h6{
        color: #00b2ca;    
        text-shadow: 2px 1px 6px #103243;
        font-size: 35px;
        line-height: 35px;
    }
    body #homeAgendarEntrevista .btn {
        background-color: #00b2ca;    
    }
        #homeAgendarEntrevista .btn:hover{
            background-color: #009db3;    
        }
    #homeAgendarEntrevista > div{
        max-width: 1000px;
    }
  
body #cheques{
    
}  
    body #cheques {
        background-color: #0083b5;
    }
    body #cheques .btn,                 
    body #cheques h5 span,
    body #cheques .col_1 li span{
        background-color: #0d3041; 
    }
    body #cheques label.D1,
    body #cheques .col_1 p.color{
        color: #fff;    
        font-weight: 600; 
    }
    body #cheques .col_1 li{
        font-weight: 400;     
    }
    body #cheques h2{
        color: #fff;
        font-weight: 600;    
    }
    body #cheques .datos_adicionales h3,
    body #cheques .col_1 p .txt6{
        color: #fff;
        font-weight: 600;         
    }
    body #cheques .col-xs-12 p,
    body #cheques .datos_adicionales h4,
    body #cheques .campoRadio span,
    body #cheques .col_1 p,
    body #cheques .col_1  p,
    body #cheques .col_1 b, 
    body #cheques .col_1 li, 
    body #cheques .col_1 h6 {
        color: #fff;
        font-weight: 400;
    }
    body #cheques .pie *
    {
        color: #dddddd;    
    }
    
    
    body #cheques .btn:hover, 
    body #cheques .btn:focus, 
    body #cheques .btn:active {
        background-color: #00afd3;
    }
    body #cheques .col_1 p .txt6{
        position: relative;
        padding-left: 19px;
    }
    body #cheques .col_1 p .txt6 > span:nth-child(2){
        position: absolute;
        left: 0px;
        top: 5px;
        width: 9px;
        height: 9px;
        border-radius: 5px; 
    }
    
.itemSocioComercial{
    
}
    .itemSocioComercial h5{
        margin: 25px auto;
        max-width: 500px;
        display: inline-block; 
    }
    .itemSocioComercial.right .ventajas{
        text-align: right;
    }
    body #socios .usacolor.ventajas{
        display: block;    
    }

    body #socios .usacolor.ventajas h5{
        text-shadow: 1px 1px 2px #cc0b0b;
    }
    body #socios .usacolor.ventajas.arg{
        background-color: #0090d0 !important;  
        background: url(../img/bandera_argentina.png) left center no-repeat;
        background-size: auto;
    }
        body #socios .usacolor.ventajas.arg h5{
            text-shadow: 1px 1px 2px #0090d0;
            margin-top: 34px;
        }
    body #socios .usacolor.ventajas.uru{
        background-color: #0038a8 !important;
        background: url(../img/bandera_uruguay.png) left center no-repeat;
        background-size: auto;
    }
        body #socios .usacolor.ventajas.uru h5{
            text-shadow: 1px 1px 2px #0038a8;
        }
    body #socios .usacolor.ventajas.eeuu{
        background-color: #e10000 !important;
        background: url(../img/bandera_eeuu.png) right center no-repeat;
        background-size: auto;
    }

    body .itemSocioComercial h5{
        font-size: 1.4em;   
        line-height: 1.6em; 
        max-width: 600px;
        font-weight: 900;
    }
    
    @media (min-width: 992px) {
        body #socios .usacolor.ventajas{   
            min-height: 150px;
        }
    }

    @media (max-width: 800px) {
        
        body #socios .usacolor.ventajas.eeuu .margin-ventajas,
        body #socios .usacolor.ventajas.arg .margin-ventajas,
        body #socios .usacolor.ventajas.uru .margin-ventajas {
            margin-top: 171px;
        }
        body #socios .usacolor.ventajas.arg{
            background-color: #0090d0 !important;  
            background: url(../img/bandera_argentina.png) left top no-repeat;
            background-size: auto 180px;
        }
        body #socios .usacolor.ventajas.uru{
            background-color: #0038a8 !important;
            background: url(../img/bandera_uruguay.png) left top no-repeat;
            background-size: auto 180px;
        }
        body #socios .usacolor.ventajas.eeuu{
            background-color: #e10000 !important;
            background: url(../img/bandera_eeuu.png) right top no-repeat;
            background-size: auto 180px;
        }
        
        body .itemSocioComercial h5{
            font-size: 1.3em;   
            line-height: 1.5em; 
            text-align: left;
        }
        
        body #socios .usacolor.ventajas.eeuu .margin-ventajas{
            margin-top: 171px;    
        }

        
    
    }
        
#contacto{
    
}
    #contacto .titulo{
        max-width: 100%;    
    }
    #contacto h3
    {
        
        font-size: 1.2em;
        font-weight: 600;
        margin: 4px 0px;
    }
    #contacto h4{
        font-size: 2.6em;
        font-weight: 500; 
        margin: 0px;   
    }
    #contacto .tel
    {
        color: #0083b5;
        font-size: 3.357em;
        line-height: 1em;
        font-weight: 900; 
        display: inline-block; 
        float: none;
    }
    #contacto .txt{
        color:#414148;
        font-size: 1.4em;  
        line-height: 1.25em; 
    }
    #contacto .contact a{
        width: auto;
    }
    
#asesor-redes{
    padding: 15px 0 10px 0;
    
    background-color: #0d3041;
    background: url(../img/imagen-grupos-redes-trans.png?v01) right center #0d3041 no-repeat;
        
}
    #asesor-redes .grid{
        padding: 0px;    
    }
    #asesor-redes .col1  h4{
        color:#fff; 
        font-size: 2em;
        line-height: 2em;  
        font-weight: 500;   
        margin: 0px;    
    }
    #asesor-redes .col1 h3{
        color:#fff; 
        font-size: 1em;  
        line-height: 1.25em;
        font-weight: 500;   
        margin: 7px 0;    
    }
    #asesor-redes .col1 p{
        color:#0083b5; 
        font-size: 1em;  
        line-height: 1.25em; 
        font-weight: 500;     
        text-shadow: 1px 1px 1px #0d3041, 1px 1px 1px #0d3041, 1px 1px 1px #0d3041, 1px 1px 1px #0d3041;
    }

    #asesor-redes .col2 img{
        float: none;
        right: auto;
        position: relative; 
        height: 60px;   
    }
    #asesor-redes .col2 a{
        display: inline-block;
        margin: 0 5px;
        vertical-align: middle;    
    }
    #asesor-redes .col2 a:focus,
    #asesor-redes .col2 a:hover{
        transform: scale(1.15);   
    }
    #asesor-redes .col2 .listRedes > span{
        display: inline-block;
        margin: 0 20px 0 0px;
        vertical-align: middle;
        color: #fff;
        font-weight: 500;
        font-size: 1em;
        line-height: 1.3em;  
    }
    
@media screen and (max-width: 767px) {
    
    body #asesor-redes {
        background: url(../img/imagen-grupos-redes.png) right bottom #0d3041 no-repeat;
        background-position: bottom 0 right -130px;
        background-size: 992px;
    }
    #asesor-redes .listRedes{
        text-align: center;
        padding-bottom: 125px;
    }
    #asesor-redes .listRedes .txt4{
        display: inline-block!important;
        text-align: left;
        padding: 7px 0 7px 10px;
    }
    #asesor-redes .listRedes .txt2{
        display: block!important;
        padding: 25px 0; 
        text-align: center;
    } 
    #asesor-redes .listRedes .txt5,
    #asesor-redes .listRedes .txt3{
        display: none!important;
    }
    #asesor-redes .listRedes{
       
    }
}
@media screen and (max-width: 576px) {
    
    body #asesor-redes {
        /*
        background: url(../img/imagen-grupos-redes-v3.png?v01) right bottom #0d3041 no-repeat;
        background-position: top 0 right 0px;
        background-size: auto 149px;
        padding-top: 150px;
        */
        background: none;
        background-color: #0d3041;
        padding-top: 25px;
    }
    #asesor-redes .listRedes{
        padding-bottom: 50px;
    }
    #resumen .punto .texto{
        padding: 20px 20px 50px 20px; 
           
    }
    #resumen .punto .texto p{
        height: auto;    
    }
} 
    

    
#resumen .punto .texto{
    width: 95%;    
}
@media screen and (max-width: 1200px) {
    #resumen .punto:nth-child(3), 
    #resumen .punto:nth-child(4) {
        margin-top: 0px!important;
    }
}


@media screen and (max-width: 767px) {
    body #cuenta {
        
        overflow: hidden;   
        
        background: url(../img/abrir-bg1_mobile.png) #0083b5 top left no-repeat;
        background-size: auto 50%;
        
    }
    body #cuenta:after {
        content: '';
        position: absolute;
        top: auto;
        bottom: 0px;
        right: 0px;
        width: 100%;
        background: url(../img/abrir-bg2_mobile.png) bottom right no-repeat;
        background-size: auto 50%;      
    }        
    
    
    #fondoComunInversion{
        background: url(../img/cuadraditos_fondo_comun_inversion.png?v02) #0d3041 top right no-repeat;
        background-size: 35%;
    }
    
        
}
@media screen and (max-width: 576px) {



    body #homeAgendarEntrevista > div {
        /*
        background: url(../img/comunicacion_asesores_derecha.png?v02) transparent bottom right no-repeat;
        background-size: contain;
        */
        background: none;
    }

    body #homeAgendarEntrevista > div > div {
        
        background: url(../img/comunicacion_asesores_izquierda.png?v03) transparent bottom left no-repeat;
        background-size: auto 68%;
        /*
        padding-bottom: 124px;
        */
    }
    
    
    body #embajadores{
        background: url(../img/abrir-bg1.png) #3269a2 top left no-repeat;
        background-size: auto 45%;
    }
    #contacto .contact > p,
    #contacto .contact{
        text-align: left!important;
        margin-left: 0px;
    }
    

    body .asesor-cuadrado {
            margin-right: 0px;
    }
}


@media screen and (max-width: 767px) {
    #videos {
        padding-bottom: 20px;
        margin-top: 0px;
    }  
    
    body .slick-prev, 
    body .slick-next{
        bottom: -42px !important    
    }
    body .slick-dots{
        bottom: -32px !important      
    }
}
@media screen and (max-width: 576px) {

    
    body .asesor-cont{
        padding-top: 0px;
    }
    
    body .asesor-cuadrado .data-cont{
        height: auto!important; 
        padding-bottom: 39px;   
    }
    
    
    body  #test .titulo {
        max-width: 235px;
        font-size: 16px;
        margin: 15px 0 4px 0;
        padding-bottom: 3px;
    }
    body #test h4{
        line-height: 29px;
        margin-top: 0px !important;
    }
    body  #test .grid > div:nth-child(3){
        padding-bottom: 0px;
        margin-bottom: 20px;
    }
    body  #test .grid > div:nth-child(4){

        margin: 0px;
    }
    body  #test .grid > div:nth-child(5) img{
        margin-top: 0px;
    }
}
body .titulo:after{
    width: 110px;  
    height: 11px;   
}
.asesor-cont > .grid > div:nth-child(1),
#textIniPresentacion > .grid > div:nth-child(1){
    margin-top: 0px;        
}

.slick-next:before,
.slick-prev:before{
    font-size: 20px;    
}