
.form-alert {
    background-color: #ff5151;
    padding: 5px;
    font-size: 0.65em;
    margin-top: 5px;
    border-radius: 5px;
}

@font-face {
font-family: "proxima-nova";
src: url("../font/proxima-nova/proxima-regular.otf") format("opentype");
}
@font-face {
font-family: "proxima-thin";
src: url("../font/proxima-nova/proxima-thin.otf") format("opentype");
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}

body{
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
    font-family: 'proxima-nova';
    color: #565656;
}

h1{
  font-family: 'proxima-nova'!important;
  font-size: 30px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
h2{
  font-family: 'proxima-nova'!important;
  font-size: 30px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
.checkbox-custom {
    position: relative;
    width: 12px!important;
    height: 12px!important;
    margin: 0;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}

.checkbox-custom:after {
    content: '';
    position: absolute;
    display: block;
    z-index: 1;
    width: 13px;
    height: 13px;
    border: 1px solid #dedede;
    border-radius: 2px;
}

.checkbox-custom[type=checkbox]:before, .checkbox-custom[type=radio]:before {
    background: #2980b9 url("http://i.imgur.com/dR1TM0y.png");
    background-size: 10px 8px;
    background-repeat: no-repeat;
    background-position: 1px 3px;
    position: absolute;
    left: 2px;
    z-index: 2;
    opacity: 0;
    width: 100%;
    height: 100%;
    color: #2980b9;
}

.checkbox-custom[type=checkbox]:checked:before,.checkbox-custom[type=radio]:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    opacity: 1;
    left: 1px;
    /* border: 1px solid #ffffff; */
    border-radius: 2px;
}

.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  /* margin-top: 260px; */
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
  font-size: 18px;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.button_forward{
  border: none;
    color: #fff;
    text-decoration: none;
    transition: background .5s ease;
    -moz-transition: background .5s ease;
    -webkit-transition: background .5s ease;
    -o-transition: background .5s ease;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-align: center;
    background: #0695D6;
    position: relative;
    font-size: 0.65em;
    font-weight: 600;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    line-height: 1;
    padding: 12px 30px;
    -webkit-box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
}

.textcert3 {
    width: 260px;
    background: #E8E8E8;
    border-radius: 3px;
    line-height: 1;
    padding: 12px 20px;
    -webkit-box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
    font-size: 1.25em;
    margin: auto;
    margin-bottom: -50px;
    text-align: center;
}


.header-grad-wrap{
    height: 100vh;
    top: -8px;
    /* max-height: 700px; */
    max-height: 550px;
    position:relative;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0072BC+1,0695D6+21,44b9d9+60,0038ff+100 */
    background:url(/assets/img/citybg.jpg) center center;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0072BC', endColorstr='#0038ff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.header-grad-wrap.staff-header{
    max-height: none;
    height:auto;
}
.header-grad-wrap.pricing-wrap{
    height: 440px
}
.header-grad-wrap.tools-wrap{
    height: auto;
}
.header-grad-wrap.terms-wrap{
    height: auto;
    padding-bottom: 10px;
}
.header-grad-wrap.terms-wrap .nav-bar .site-navigation {
    padding-top: 24px;
}
/*start: Menú Top Nav*/
.botonaso{
  width: 255px;
  height: 40px;
  font-size:0.85em;
  border-radius: 0.5rem;
  background: #31B561;
  padding: 0.7rem 1.2rem;
  color: #FFF;
  margin-right: 0.5rem;
  cursor: pointer;
  border: 1px solid #0072BC;
  transition: all .2s ease-in-out;
  margin-top:10px;
  letter-spacing: .025em;
  text-shadow: 0 1px 3px rgba(36,180,126,.4);
  box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
  font-weight: 500;


}
.botonaso:hover:not(:disabled){
  /* background: #0072BC; */
  background: #0da744;
}
.botonaso:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.modalcertnew {
    display: inline-block;
    margin-left: 200px;
    text-align: center;
}

.overlaya{
  background-color: rgba(76, 76, 76, 0.75);
  height: 100%;
}

.tool6icon{
  background: url(../icons/icons8-driving-guidelines-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool6icon.filled{
  background: url(../icons/icons8-driving-guidelines-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool4icon{
  background: url(../icons/icons8-licence-plate-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool4icon.filled{
  background: url(../icons/icons8-licence-plate-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool2icon{
  background: url(../icons/icons8-cash-in-hand-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool2icon.filled{
  background: url(../icons/icons8-cash-in-hand-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool1icon{
      background: url(../icons/icons8-checked-user-male-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool1icon.filled{
      background: url(../icons/icons8-checked-user-male-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool3icon{
      background: url(../icons/icons8-fraud-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool3icon.filled{
      background: url(../icons/icons8-fraud-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool5icon{
      background: url(../icons/icons8-speedometer-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool5icon.filled{
      background: url(../icons/icons8-speedometer-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.tool7icon{
      background: url(../icons/icons8-law-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}
.tool7icon.filled{
      background: url(../icons/icons8-law-filled-500.png) no-repeat;
      background-size: 40px;
      height: 40px;
      width: 40px;
      margin-left: 14px;
      margin-top: 11px;
}

.title-hero{
  margin: auto 5px;
}


.h3s{
  font-family: 'proxima-nova';font-weight: normal;text-align: left;font-size: 2.6rem;margin: 0;color: #565656;text-align: center;
}
.h4s{
  font-family:'proxima-nova';font-weight: normal;text-align: left;font-size: 2.6rem;padding-top: 45px;margin: 0;color: #565656;text-align: center;
}
.h5s{
  font-family:'proxima-nova';font-weight: normal;text-align: left;font-size: 2.1rem;padding-top: 45px;margin: 0;color: #565656;text-align: center;margin-bottom: 30px;display:none;
}

.iframaso{
  width: 1045px;height: 320px;margin:auto;display:block;
}
.titulaso{
  font-family: 'proxima-nova';font-weight: normal;text-align: left;font-size: 2.6rem;margin: 0;color: #565656;text-align: center;
}

@media screen and (max-width: 899px) {
    .video-frame iframe{
      display:none!important;
    }
    .video-frame-datos iframe{
      /* display:none!important; */
    }
    .image-frame{
      display: block!important;
      max-width: 92vw!important;
      margin: 0 auto!important;
    }
}

@media screen and (max-width: 1045px) {
.iframaso{
width: 700px;
height: 635px;
}
}
@media screen and (max-width: 700px) {
.iframaso{
width: 350px;
height: 900px;
}
.titulaso{
  padding-top: 50px;
}
}

@media screen and (max-width: 899px) {
    .video-frame iframe{
      display:none!important;
    }
    .image-frame{
      display: block!important;
      max-width: 92vw!important;
      margin: 0 auto!important;
    }
}

.image-frame{
  display:none;
}

.eletitle{
  font-size: 0.92em!important;
}
.eleimg {
max-width: 55px!important;
}
.metriks{
  margin-top: -150px;
}
.datosfb{
  margin-top: -100px;
}
.heightpush{
  height: 70px;
}


.custom-social-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999999999999 !important;
  font-family: 'Open Sans', sans-serif;
}
.custom-social-proof .custom-notification {
  width: 320px;
  border: 0;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.custom-social-proof .custom-notification .custom-notification-container {
  display: flex !important;
  align-items: center;
  height: 80px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-image-wrapper img {
  max-height: 75px;
  width: 90px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  object-fit: cover;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper {
  margin: 0;
  height: 100%;
  color: gray;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0 6px 6px 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content {
  font-family: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 16px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content small {
  margin-top: 3px !important;
  display: block !important;
  font-size: 12px !important;
  opacity: .8;
}
.custom-social-proof .custom-notification .custom-close {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: .2s ease-in-out;
  transform: rotate(45deg);
  /* opacity: 0; */
}
.custom-social-proof .custom-notification .custom-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 5px;
}
.custom-social-proof .custom-notification .custom-close::after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: gray;
  position: absolute;
  left: 5px;
  top: 0;
}
.custom-social-proof .custom-notification:hover .custom-close {
  opacity: 1;
}






.accordion a {
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
/* width: 100%; */
padding: 1rem 4.5rem 1rem 1rem;
color: #7288a2;
font-size: 2.1rem;
font-weight: 400;
border-bottom: 1px solid #e5e5e5;
}

.accordion a:hover,
.accordion a:hover::after {
cursor: pointer;
color: #0072BC;
}

.accordion a:hover::after {
border: 1px solid #0072BC;
}

.accordion a.active {
color: #0072BC;
border-bottom: 1px solid #0072BC;
}

.accordion .content {
opacity: 0;
padding: 0 1rem;
max-height: 0;
/* border-bottom: 1px solid #e5e5e5; */
overflow: hidden;
clear: both;
-webkit-transition: all 0.2s ease 0.15s;
-o-transition: all 0.2s ease 0.15s;
transition: all 0.2s ease 0.15s;
margin-bottom:20px;
}


.accordion .content p {
font-size: 1.70rem;
font-weight: 300;
}

.accordion .content.active {
opacity: 1;
padding: 1rem;
max-height: 100%;
-webkit-transition: all 0.35s ease 0.15s;
-o-transition: all 0.35s ease 0.15s;
transition: all 0.35s ease 0.15s;
}


.inp {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 280px;
}
.inp .label {
  position: absolute;
  margin-left: 6px;
  top: 0;
  left: 0;
  font-size: 18px;
  color: #9098a9;
  font-weight: 500;
  transform-origin: 0 0;
  transition: all 0.2s ease;
}
.inp .border {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 100%;
  background: #6f6e6e;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all 0.15s ease;
}
.inp input {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 1px 0 0 5px;
  height: 48px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #c8ccd4;
  background: none;
  border-radius: 0;
  color: #223254;
  transition: all 0.15s ease;
  text-transform: uppercase;
}
.inp input:hover {
  background: rgba(34,50,84,0.03);
}
.inp input:not(:placeholder-shown) + span {
  color: white;
  transform: translateY(-35px) scale(0.75);
}
.inp input:focus {
  background: none;
  outline: none;
}
.inp input:focus + span {
  color: white;
  transform: translateY(-35px) scale(0.75);
}
.inp input:focus + span + .border {
  transform: scaleX(1);
}



::-webkit-input-placeholder {
  /* color: peachpuff;
  font-size: 13px; */
  text-transform: initial;
}
::-moz-placeholder {
  /* color: peachpuff;
  font-size: 13px; */
  text-transform: initial;

}
:-ms-input-placeholder {
  /* color: peachpuff;
  font-size: 13px; */
  text-transform: initial;

}
::placeholder {
  /* color: peachpuff;
  font-size: 13px; */
  text-transform: initial;

}


.nav-bar{
    background: white;
    height: 80px;
    top: 0;
    z-index: 10;
    padding: 0px 10px 0;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}
.nav-bar header{
    background:#FFF;
}
.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
}
.nav-bar nav ul {
    list-style: none;
    color: #b8b8b8;
}
.nav-bar nav ul li{
    display: inline;
}
.nav-bar .branding-logo {
    float: left;
    padding: 1rem;
    background: url("../img/tramitanew.jpg") no-repeat;
    background-size: contain;
    background-position: center center;
    width: 230px;
    height: 18px;
    margin-top: 20px;
    transition: box-shadow 0.5s ease;
}
.nav-bar.sticky-nav-bar {
    position: fixed;
    background-color: #FFF;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,.15);
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    padding-top: 0;
    width: 100%;
}
.nav-bar.sticky-nav-bar .branding-logo{
    background: url("../img/tramitanew.jpg") no-repeat;
    background-size: contain;
    background-position: center center;

    width: 200px;
    height: 18px;
    margin-top: 20px;
     transition: all 0.5s ease;
}
.standard-header .nav-bar .branding-logo{
    background: url("../img/tramitanew.jpg") no-repeat;
    background-size: contain;
    background-position: center center;
    width: 130px;
    height: 18px;
    margin-top: 20px;
     transition: all 0.5s ease;
}
.nav-bar .branding-logo img {

}
.nav-bar header {
    max-width: 1186px;
    margin-right: auto;
    margin-left: auto;
    background: transparent;
    height: 100%;
    position: relative;
}
.nav-bar .site-navigation {
    float: right;
    padding-top: 19px;
    padding-right: 110px;
}

.nav-bar.sticky-nav-bar .site-navigation a.link {
    text-decoration: none;
    position: relative;
    color: #797979;
    transition: all .1s ease-in-out;
}
.nav-bar.sticky-nav-bar .site-navigation a.link:hover{
    color: #797979;
}
.nav-bar .site-navigation a.link {

    text-decoration: none;
    position: relative;
    color: black;
    transition: all .1s ease-in-out;
}
.standard-header .nav-bar .site-navigation a.link{
    color: #797979;
}
.standard-header .nav-bar .site-navigation a.link:hover{
    color: #797979;
}
.nav-bar .site-navigation a.link:hover{
    color: #black;
}
.nav-bar .site-navigation a.link:before{
   content: "";
  position: absolute;
  width: 100%;
  height: 2px;

  bottom: -5px;
  left: 0;
  background-color: #FFF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.nav-bar .site-navigation a.link:before{
    background-color: #0072BC;
}
.nav-bar .site-navigation a.link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.nav-bar .site-navigation .lang {
    margin-right: 3px;
    position: relative;
    top: 3px;
}
.nav-bar .site-navigation li {
    margin-right: 3rem;
    font-size: 1.5rem;
    color: #797979;
}
@media (max-width: 834px) {
    .nav-bar .site-navigation li {
        margin-right: 0.65rem;
    }
    .nav-bar nav ul {
        padding: 0;
    }

    .metriks{
      margin-top: -60px;
    }
    .datosfb{
      margin-top: 0px;
    }
    .heightpush{
      height: 0px;
    }
}
.nav-bar .site-navigation li.last{
    margin-right: 22px;
}
.nav-bar .site-navigation li.cta-menu {
    border-left: 0;
    margin-right: 0;
    margin-left: 10px;
}
.nav-bar .site-navigation li.cta-menu.log-in{
    border-left: 1px solid #CCC;
    padding-left: 25px;
}
.nav-bar li.cta-menu a {
    border-radius: 1.7rem;
    background: #0072BC;
    padding: 0.7rem 1.2rem;
    color: #FFF;
    margin-right: 0.5rem;
    cursor: pointer;
    border: 1px solid #0072BC;
    transition: all .2s ease-in-out;
}
.standard-header .nav-bar li.cta-menu.log-in a {
    border: 1px solid #0072BC;
    background: #FFF;
    color: #0072BC;
    transition: all .2s ease-in-out;
}
.nav-bar li.cta-menu.log-in a{
    border:1px solid #FFF;
    background: transparent;
    color: #FFF;
}
@media (max-width: 768px) {
    .nav-bar li.cta-menu.log-in a, .nav-bar li.cta-menu a{
        display: block;
        text-align: center;
        padding: 1rem 1rem;
    }
    .tools-wrap section.tools-intro .tools-intro-grid {
        grid-template-columns: 1fr;
    }
    .tools-wrap section.tools-intro .liner-left {
        border:0;
    }

    .overlaya{
      height: auto;
    }
    .modalcertnew{
      display:none!important;
    }
    .preguntaf{
      margin-top: 40px;
    }

}
.nav-bar li.cta-menu.log-in a {
    color: #FFF;
}
.nav-bar.sticky-nav-bar li.cta-menu.log-in a{
    border: 1px solid #0072BC;
    color: #0072BC;
}
.nav-bar.sticky-nav-bar li.cta-menu.log-in a:hover{
    color: #FFF;
    transition: all .2s ease-in-out;
}
.nav-bar li.cta-menu.log-in a:hover{
    background-color: #FFF;
    color: #0072BC;
    transition: all .2s ease-in-out;
}
.nav-bar.sticky-nav-bar li.cta-menu.log-in a:hover{
    background-color: #0072BC;
    transition: all .2s ease-in-out;
}
.nav-bar li.cta-menu a:hover{
    background: #1a5cc0;
    transition: all .2s ease-in-out;
    color: #FFF;
}
.nav-bar li.cta-menu.log-in a:hover{
    border: 1px solid #fff;
}
.nav-bar li.cta-menu.try-free a:hover{
    border: 1px solid #1a5cc0;
}
.nav-bar li.cta-menu a{
    text-decoration: none;
    color: #FFF;
    transition: all .2s ease-in-out;
}
.nav-bar.responsive nav ul li, .nav-bar.sticky-nav-bar.responsive nav ul li{
    display: block;
    text-align: center;
}
@media (min-width: 768px) {
    .nav-bar nav .responsive-menu-toggler{
        display: none;
    }
}
@media (max-width: 767px) {
    #wrapper {
        padding-top: 0;
    }
    .nav-bar .site-navigation {
        float: none;
        clear: both;
        padding-top:0;
    }
    .nav-bar.responsive .hide-responsive,  .nav-bar.responsive.sticky-nav-bar .hide-responsive {
        display: none;
    }
    .nav-bar.responsive .site-navigation, .nav-bar.responsive.sticky-nav-bar .site-navigation{
        border-top: 1px solid #E3e3e3;
        padding: 0;
    }
    .nav-bar.responsive nav .responsive-menu-toggler, .nav-bar.sticky-nav-bar.responsive nav .responsive-menu-toggler, .nav-bar nav .responsive-menu-toggler {
        display: block;
        position: absolute;
        top: -34px;
        right: 20px;
        height: 39px;
        width:29px;
        cursor: pointer;
        background-size: cover;
        transition: background 0.2s ease;
    }
    .nav-bar.responsive nav .responsive-menu-toggler, .nav-bar.sticky-nav-bar.responsive nav .responsive-menu-toggler {
        background-position: center center;
        cursor: pointer;
        transition: background 0.2s ease;
    }
    .nav-bar.responsive nav .responsive-menu-toggler a, .nav-bar.sticky-nav-bar.responsive nav .responsive-menu-toggler a, .nav-bar nav .responsive-menu-toggler a{
        color: grey;
        font-size: 2rem;
        text-decoration: none;
    }
    .nav-bar nav ul li {
        display: none;
    }
    .nav-bar{
        height:auto;
    }
    .branding-logo img {
        position: relative;
        left: 20px;
        top: -10px;
    }
    .nav-bar.responsive nav ul li, .nav-bar.responsive.sticky-nav-bar nav ul li {
        margin-bottom: 1rem;
    }
    .nav-bar .site-navigation li.cta-menu.log-in{
        border: 0;
        padding: 0;
    }
    .nav-bar .site-navigation li.cta-menu {
        margin-bottom: 8px;
    }
    .cta-menu log-in {
        margin-top: 20px;
    }
    /*Pricing Lowering Content*/
    section.prices {
         margin-top: 57px;
    }
    section.tools-intro .tools-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    section.tools-intro .liner-left {
        border-left: 0;
    }
    .modal.fade .modal-dialog {
  /* margin-top: 200px!important; */
  max-height: 200px!important;
}


}
/*end: Menú Top Nav*/

.language-selector__menu {
     display: none;
    border: 1px solid #DDE5ED;
    padding: 5px;
    position: relative;
    top: 10px;
    left: 10px;
    background-color: white;
    margin-bottom: 10px;
}
.socalo-lang-select{
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 20px;
    display: inline-block;
}
.socalo-lang-select:hover .language-selector__menu, .language-selector__menu:hover .language-selector__menu {
    display: block !important;
}
.socalo-lang-select img.lang {
    position: relative;
    top: 2px;
}
.socalo-lang-select img.caret-down {
    margin-left: 2px;
}
.language-selector__language a{
    padding: 16px;
    color: #797979;
    line-height: 1rem;
    text-decoration: none;
    display: block;
}
.language-selector__language a:hover {
    background-color: #f3f3f3;
    color: #797979;
}


/* Stats */
section.metrics{
    background-color: #f9f9f9;
    padding-bottom: 50px;
}
.stats-divider {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 20px;
    padding: 50px 0;
    max-width: 1280px;
    margin: 0 auto;
}
.stats-divider .stats {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}
.stats-divider .icon {
    align-self: center;
    text-align: center;
}
.stats-divider .icon img {
    max-width: 97px;
}
.stats-divider .stats div {
    font-size: 0.70em;
    font-weight: normal;
}

/* Multiaccount Operators */
.multiaccount-operators {
    background-color: #f9f9f9;
    padding: 80px 0 55px;
    text-align: center;
    color: #797979;
    position: relative;
    top: -58px;
}
.multiaccount-operators h4{
    font-size: 2.6rem;
    font-weight: bold;
    margin: 10px 0 10px;
}
.operators-grid {
    max-width: 1280px;
    justify-items: center;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 210px;
}
.operators-grid .multi {
    justify-self:end;
}
.operators-grid .ope {
    justify-self:start;
}
.operators-grid p {
    max-width: 300px;
    font-size: 1.5rem;
}
@media (max-width: 767px) {
    .operators-grid {
        max-width: auto;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
    }
    .operators-img{
        text-align: left;
        justify-self:center;
    }
    .multiaccount-operators .description {
        justify-self:center;
    }
}

/*Video Wrapper*/
section.video-wrapper {
    /*top: -185px;*/
    top: -150px;
    position: relative;
    margin: 0 auto;
    align-items: center;
}
section.video-wrapper h3 {
    font-family: 'proxima-nova';
    font-weight: normal;
    text-align: left;
    font-size:2.6rem;
    padding-top: 45px;
    margin: 0;
    color: #565656;
    text-align: center;
}
.video-wrapper .video-frame {
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    grid-column-start: 1;
    grid-column-end: 2;
}
.video-wrapper .title {
    grid-column-start: 2;
    grid-column-end: 3;
}
.video-wrapper .video-frame{
    padding:40px 80px 60px;
}
.video-wrapper .video-bg{
    width: 900px;
    margin: 0 auto;
    background: #F9F9F9; /* Old browsers */
    /* background: url("../img/patternvideo.png"); */
    background-position: center center;
    background-size: cover;
    box-shadow: 0px 0px 12px 6px rgba(23,28,33,.08);
    border-radius: 5px;
}
.video-wrapper .video-frame iframe {
    border-bottom: 3px solid #0072BC;
}
@media (max-width: 767px) {
    section.video-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows:2fr;
    }
    .video-wrapper .video-frame {
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start:2;
    }
    .video-wrapper .title {
        grid-column-start: 1;
        grid-row-start:1;
        justify-self:center;
    }
    .video-wrapper .title h3 {
        font-size: 2rem;
    }
    .hero-cta {
          margin: 0 auto;
    }


}


/*start: clients*/
.clients-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns:repeat(6,1fr);
    grid-template-rows:repeat(2,1fr);
    grid-column-gap: 20px;
}
@media (max-width: 767px) {
    .clients-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns:repeat(4,1fr);
        grid-template-rows:repeat(3,1fr);
        grid-column-gap: 20px;
    }
}
.trusted-by .main-wrapper img {
    max-width: 35%
}
.trusted-by {
    background-color: #FFF;
    margin-top: 30px;
}
.trusted-by .main-wrapper{
    padding: 15px 0 40px;
    max-width: 1170px;
    text-align: center;
    margin: 0 auto;
}
.trusted-by span {
    font-size: 2.6rem;
    color: #797979;
    padding: 0 20px 7px;
}
/*end: clients*/

/*start: tools radial*/
.tools-radial{
    margin-top: -120px;
    min-height: 300px;
    background-image: url("../img/bg-main-circle.png");
    background-position: center 146px;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0 0 40px;
}
.svg-liner{
    position: absolute;
    margin-left: 18px;
}
.bg-circle-icon svg:hover .svg-element, .bg-circle-icon.active svg .svg-element{
    fill: #0072BC;
}
.icon-fist {
    opacity: 1;
    animation: opacity 1s linear infinite;
}
@keyframes opacity {
  to {
    opacity: 0;
  }
}
.icon-fist2 {
    opacity: 1;
    animation: opacity 0.4s linear infinite;
}
@keyframes opacity {
  to {
    opacity: 0;
  }
}
.icon-fist3 {
    opacity: 1;
    animation: opacity 0.4s linear infinite;
}
@keyframes opacity {
  to {
    opacity: 0;
  }
}
.icon-fist4 {
    opacity: 1;
    animation: opacity 0.4s linear infinite;
}
@keyframes opacity {
  to {
    opacity: 0;
  }
}
.tools-radial-grid {
    display: grid;
    grid-template-rows: 70px 70px 70px 70px 70px 70px;
    grid-template-columns: auto;
    width: 600px;
    margin: 0 auto;
}

.tool.tool-lister {
    text-align: center;
    position: relative;
    top: -20px;
}
.arrows-tool-wrapper img {
    cursor: pointer;
}
.arrows-tool-wrapper .tools-go-left:hover, .arrows-tool-wrapper .tools-go-right:hover{
    cursor: pointer;
}
.arrows-tool-wrapper .tools-go-left:hover svg path, .arrows-tool-wrapper .tools-go-right:hover svg path {
    fill: #0072BC;

}
.bg-circle-icon {
  height: 65px;
  width: 65px;
  background-color: #f6f6f6;
  border-radius: 50%;
  display: inline-block;
  transition: all .2s ease-in-out;
}
.bg-circle-icon:hover {
     transform: scale(1.1);
     cursor: pointer;

}
.bg-circle-icon.active {
    transform: scale(1.1);
    cursor: pointer;
}
.bg-circle-icon svg{
    position: relative;
}
.tool .bg-circle-icon.tool1 svg {
    top: 4px;
    right: 1px;
}
.tool .bg-circle-icon.tool2 svg {
    left: 6px;
    top: 7px;
}
.tool .bg-circle-icon.tool3 svg {
    left: 9px;
    top: 8px;
}
.tool .bg-circle-icon.tool4 svg {
    left: 6px;
    top: 7px;
}
.tool .bg-circle-icon.tool5 svg {
    left: 6px;
    top: 7px;
}
.tool .bg-circle-icon.tool6 svg {
    left: 6px;
    top: 8px;
}
.tool .bg-circle-icon.tool7 svg {
    left: 8px;
    top: 7px;
}
section.tools-radial .more-tools a{
    margin-top: 40px;
    background: #0072BC;
    padding: 15px 30px;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    transition: all .1s ease-in-out;
    font-size: 1.6rem;
}
section.tools-radial .more-tools a:hover{
    background-color: #1a5cc0;
    transition: all .1s ease-in-out;
}
.buttonblue{
    margin-top: 40px;
    background: #0072BC;
    padding: 15px 30px;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    transition: all .1s ease-in-out;
    font-size: 1.6rem;
    -webkit-box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
    box-shadow: 0 13px 27px -5px rgba(50,50,93,.25), 0 8px 16px -8px rgba(0,0,0,.3);
    display: block;
    max-width: 270px;
    margin: 0 auto;
    margin-bottom: 30px;
    cursor: pointer;
}
.buttonblue:hover{
    background-color: #1a5cc0;
    transition: all .1s ease-in-out;
}
section.tools-radial .more-tools {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 30px;
}
section.tools-radial .titler-wrapper {
    margin:0 auto;
    position: absolute;
    left: 50%;
    margin-left: -128px;
    text-align: center;
    margin-top: 140px;
    color: #FFF;
}
section.tools-radial .titler-wrapper .titler {
    width: 266px;
    margin: 0 auto;
    text-align: center;
}
section.tools-radial .titler-wrapper .titler #tool-img-white{
    height: 60px;
    width:60px;
    margin: 0 auto;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool1{
    background: url("../icons/icons8-driving-guidelines-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool2{
    background: url("../icons/icons8-licence-plate-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool3{
    background: url("../icons/icons8-cash-in-hand-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool4{
    background: url("../icons/icons8-checked-user-male-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool5{
    background: url("../icons/icons8-fraud-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool6{
    background: url("../icons/icons8-speedometer-500-white.png");
    background-size: cover;
}
section.tools-radial .titler-wrapper .titler #tool-img-white.tool7{
    background: url("../icons/icons8-law-filled-500-white.png");
    background-size: cover;
}
section.tools-radial .titler h3{
    font-size: 2rem;
    margin-bottom: 15px;
}
section.tools-radial .titler p {
    font-size: 1.8rem;
}
section.tools-radial .titler .titler-divider {
    width:60px;
    background-color: #FFF;
    height:3px;
    margin: 0 auto;
}
.arrows-mobile {
    display: none;
}
/*end: tools radial*/

/*start: SUPPORT*/
.support {
    background-color: #b2b2b2;
    color: #FFF;
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: auto;
    grid-column-gap: 20px;
    padding: 20px 0 20px;
    align-items: center;
    font-size: 1.5rem;
}
.support .doubts {
    text-align: right;
}
.support .doubts .doubts-txt {
    font-weight: bold;
}
.support .contact-details{
    border-left: 1px solid #FFF;
}
.support .other-contact {
    padding-left: 20px;
    border-left: 1px solid #FFF;
}
.support .chat-w-us {
    color: #FFF;
    background-color: #0072BC;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 15px;
    margin-left: 20px;
    cursor: pointer;
}
.support .chat-w-us a {
    text-decoration: none;
    color: #FFF;
    transition: all .2s ease-in-out;
}
.support .chat-w-us:hover{
    background-color: #1a5cc0;
    transition: all .2s ease-in-out;
    color: #FFF;
}
.support .email-address {
    padding-left: 20px;
    margin-right: 20px;
    padding-top: 10px;
    }
.support .contact-email, .support .contact-details{
    font-weight: 200;
    align-items: center;
}
.support .contact-details, .other-contact, .email-address{
    float: left;
}
@media (max-width: 1010px) {
    .support {
        grid-template-columns: 1fr;
    }
    .support .doubts{
        text-align: center;
        margin-bottom: 10px;
    }
    .support .contact-details, .other-contact, .email-address{
        text-align: center;
        float: none;
    }
    .support .other-contact, .support .contact-details {
        border: 0;
    }
}
/*end: SUPPORT*/

/*FOOTER*/
footer {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00c2be+0,0695D6+100 */
    background: #00c2be; /* Old browsers */
    background: -moz-linear-gradient(45deg, #00c2be 0%, #0072BC 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #00c2be 0%,#0072BC 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #00c2be 0%,#0072BC 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c2be', endColorstr='#0072BC',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #FFF;
    padding: 40px 15px 0;
}

footer .branding {
    margin-bottom: 40px;
    max-width: 15rem;
}
footer  h3 {
    margin-bottom: 40px;
}
footer ul {
    margin-left: 0;
    padding-left: 20px;
}
footer .disclaimer-footer {
    font-size: 1.2rem;
    text-align: center;
    padding-bottom: 20px;
}
footer .container, .post-footer .container {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

footer .footer-cols {
    /* display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; */
    /* grid-column-gap:20px;
    grid-template-rows:auto 40px; */
    font-family: 'proxima-nova'
}
footer .footer-cols ul li {
    margin-bottom: 17px;
}
footer .footer-cols ul li a {
    text-decoration: none;
    color: #FFF;
}
footer .footer-cols ul li a:hover {
    font-weight: bold;
}
footer .footer-cols ul.lang-selector li a:hover {
    font-weight: normal;
}
footer .lang-selector {
    list-style: none;
    cursor: pointer;
}
footer .social {
    margin-top: 30px;
}
footer .communityfooter{
    margin-right: 5px;
    position: relative;
    top: 4px;
}
footer .link-utube {
    position: relative;
    top: 3px;
    margin-left: 4px;
}
footer .afip-cace-wrapper a{
    margin-right: 8px;
}
footer .afip-cace-wrapper .cace-logo{
    position: relative;
    top: -8px;
}
footer .afip-cace-wrapper .cace-logo img {
    width: 42px;
}
/*start: hero header*/
.hero-pricing{
    background-color: #33caa5;
    padding: 40px 0 40px;
    text-align: center;
}
.hero-pricing h3 {
    color: #FFF;
    font-family: 'proxima-thin';
    margin: 0;
    font-size: 3rem;
}
.hero-grid{
    display: grid;
    grid-template-columns:2fr 1fr;
    max-width: 1170px;
    margin: 0 auto;
    align-items: center;
    min-height: 550px;
}
.hero-grid p {
    font-size: 2.0rem;
}
.hero-grid .left {
    font-family: 'proxima-nova';
    font-size:3rem;
    color: #FFF;
    align-self: start;
    /* padding-top: 90px; */
    padding-top: 30px;
}
.hero-cta {
    padding: 15px 25px;
    border-radius: 7px;
    font-family: 'proxima-nova';
    font-size: 22px;
    color: #fff;
    background-color: #0072BC;
    text-decoration: none;
    margin-top: 10px;
    border: none;
     outline: none;
     transition: all .2s ease-in-out;
     /* cursor:pointer; */
         width: 220px;
             text-align: center;
}
/*end: hero header*/
.join-green-text .hero-cta {
    font-size: 1.4rem;
}
.join-green-text .annual-disclaimer {
    font-weight: bold;
}
.hero-cta:hover {
    /* background-color: #1a5cc0; */
    transition: all .2s ease-in-out;
    /* cursor:pointer; */
}
.hero-grid .else {
    align-items: center;
    align-self: start;
    /* padding-top: 0px; */
    padding-top: 40px;
    margin: 0 auto;

}
.hero-grid .else img {
  width: 300px!important;
  height: 343px;
  object-fit: cover;
  object-position: 0% 0%;
  margin-top: 60px;
}
 .hero-cta .disclaimer-btn {
    font-size: 1.2rem;
}
.hero-grid .hero-cta:active, .hero-grid .hero-cta:focus {
     outline: none;
}

/*DROPDOWN*/
.dropdown-content {
    color: #797979;
    right: 0;
    display: none;
    position: absolute;
    background-color: #FFF;
    min-width: 160px;
    z-index: 1;
    padding: 10px;
    opacity: 0.8;
}

ul.lang-selector .dropdown-content a {
    float: none;
    color: #797979;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

footer .footer-cols .dropdown-content a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}

/*section centered video*/
.section-centered-title{
    text-align: center;
    margin-bottom: 50px;
}
.section-centered-title span, .section-centered-title-alt span{
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
    font-size: 2.5rem;
    color: #585858;
    padding:0 20px 7px;
    background: url("../img/titles-dec.svg") no-repeat;
    background-position: bottom left;
    background-size: auto;
}
.section-centered-title-alt{
    text-align: center;
    margin-left: -30px;
}

.section-centered-title-smaller{
    text-align: center;
    margin-bottom: 50px;
    max-width: 60%;
    margin: 0 auto;
}
.section-centered-title-smaller span{
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
    font-size: 1.6rem;
    color: #585858;
    padding:0 20px 7px;
    background: url("../img/titles-dec.svg") no-repeat;
    background-position: bottom left;
    background-size: auto;
}

/*Section Mobile*/
section.mobile {
    background-color: #f9f9f9;
    padding-top: 40px;
    max-width: 100vw;
    overflow: hidden;
}
.mobile-text {
    max-width: 970px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    padding: 0 20px;
    text-align: center;
}
@media (max-width: 860px) {
    .mobile-text {
        grid-template-columns:1fr;
        text-align: center;
    }
    div.stores{
        margin: 30px auto;
        text-align: center;
        width: 340px;
    }
}
.mobile-text h3 {
    font-size: 2.6rem;
    color: #585858;
    font-weight: normal;
}
h3 strong, .text strong {
    color: #2f2f2f;
}
.mobile-text p {
    color: #989898;
}
.mobile-text > div{
    padding: 46px 0 40px;
}
.mobile-text .mobiles {
    padding: 0;
    justify-self: center;
    width: 100%;
}
.mobiles img{
    max-width: 100%;
    max-height: 100%;
    position: relative;
    z-index: 9;
    padding-left: 50px;
    margin-top:-20px;
}
div.stores {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 150px 150px;
    grid-column-gap: 40px;
}
div.stores img {
    width: 100%;
    z-index: 2;
    position: relative;
    bottom: 0px;
    transition: all .2s ease-in-out;
}
/* SUPPORT SEPARATOR */

/*Prices*/
.payment-options {
    text-align: center;
}
.payment-options img{
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
}
.mp-img{
    margin-top: 20px;
}
section.prices {
}
.toggler-wrapper ul,
  .toggler-wrapper li {
  list-style: none;
  margin: 0;
  padding: 0;
  }
  .toggler-wrapper .tg-list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  }
  .toggler-wrapper .tg-list-item {
  margin: 0;
  }
  .toggler-wrapper h2 {
  color: #777;
  }
  .toggler-wrapper h4 {
  color: #999;
  }
  .toggler-wrapper .tgl {
  display: none;
  }
  .toggler-wrapper .tgl, .toggler-wrapper .tgl:after, .toggler-wrapper .tgl:before, .toggler-wrapper .tgl *, .toggler-wrapper .tgl *:after, .toggler-wrapper .tgl *:before, .toggler-wrapper .tgl + .tgl-btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  }
  .toggler-wrapper .tgl::-moz-selection, .toggler-wrapper .tgl:after::-moz-selection, .toggler-wrapper .tgl:before::-moz-selection, .toggler-wrapper .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {
  background: none;
  }
  .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
  background: none;
  }
  .toggler-wrapper .tgl + .tgl-btn {
  outline: 0;
  display: block;
  width: 4em;
  height: 2em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  }
  .toggler-wrapper .tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  }
  .toggler-wrapper .tgl + .tgl-btn:after {
  left: 0;
  }
  .toggler-wrapper .tgl + .tgl-btn:before {
  display: none;
  }
  .toggler-wrapper .tgl:checked + .tgl-btn:after {
  left: 50%;
  }
  .toggler-wrapper .tgl-light + .tgl-btn {
  background: #DDDDDD;
  border-radius: 2em;
  padding: 2px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  }
  .toggler-wrapper .tgl-light + .tgl-btn:after {
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  }
  .toggler-wrapper .tgl-light:checked + .tgl-btn {
  background: #0072BC;
  }
.toggler-wrapper{
    display: grid;
    grid-template-columns:1fr 65px 1fr;
    grid-column-gap:5px;
    margin:15px 0 35px;
}
.toggler-wrapper .price-txt {
    font-size: 1.4rem;
    justify-self: end;
    line-height: 31px;
}
.toggler-wrapper .price-txt.last{
    justify-self:start;
}
.price-box-main{
    position: relative;
    background: #fff;
}
.price-box-main .table-header {
    text-align: right;
    margin-bottom: 20px;
    font-weight: bold;
}
.price-list {
    display: grid;
    grid-template-columns: auto 120px;
    grid-template-rows: 1fr;
    font-size: 1.5rem;
    grid-row-gap: 1rem;
    color: #797979;
}
.price-list span {
       font-size: 0.8rem;
       margin-left: 4px;
}
.price-list .right-it{
    justify-self: end;
    line-height: 27px;
    position: relative;
    bottom: 8px;
    font-size: 2rem;
}
.price-list .right-it span.price-txt-swap {
    font-size: 2rem;
}
.price-list .right-it span {
    font-size: 1.3rem;
}
.price-box-main ul.price-list {
    margin: 0;
    list-style:none;
    font-size: 2rem;
    padding-left: 30px;
}
.price-box-main ul.price-list li {
    margin-bottom: 10px;
}
.price-boxes .price-box {
    box-shadow: 0px 3px 20px 1px rgba(0,0,0,0.36);
    max-width: 600px;
    margin: 0 auto 20px;
}
.price-boxes .price-box .header {
    background-color: #33caa5;
    color: #FFF;
    font-family: 'proxima-nova';
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 5px;
}
.price-boxes .price-box .price {
    background-color: #FFF;
    margin:0 auto;
    color: #717171;
    font-size: 2.2rem;
    text-align: center;
    padding: 5px;
}
.price-boxes .price-box .price sup{
    font-size: 1.5rem;
}
.prices-wrap{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-template-rows: repeat(3,1fr);
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1375px;
    margin: 0 auto;
}
.prices .discount {
    font-family: 'proxima-nova';
    font-size: 1.1rem;
    text-align: center;
    color: #717171;
    padding-bottom: 20px;
}
.prices .discount-disclaimer {
    font-family: 'proxima-thin';
    text-align: center;
    color: #000000;
    margin: 25px 0 0;
    font-size: 1.1rem;
}
.prices .btn-try {
    margin: 0 auto;
    text-align: center;
}

/* STAFF */

.slider-nav .staff-item {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1;
    height: 250px;
    outline: 0;
    border: 0;
}
.slider-for .staff-item.slick-slide {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 1;
    height: 300px;
    outline: 0;
}
.slider-nav .staff-item .staff-post{
    display: none;
}
.slider-for .staff-item .staff-post {
    position: relative;
    top: 58px;
    left: 30px;
}
.staff-post .staff-name{
    color: #797979;
    font-weight: 700;
    font-size: 2rem;
}
.staff-post .staff-post-child {
    color: #797979;
    font-size: 1.8rem;
}
.slider-for .slick-slide img {
    width: 300px;
    float: right;
}
.slider-nav .slick-slide img {
    max-width: 145px;
}
@media (max-width: 968px) {
    .slider-nav .slick-slide img {
        max-width: 120px;
    }
    .header-grad-wrap.pricing-wrap{
        height: auto;
        max-height: none;
    }
}
@media (min-width: 300px) and (max-width: 771px) {
    .hidden-clearfix {
        height: 70px;
        clear: both;
        display: block;
    }
    .slider-for .slick-slide img {
        width: 150px;
    }
    .slider-for .staff-item.slick-slide{
        height: 190px;
    }
}
section.our-team .slider-for {
    max-width: 100%;
    margin: 0 auto;
}
section.our-team h3 {
    padding: 40px 0 0;
    margin: 0 0 50px;
    text-align: center;
    color: #797979;
    font-size: 2.2rem;
}
section.our-team .team-slider {
    padding-bottom: 40px;
}
section.our-team .values-decorator {
    width: 100px;
    height: 3px;
    background-color: #797979;
    margin: 1rem auto 3rem;
}
section.our-team {
    background-color: #f6f6f6;
}
/*END STAFF*/



.logo-grid-item{
    align-self: center;
    grid-column-start:2;
    grid-column-end:3;
    grid-row-start:2;
    grid-row-end:4;
}
section.join-us{
    background-color: transparent;
    display: grid;
    grid-template-columns:repeat(7,1fr);
    grid-template-rows:repeat(4,1fr);
    margin-top: 60px;
    padding-bottom: 40px;
}
.join-green{
    background-color: #0072BC;
    grid-column-start: 1;
    grid-column-end: 8;
    grid-row-start: 2;
    grid-row-end: 4;
    z-index: 7;
}
.join-green.alt{
    grid-column-start: 1;
    grid-column-end: 8;
    grid-row-start: 2;
    grid-row-end: 4;
    z-index: 7;
    background-color: #4194d8;
}
.join-green-text{
    padding-right: 2rem;
    background-color: #0072BC;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 4;
}
.join-green-text.alt{
    background-color: transparent;
    position: relative;
    top: 20px;
    color: #FFF;
    left: -50px;
}
.join-green-text.alt p {
    color: #FFF;
    max-width: 525px;
    margin: 0;
}
.join-green-text.alt h2 {
    color: #FFF;
    font-size: 3rem;
    font-weight: normal;
}
.join-green a.block-lvl-btn {
    background-color: #4194d8;
}
.floated-rect{
    color: #565656;
    padding: 2.5rem 25px;
    z-index: 9;
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 4;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}
.disclaimer-white {
    background-color: #FFF;
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 3;
    position: relative;
    text-align: center;
    color: #797979;
    font-size: 1.6rem;
    left: -50px;
}
.clearfix-prices{
    height: 1px;
    clear: both;
    display: block;
    height: 155px;
}
.last-pricing-module {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    position: relative;
    top: -63px;
}
.try-btn-pricing {
    text-align: center;
    margin-top: 15px;
}
.try-btn-pricing a {
    font-size: 1.4rem;
    color:#797979;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.try-btn-pricing a:hover {
    color:#797979;
    text-decoration: underline;
    transition: all .2s ease-in-out;
}
.try-btn-pricing p {
    margin-top: 5px;
}
.pricing-text p {
    font-size: 1.8rem;
}
.disclaimer-white .annual-disclaimer{
    margin-top: 25px;
}
.last-pricing-module .hero-cta{
    font-size: 1.4rem;
}
.last-pricing-item {
    grid-column-start: 2;
    grid-column-end: 5;
    text-align: center;
    left: -43px;
    position: relative;
}
.floated-rect.alt{
    padding: 2.5rem 20px;
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 4;
}
.floated-rect .block-lvl-btn {
    margin-top: 0;
}
.floated-rect .btn-group-wrapper {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 25px;
}
.floated-rect .br-edition .btn-group button {
    padding: 10px 7px;
}
.floated-rect .btn-group{
    display: inline-block;
    width:100%;
}
.spacer-grid-percent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-self: center;
    text-align: center;
    margin-top: 5px;
    color: #0072BC;
}
.floated-rect .btn-group button {
    background-color: #FFFFFF;
    border: 1px solid #a5a5a5;
    color: #565656;
    padding: 10px 24px;
    cursor: pointer;
    float: left;
    transition: background-color 0.2s;
    width: 50%;
}
.floated-rect .btn-group button.right {
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.floated-rect .btn-group button:not(:last-child) {
    border-right: none; /* Prevent double borders */
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* Clear floats (clearfix hack) */
.floated-rect .btn-group:after {
    content: "";
    clear: both;
    display: table;
}

/* Add a background color on hover */
.floated-rect .btn-group button:hover, .btn-group button.active, .btn-group button.active:hover {
    background-color: #0072BC;
    color: #FFFFFF;
    outline: none;
    transition: background-color 0.2s;
}
.floated-rect .btn-group button:not(.active):hover {
    background-color: #487ca9;
}
section.join-us h2{
    color: #FFF;
    font-size: 1.9rem;
    margin: 0 auto;
    padding-top: 3rem;
}
@media (max-width: 967px) {
    .prices-wrap {
            grid-template-rows: auto;
    }
    .join-green-text.alt {
        grid-column-start: 1;
        grid-column-end: 8;
        top: -20px;
        max-width: 510px;
        margin: 0 auto 20px;
        left: 0;
        text-align: center;
    }
    .disclaimer-white{
        grid-column-start: 1;
        grid-column-end: 8;
        clear: both;
        display: block;
        top: 125px;
        background: transparent;
        max-width: 510px;
        margin: 0 auto;
        left: 0;
    }
    .clearfix-prices {
        height: 70px;
    }
    .try-btn-pricing a {
        color: #FFF;
    }
    .try-btn-pricing a:hover {
        text-decoration: none;
        color: #FFF;
        opacity: 0.8;
    }
    .floated-rect{
        margin-top: 3rem;
        padding: 2.5rem 20px;
        grid-column-start: 2;
        grid-column-end: 7;
        grid-row-start: 4;
        top: 100px;
        position: relative;
    }
    .annual-disclaimer {
        color: #FFF;
    }
    .last-pricing-item {
        grid-column-start: 1;
        left: 0;
    }
    .last-pricing-module {
        grid-template-columns: repeat(1,1fr);
    }
    .stats-divider .stats div {
        font-size: 0.60em;
    }
    .eletitle {
    font-size: 0.75em!important;
    }
    .eleimg {
    max-width: 45px!important;
    }
    section.metrics{
        padding-bottom: 0px;
    }
}
/*Terms and Conditions*/
.terms-and-conditions .terms-header {
    font-size: 2rem;
}
.terms-cons{
    font-size: 2.2rem;
    padding-bottom: 20px;
}
section.terms{
    max-width: 1068px;
    margin: 0 auto;
}
/*Tools*/
section.tools-radial .pre-tools {
    text-align: center;
    margin-bottom: 55px;
}
section.tools-radial .pre-tools h3{
    font-size: 2.6rem;
    color: #565656;
    text-align: center;
    font-weight: 500;
}
section.tools-grid-product{
    display: grid;
    max-width: 1180px;
     grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      /*grid-column-gap: 10px;
      grid-row-gap: 15px; */
    margin: 20px auto;
}
section.tools-grid-product > div {
    padding: 20px;
    /*-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    border-radius: 3px; */
}
.competition-tool {
    background-color: #FFF;
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}
.competition-word{
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 3;
    background: #0072BC;
    color: #FFF;
}

.bloqueos-module {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
    background-color: #0072BC;
    justify-self: center;
    align-self: center;
    text-align: center;
}
.multiaccount-module {
    justify-self: center;
    align-self: center;
    text-align: center;
}
.ventas-module{
    background: #0072BC;
    grid-column-start:3;
    grid-column-end:5;
    grid-row-start:3;
    grid-row-end:6;
}

.screenshot-one {
background: #FFF;

    grid-column-start:2;
    grid-column-end:3;
    grid-row-start:3;
    grid-row-end:5;
}

sup {
    position: relative;
    top: 4px;
    margin-right: 2px;
}

.tools-grid-productB {
    padding-top: 40px;
    display: grid;
    max-width: 1180px;
    grid-template-columns: 300px 1fr 1fr;
    margin: 0px auto;
      grid-column-gap: 10px;
      grid-row-gap: 15px;
}
.competencia-modulo {
grid-column-start: 2;
    grid-column-end: 4;
        background:url("binoculars.svg.html") no-repeat;
        background-position: bottom right;
        background-size: 50%;
}

.publicaciones-modulo {
   grid-column-start: 2;
    grid-column-end: 4;
}

.tools-grid-productB ul {
    margin: 0;
    padding-left: 0;
}
.wrapper{
    /* padding: 0 20px 0; */
    padding: 0;
}
.wrapperB{
    background-color: #f5f5f5;
}
section.tools-grid-productB > div h2 {
    margin-top: 5px;
}
section.tools-grid-productB > div {
    padding: 20px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    border-radius: 3px;
    align-self: center;
    background-color: #FFF;
}
.market-modulo {
    grid-row-start:3;
    grid-row-end:4;
    grid-column-start: 2;
    grid-column-end: 4;
        background:url("podium.svg.html") no-repeat;
        background-position: bottom right;
        background-size: 30%;
}
section.tools-grid-productB .no-deco {
    box-shadow: none;
    justify-self: top;
    align-self: top;
    background: transparent;
}
section.tools-grid-productB ul li {
    background: url("checkmark.svg.html") no-repeat;
    background-size: 15px;
    padding-left: 30px;
    list-style-type: none;
    background-position: left center;
    margin-bottom: 3px;
}
/* STAFF */

.intro-staff h3 {
    padding: 0px 0 10px;
    margin: 0;
    color: #FFF;
    font-size: 3rem;
    font-weight: 400;
}
.intro-staff .staff-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    padding: 60px 95px 60px;
    max-width: 1080px;
    margin: 0 auto;
}
.staff-grid .staff-txt {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: normal;
    align-self: center;
}
section.our-values {
    margin-top: 10px;
}
section.our-values h3 {
    padding: 40px 0 0;
    margin: 0;
    text-align: center;
    color: #797979;
    font-size: 2.4rem;
}
section.our-values .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 3.8rem;
    padding: 50px 95px 0px;
    max-width: 1280px;
    margin: 0 auto;
}
@media (min-width: 491px) and (max-width: 834px) {
    section.our-values .values-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 2rem;
        grid-row-gap: 3.8rem;
        padding: 50px 95px 50px;
    }
}
@media (max-width: 490px) and (max-width: 833px) {
    section.our-values .values-grid{
        padding: 50px 20px 50px;
        grid-template-columns: 1fr;
    }
}
section.our-values .value-item {
    color: #797979;
    text-align: center;
    max-width: 250px;
    justify-self: center;
}
section.our-values .subtitle, section.our-values h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
}
section.our-values h4 {
    font-size: 1.8rem;
}
section.be-a-part h3 {
    padding: 40px 0 0;
    margin: 0;
    text-align: center;
    color: #797979;
    font-size: 2.1rem;
}
section.our-values .value-item p {
    font-size: 1.4rem;
}
.hr-wrapper {
    text-align: center;
}
section.be-a-part{
    padding: 40px 20px 80px;
}
.be-a-part p {
    margin: 30px auto 50px;
    max-width: 800px;
    color: #797979;
    text-align: center;
    font-size: 1.6rem;
}
.be-a-part .chat-w-us a {
    color: #FFF;
    background-color: #0072BC;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 15px;
    clear: both;
    text-decoration: none;
    font-size: 1.8rem;
}
.be-a-part a:hover{
    background-color: #0072BC;
    transition: all .2s ease-in-out;
}
.be-a-part a:hover{
    background: #1a5cc0;
    transition: all .2s ease-in-out;
    color: #FFF;
}
/*start: Icon Responsive Menu*/

.spinner-master2 * {transition:all 0.4s;-webkit-transition:all 0.4s;box-sizing:border-box;}

.spinner-master2 {position:relative;margin:50px auto;height:50px;width:50px;}

.spinner-master2 input[type=checkbox] {display:none;}
.spinner-master2 label {cursor:pointer;position:absolute;z-index:99;height:100%;width:100%;top:10px;left:0;}

.spinner-master2 .spinner2 {position:absolute;/*height:5px;*/height:3px;width:100%;background-color:#797979;}

.spinner-master2 .diagonal.part-1 {position:relative;float:left;}
.spinner-master2 .horizontal {position:relative;float:left;margin-top:7px;}
.spinner-master2 .diagonal.part-2 {position:relative;float:left;margin-top:6px;}

.spinner-master2 input[type=checkbox]:checked ~ .spinner-spin2 > .horizontal {opacity: 0;}
.spinner-master2 input[type=checkbox]:checked ~ .spinner-spin2 > .diagonal.part-1 {transform:rotate(135deg);-webkit-transform:rotate(135deg);margin-top:12px;top:-2px;}
.spinner-master2 input[type=checkbox]:checked ~ .spinner-spin2 > .diagonal.part-2 {transform:rotate(-135deg);-webkit-transform:rotate(-135deg);margin-top:-16px;}

/*end: Icon Responsive Menu*/
section.tools-intro{
    padding: 0px 20px 40px;
}
section.tools-intro {
    color:#FFF;
}
section.tools-intro .liner-left{
    border-left: 1px solid #FFF;
    padding-left: 20px;
}
section.tools-intro .tools-intro-grid {
    max-width: 1080px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
}
section.tools-intro .tools-intro-grid div {
    align-self: center;
}
section.tools-intro .tools-intro-grid h3 {
    color:#FFF;
    font-weight: normal;
    font-size: 3rem;
    margin-bottom: 10px;
}
section.tools-intro p{
    font-size: 1.9rem;
}
section.tools-intro p.bolder{
    font-weight: 700;
}
section.tools-intro .more-tools a{
    margin-top: 40px;
    background: #0072BC;
    color: #FFF;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
section.tools-intro .more-tools a:hover{
    background-color: #1a5cc0;
    transition: all .2s ease-in-out;
}
section.tools-intro .more-tools {
    margin-top: 5px;
    margin-bottom: 30px;
}
#flip-container .card .tool-description{
    text-align: left;
    padding: 10px;
    font-size: 1.43rem;
}
#flip-container .card .tool-description p{
    margin-bottom: 8px;
}
#flip-container .card .btn-more-info {
    text-align: center;
    margin-top: 15px;
}
#flip-container .card .btn-more-info a {
    padding: 5px 10px;
    background-color: #0072BC;
    color: #FFF;
    border-radius: 5px;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
#flip-container .card .btn-more-info a:hover {
    background-color: #1a5cc0;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

@media (max-width: 770px) {
    .nav-bar {
        position: fixed;
        background-color: #FFF;
        box-shadow: 0 2px 6px rgba(0,0,0,.15);
        padding-top: 0;
        width: 100%;
    }
    .nav-bar .site-navigation a.link {
        color: #797979;
    }
    .nav-bar .site-navigation li.last {
        margin-right: 0;
    }
    .nav-bar.sticky-nav-bar .branding-logo {
        margin-bottom: 10px;
        margin-top: 10px;
        /*background: url("../img/logoblack.png") no-repeat !important;*/
        background-position: top left !important;
        /*background-size: cover !important;*/
        width: 190px;
        height: 10px;
    }

    .nav-bar .branding-logo {
        /*background: url("../img/logoblack.png") no-repeat !important;*/
        background-position: top left !important;
        /*background-size: cover !important;*/
        width: 190px;
        height: 10px;
        margin-bottom: 10px;
        /* margin-left: 10px; */
        margin-top: 10px;
    }
    .nav-bar .site-navigation a.link:hover{
        color: #797979;
        transition: all .2s ease-in-out;
    }
    .nav-bar li.cta-menu.log-in a {
        color: #0072BC;
        border: 1px solid #0072BC;
        transition: all .2s ease-in-out;
    }
    .nav-bar li.cta-menu.log-in a:hover {
        color: #FFF;
        background-color: #0072BC;
        transition: all .2s ease-in-out;
    }
    .hero .hero-grid{
        display: grid;
        grid-template-columns:1fr;
        margin: 0 auto;
        align-items: center;
        text-align: center;
        height: auto;
    }
    .hero .hero-grid .else {
        grid-row-start: 2;
        padding-top: 20px;
    }
    .hero .hero-grid .else img {
        /*max-width: 350px;
        margin: 0 auto;*/
        display: none;
    }
    .textcert3{
      display: none;

    }
    section.video-wrapper{
        top: 0;
    }
    .header-grad-wrap{
        top: 0;
        height: auto;
    }
    .hero-grid .left{
        padding-top: 85px;
    }
    .hero-grid p {
        max-width: 95vw;
        margin:15px auto 20px;
    }
    .hero .hero-grid {
        min-height: 0;
        /* padding-bottom: 20px; */
    }
    .video-wrapper .video-bg {
        width: auto;
    }
    .video-wrapper .video-frame {
        padding-left: 0;
        padding-right: 0;
    }
    .tools-radial{
        margin-top: 40px;
    }
    .operators-grid{
        grid-template-columns: 1fr 1fr;
        grid-column-gap:40px;
    }
    .multiaccount-operators {
        top: 0;
    }
    .mobiles img {
        max-width: 450px;
        max-height: none;
        /* max-width: none; */
        padding-left: 0;
        margin-bottom: 10px;
    }
    .trusted-by .main-wrapper {
      padding: 0 20px;
      max-width: 1170px;
      text-align: center;
      margin: 0 auto;
        }
    .trusted-by{
      margin-top:0px;
    }
    footer {
        padding: 40px 20px 0;
    }
    .header-grad-wrap.pricing-wrap {
        height: auto;
    }
    section.tools-intro{
        padding:40px 20px 40px;
    }
    section.tools-radial .more-tools {
        margin-bottom: 0px;
    }
    .h3s{
      padding-bottom: 30px;
      padding-top: 30px;
    }
    .h4s{
      display:none;
    }
    .h5s{
      display:block;
    }

}

@media (min-width:10px) and (max-width: 550px) {
  section.tools-radial .more-tools{
    margin-top:20px!important;
  }
}
@media (min-width:375px) and (max-width: 550px) {
  section.tools-radial .more-tools{
    margin-top:70px!important;
  }
}
@media (min-width:400px) and (max-width: 680px) {
    .video-frame iframe, .staff-video iframe{
        width: auto;
        width:-webkit-fill-available;
    }
    section.our-values{
        top: -10px;
        position: relative;
    }
    .tools-grid-row{
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .tools-grid-row > * {
        height: 270px;
        place-self: center;
    }
}
@media  (max-width: 900px) {
    .intro-staff .staff-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        padding: 130px 25px 50px;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    .header-grad-wrap, .header-grad-wrap.pricing-wrap {
        max-height: none;
        height: auto;
    }
}

@media only screen and (max-width:480px) {
    body {
        overflow-x: hidden;
    }
    footer .footer-cols {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    footer .footer-cols > div {
        display: block;
        clear: both;
    }
    .support .doubts-txt {
        display: block;
        padding-bottom: 25px;
    }
    .support .chat-w-us {
        margin-left: 0;
    }
    .mobile-text > div {
        padding-top: 0;
    }
    .clients-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .operators-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }
    .operators-grid .multi, .operators-grid .ope {
        justify-self:center;
    }
    .stats-divider {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 40px;
        padding: 20px 0 0 0;
        max-width: 1280px;
        margin: 0 auto;
        margin-top: -20px;
    }
    section.mobile div.stores {
        grid-template-columns: auto auto;
        grid-column-gap:10px;
    }
    .mobiles img {
        width: calc(100vw - 17%);
        left: -15px;
    }
    .video-frame iframe, .staff-video iframe{
        width: auto;
    }
    .tools-radial {
        background-size: 80%;
    }
    .tools-radial-grid{
        transform: scale(0.7);
        position: relative;
        right: 94px;
        bottom: 50px;
        max-width: 100vw;
    }
    section.tools-radial .titler-wrapper{
        transform: scale(0.8);
        margin-left: -132px;
        margin-top: 100px;
    }
    section.our-values {
        top: 0;
    }
    /*Pricing*/
    .join-green-text.alt {
        padding: 0 20px 0;
        margin-bottom: 20px;
    }
    /*Tools*/
    .spacer.card {
        display: none;
    }
    .floated-rect .btn-group button{
        padding: 10px 15px;
    }
    .floated-rect .br-edition .btn-group button {
        padding: 10px 5px;
        font-size: 11px;
    }
}
@media only screen and (min-width:500px) and (max-width:600px) {
    .stats-divider {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 40px;
        padding: 50px 0;
        max-width: 1280px;
        margin: 0 auto;
    }
    .tools-radial-grid{
        width: 514px;
        margin: 0 auto;
        transform: scale(0.95);
    }
    .svg-liner{
        margin-left: -20px;
        transform: scale(0.90);
    }
    .tools-radial {
        background-size: 70%;
        background-position: center 170px;
    }
    .tools-radial-position{
        position: relative;
        top: -75px;
    }
    section.tools-radial .titler-wrapper {
        margin-top: 150px;
    }
}
@media only screen and (min-width:430px) and (max-width: 499px ){
    .tools-radial-grid{
        width: 514px;
        margin: 0 auto;
        transform: scale(0.85);
        right:29px;
    }
    .svg-liner{
        margin-left: -20px;
        transform: scale(0.80);
    }
    .tools-radial {
        background-size: 70%;
        background-position: center 135px;
    }
    section.tools-radial .titler-wrapper {
        margin-top: 98px;
    }
    section.tools-radial .more-tools {
        margin-top: 0;
    }

}
@media only screen and (min-width:900px) and (max-width:1079px) {
    .staff-video iframe {
        width: 450px;
    }
}
@media only screen and (max-width:1107px) {
    .spacer.card{
        display: none;
    }
}
@media only screen and (min-width:770px) {
    section.our-values {
        position: relative;
        top: -96px;
    }
    .join-green-text.alt {
        padding: 0 20px 0;
    }
}

/* Flip Container, Keep perspective */
#flip-container {
    width: auto;
    height: auto;
    margin-top: 120px;
    -webkit-perspective: 800px;
            perspective: 800px;
    text-align: center;
    max-width: 1280px;
    margin: -40px auto 40px;
}
@media only screen and (max-width:770px) {
    #flip-container {
        margin: 40px auto 40px;
    }
}
#container h1 {
    color: #ECF6CE;
    margin-bottom: 30px;
}
#container > hr {
    border: none;
    border: 1px solid #fff;
    width: 80%;
}
.card {
    margin: 10px;
    display: inline-block;
    position: relative;
    width: 250px;
    height: 260px;
    opacity: 0.85;
}
.front,
.back {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 300ms;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
    transition: transform 300ms, -webkit-transform 300ms;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    border-radius: 5px;
}
.front {
    transform: rotateY(0deg);
    text-align: center;
    /*padding: 30px;*/
}
#flip-container .front .tool{
    position: relative;
    top: 80px;
}
.front.green{
    background-color: #0072BC;
    color: #FFF;
}
.front.blue{
    background-color: #0072BC;
    color: #FFF;
}
.front.gray{
    background-color: #b2b2b2;
    color: #FFF;
}
.back {
    background: #FFF;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    /*padding: 40px 15px;*/
    color: #797979;
}
.card:hover .front {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
}
.card:hover .back {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
}
.front .contact {
    height: 120px;
    width: 120px;
    border: 5px solid #B2DBBF;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}
.front .name {
    display: inline-block;
    font-size: 18px;
    color: #fff;
}
.front .job {
    color: #fff;
}
.front hr {
    border: none;
    color: #B2DBBF;
    border: 1px solid;
}
.back .icon {
    fill: currentColor;
    color: inherit;
    height: 33px;
    width: 33px;
    margin-top: 15px;
    color: white;
}
.back .icon:hover {
    cursor: pointer;
    color: #648767;
}
#flip-container .card .tool-title {
    margin-top: 20px;
    font-size: 1.6rem;
    text-transform: uppercase;
}
#flip-container .card img {
    width: 50px;
}
#flip-container .card ul, #flip-container .card ul li {
    margin-left: 7px;
    padding-left: 1px;
    list-style-type: disc;
}
/*PROMO BR MELI FLEX*/
/*MELI EXPERIENCE BR*/
section.promo-meli{
  background-color: #0072BC;
  color: #FFF;
  min-height: 70px;
  margin-top: 2px;
    top: -180px;
    position: relative;
}
section.promo-meli .promo-meli-flex {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(5,auto);
  grid-column-gap: 5px;
  padding: 10px 0px;
}
section.promo-meli .promo-meli-flex div img {
  width: 100%;
}
section.promo-meli .promo-meli-flex div {
  align-self: center;
}

@media all and (max-width: 850px) {
  section.promo-meli{
    padding: 10px;
  }
  section.promo-meli .promo-meli-flex div img {
    width:85%;
  }
  section.promo-meli .promo-meli-flex{
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }
}

@media all and (max-width: 770px) {
    section.promo-meli {
        top: -10px;
    }
}

@media all and (max-width: 1200px) {
  section.promo-meli .promo-meli-flex{
    padding: 10px 20px;
  }
}
.arrows-tool-wrapper {
    position: relative;
    top: 142px;
    max-width: 800px;
    margin:0 auto;
}
.arrows-tool-wrapper .tools-go-left {
    float:left;
    position: relative;
    left: 5px;
}
.arrows-tool-wrapper .tools-go-right {
    float:right;
    position: relative;
    right: 5px;
}

@media all and (min-width: 370){
section.tools-radial .more-tools {
    margin-top: 30px;
}

}

@media all and (max-width: 550px) {
    .svg-liner{
        display: none;
    }
    .tools-radial-grid > .tool {
        display: none;
    }
    .arrows-mobile {
        display: inherit;
        position: relative;
        z-index: 9;
    }
    section.tools-radial .more-tools {
        /* margin-top: 0; */
    }
    section.tools-radial .titler-wrapper {
    margin-top: 0%;
    }
    .tools-radial {
        background-position: center 100px;
        padding: 0 7px 40px;
    }
    .tools-radial-grid {
        grid-template-rows: 10px 70px 70px 70px 70px;
    }
    section.tools-radial .more-tools {
        margin-top: 0;
    }
}
