@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Roboto:wght@100;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');
/* Custom page CSS
-------------------------------------------------- */
.titleDivider {
    border-top: 1px solid #747474;
    width: 100px;
    margin-left: calc(50% - 50px);
    margin-top: 20px;
}

.titleDividerLeft {
    border-top: 1px solid #747474;
    width: 100px;
    margin-left: 0px;
    margin-top: 20px;
}

.myCustomLabel {
    margin-left: 0px!important;
}

.mt-45 {margin-top: 31px;}

.linkedinLink:hover {
    transform: scale(1.2);
    transition: 0.4s;
}

.linkedinLink:hover .logo-linkedin {
    transform: scale(1.2);
    transition: 0.4s;
    opacity: 0.8;
}

.logo-linkedin {
    background-image: url(../images/linkedin.svg);
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    content: '';
    background-size: cover;
    transition: 0.4s;
    cursor: pointer;
    float: left;
    margin-right: 20px;
    margin-top: 2px;
}

.circle {
    font-weight: lighter;
    padding: 15px 20px;
    border-radius: 50%;
    border: 3px solid #1fbfb8;
    color: #ffffff;
    max-height: 74px;
    z-index: 2;
    background-color: #125fa1;
    font-size: 26px;
}

.how-it-works.row {
  display: flex;
}
.how-it-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #1fbfb8;
  z-index: 1;
}
.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid #1fbfb8;
  margin: 0;
  top: 17px;
  position: relative;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #1fbfb8;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}
.snakeTextRight {
    left: -60px;
    top: 5px;
    font-size: 20px;
}
.snakeTextLeft {
    right: -60px;
    top: 5px;
    font-size: 20px;
}


.tabsContainer {
    height: calc(100vh - 80px);
    width: 101vw;
    background-color: #fff;
    position: relative;
    overflow:hidden;

}
.myTabs {
    width: 50px;
    position: relative;
    left: 0px;
    height: calc(25vh - 20px);
    z-index: 1;
    top: 0px;
    transition: 0.4s;
    max-height: 250px;
}

.tabText {
    transform: rotate(45deg);
}

.myTabs:hover {
    width: 65px;
    transition: 0.4s;
}

.tab1 {
    background-color: #1fbfb8;
}

.tab2 {
    background-color: #05716c;
}

.tab3 {
    background-color: #1978a5;
}

.tab4 {
    background-color: #115195;
}

.nav-pills .myTabs.active, .nav-pills .show > .nav-link {
    background-color: #323232;
    width: 20px;
}

.nav-pills .nav-link {
    border-radius: 0rem;
}

.myTabContent {
    width: 100%;
    height: 100vh;
    max-height: 1000px;
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    color: #fff;
    padding: 100px;
    background-color:#fff;
    transform: translateX(0%);
    transition: 0.4s;
}

.myTabContent.active {
  animation: swipeIn 0.75s;
}

@keyframes swipeIn {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(0%);
  }
}

.programasSideImg {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    height: auto;
    margin: 0;
}

.tabImg {
    max-height: 800px;
    width: auto;
    position: relative;
    bottom: 0px;
    right: 0px;
}

.programasSideText {
    width: 80%;
    margin-left: 10%;
    line-height: 40px;
}

.myTC1 {
  background: rgb(31,191,184);
background: linear-gradient(45deg, rgba(31,191,184,1) 0%, rgba(41,154,141,1) 100%);
}
.myTC2 {
  background: rgb(5,113,108);
background: linear-gradient(45deg, rgba(5,113,108,1) 0%, rgba(8,88,84,1) 100%);
}
.myTC3 {
  background: rgb(25,120,165);
background: linear-gradient(45deg, rgba(25,120,165,1) 0%, rgba(27,100,134,1) 100%);
}
.myTC4 {
 background: rgb(17,81,149);
background: linear-gradient(45deg, rgba(17,81,149,1) 0%, rgba(21,64,111,1) 100%);
}

.sideText {
    padding: 3rem;
}

.myProcess {
    width: 100vw;
    height: 100vh;
    animation: color-me-in 50s infinite;
    position: relative;
    padding: 100px 0px;
}

@keyframes color-me-in {
    0% {background: #1978a5;}
    10% {background: #1fbfb8;}
    20% {background: #05716c;}
    30% {background: #115195;}
    40% {background:#b3a082;}
    50% {background: #1978a5;}
    60% {background: #1fbfb8;}
    70% {background: #05716c;}
    80% {background: #115195;}
    90% {background:#b3a082;}
    100% {background: #1978a5;}
}

#misvalores {
    top: -80px;
    position: relative;
    padding-top: 80px;
    margin-bottom: -80px;
}

#misprogramas {
    top: -80px;
    position: relative;
    padding-top: 80px;
    margin-bottom: -80px;
}

#mismetodologias {
    top: -80px;
    position: relative;
    padding-top: 80px;
    margin-bottom: -80px;
}

#metodologias {
    padding: 120px 0px;
    background-color: #125fa1;
    color: #fff;
}

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

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

.cardValores {
    width: 100%;
    min-height: 300px;
    text-align: center;
    padding: 30px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cardValores h1 {
    font-size: 1.35rem;
}

.cardValores h4 {
    font-size: 1.15rem;
    font-weight: 300!important;
}

.cardValores1 {
    background-color: #1978a5;
    color: #fff;
}
.cardValores2 {
    background-image: url(../images/valores2.jpg);
    background-size: cover;
}
.cardValores3 {
    background-color: #1fbfb8;
    color: #fff;
}
.cardValores4 {
    background-image: url(../images/valores4.jpg);
    background-size: cover;
}
.cardValores5 {
    background-color: #b3a082;
    color: #fff;
}
.cardValores6 {
    background-image: url(../images/valores6.jpg);
    background-size: cover;
}
.cardValores7 {
    background-color: #05716c;
    color: #fff;
}
.cardValores8 {
    background-image: url(../images/valores8.jpg);
    background-size: cover;
}
.cardValores9 {
    background-color: #115195;
    color: #fff;
}
.cardValores10 {
    background-image: url(../images/valores10.jpg);
    background-size: cover;
}

main > .container {
  padding: 60px 15px 0;
}

#executivesearch {
    height: auto;
    min-height: 70vh;
}

section#executivesearch h1 {
    padding-top: 40px;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

.wrapper {
    overflow: hidden;
}

.navbar-brand {
    width: 100px;
}

.bg-green {
    background-color: #000000;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.75rem!important;
    font-size: 13px!important;
    letter-spacing: 3px!important;
    line-height: 1.5;
    border-radius: 0.1rem!important;
}

.btn {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 2px;
}

.btn-primary {
    color: #fff;
    background-color: #474747;
    border-color: #474747;
    transition: 0.4s;
}

.btn-primary:hover {
    background-color: #000;
    border-color: #000;
    transition: 0.4s;
}

.btn-primary:focus {
    background-color: #474747;
    border-color: #474747;
}


/* ---------- Fonts ----------*/
.text-muted {
    color: #73787d!important;
}

a {
    color: #a7b0b6;
    text-decoration: none!important;
}

a:hover {
    color: #004b92;
    text-decoration: none!important;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 6px;
    text-transform: uppercase;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 1em;
    font-weight: 300;
}

h6, .h6 {
    font-size: 1rem;
    letter-spacing: 6px;
}

p strong {
    font-weight: 500;
}

.font-11 {font-size: 11px;}
.font-12 {font-size: 12px;}
.font-13 {font-size: 13px;}
.font-14 {font-size: 14px;}
.font-15 {font-size: 15px;}
.font-16 {font-size: 16px;}
.font-17 {font-size: 17px;}
.font-18 {font-size: 18px;}
.font-19 {font-size: 19px;}
.font-20 {font-size: 20px;}

.ls-0 {letter-spacing: 0px;}
.lh-20 {line-height: 20px;}
.lh-25 {line-height: 25px;}
.lh-30 {line-height: 30px;}

.titleClass {
    left: 0px;
    position: relative;
}

.titleClass:after {
    content: '';
    background-color: #474747;
    position: absolute;
    width: 100px;
    top: 50px;
    height: 1px;
    z-index: 1005;
    left: calc(50% - 50px);
}

.titleClass2:after {
    content: '';
    background-color: #474747;
    position: absolute;
    width: 100px;
    top: 50px;
    height: 1px;
    z-index: 1005;
    left: calc(50% - 50px);
}

.titleClassLeft {
    left: 0px;
    position: relative;
}

.titleClassLeft:after {
    content: '';
    background-color: #474747;
    position: absolute;
    width: 100px;
    top: 50px;
    height: 1px;
    z-index: 1005;
    left: 0px;
}




.titleClassLight:after {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 100px;
    top: 70px;
    height: 1px;
    z-index: 1005;
    left: calc(50% - 50px);
}

.text-blue {
    color: #474747;
}

@media (max-width: 768px) {
h2, .h2 {
    font-size: 1.35rem;
}
.wrapper {
    max-width: 100%;
    overflow: hidden;
}
.desktop-break {
    display: none;
}
}

/*----------- Buttons --------------*/
.btn-outline-primary {
    color: #474747;
    border-color: #474747;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #474747;
  border-color: #474747;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #999;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
    background-color: #474747;
    border-color: #474747;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #555; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 2px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    background-image: url(../images/arrow-up.svg);
    background-repeat: no-repeat;
    opacity: 0.8;
}

#myBtn:hover {
    background-color: #474747; /* Add a dark-grey background on hover */
}

@media (max-width: 768px) {
    #myBtn {bottom: 10px; right: 10px;}
}

/* ---------- Navbar header ---------- */
.navbarHome {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    background-color: transparent;
    background-color: rgb(245 245 245 / 1)!important;
    opacity: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbarHome.scrolled {
    background-color: rgb(60 60 60 / 1)!important;
    opacity: 1;
}

.nav-item {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-transform: lowercase;
    text-align: center;
}

.navbarHome-collapse.collapse.show {
    height: 100vh;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255 / 63%);
    transition: 0.4s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(255 255 255 / 100%);
    transition: 0.4s;
}

.fixed-top {
    background-color: rgb(60 60 60 / 1);
}

@media (min-width: 1199px) {
.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
}
}

@media (min-width: 768px) {
.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
}

@media (max-width: 992px) {
.collapse:not(.show) {
    display: none!important;
}
}

@media (max-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}
}

.nav-item {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #dadada !important;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #dadada !important;
    text-decoration: none;
    background-color: transparent;
    transition: 0.4s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0.125rem 0 0;
    font-size: 12px;
    text-align: left;
    list-style: none;
    background-color: rgb(92 92 92);
    background-clip: padding-box;
    border: none;
    border-radius: 2px;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.25);
}

.dropdown .dropdown-menu {
    opacity:0;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    top: 50px;
    display: none;
 }

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    top: 30px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #4a4a4a!important;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    height: 0.5em;
    left: 0.5em;
    position: relative;
    top: 0.4em;
    transform: rotate(135deg);
    vertical-align: top;
    width: 0.5em;
    border-top: 0.1em solid;
    border-right: 0.1em solid;
    border-bottom: none;
    border-left: none;
    transition: 0.4s;
}

.dropdown-toggle:hover::after {
    top: 0.65em;
    transform: rotate(-45deg);
    transition: 0.4s;
}

.navbarDivider {
    border-left: 1px solid rgb(255 255 255 / 50%);
    height: 25px;
    position: relative;
    top: 3px;
    width: 5px;
    margin-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
.dropdown-menu {
    background-color: transparent;
    box-shadow: none;
    text-align: center;
}
}

/*----------- SECTIONS ----------*/
section {
    padding: 80px 0px;
    background-color: white;
}

#home {
    height: 100vh;
    background-color: transparent;
}

.accesos {
    background: white;
    top: -120px;
    position: relative;
    z-index: 1005;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    height: 180px;
    min-height: 180px;
    overflow: hidden;
}

.accesosText {
    padding: 15px 10px 15px 0px;
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 120px;
    line-height: 16px;
}

.accesosImg {}

/*----------- FOOTER -----------*/
.footer {
    background-color: #f3f3f3;
    color: #4a4a4a!important;
    font-size: 14px;
    padding: 30px 0px 20px 0px;
}

.footerBottom {
    font-size: 12px;
    color: #fff;
    background-color: #353535;
    font-family: 'Nunito', sans-serif;
}

.footerLink a {
    color: #73787d!important;
    margin-left: 0px;
    transition: 0.4s;
    line-height: 30px;
    font-weight: 300;
}

.footerLink a:hover {
    color: #004b92!important;
    margin-left: 10px;
    transition: 0.4s;
}

.footerLink a:before {
    content: '';
    background-image: url(../images/chevron-right.svg);
    background-size: contain;
    width: 8px;
    height: 8px;
    position: absolute;
    display: none;
    margin-top: 12px;
    left: 12px;
}

.footerLink a:hover:before {
    animation: arrowIn 0.5s;
    margin-right: 2px;
    opacity: 1px;
    display: block;
}

@keyframes arrowIn {
  from {opacity: 0; margin-left:-10px;}
  to {opacity: 1;margin-left:0px;}
}


.logo-footer {
    width: 100px;
}

.logo-footer-xs {
    width: 120px;
    filter: grayscale(100%);
    transition: 0.4s;
    cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
}

.logo-footer-xs:hover {
    width: 120px;
    filter: grayscale(0%);
    transition: 0.4s;
}

.logo-footer-sm {
    width: 150px;
    filter: grayscale(100%);
    transition: 0.4s;
    cursor: pointer;
}

.logo-footer-sm:hover {
    width: 150px;
    filter: grayscale(0%);
    transition: 0.4s;
}

.logo-footer-md {
    filter: grayscale(100%);
    transition: 0.4s;
    cursor: pointer;
}

.logo-footer-md:hover {
    filter: grayscale(0%);
    transition: 0.4s;
}

.logoColor {
    width: 150px;
    filter: grayscale(0%);
    transition: 0.4s;
    cursor: pointer;
}

.logoColor:hover {
    width: 150px;
    filter: grayscale(100%);
    transition: 0.4s;
    transform: scale(1.2);
}

/* ---------- CAROUSEL --------------*/
.carouselCover {
    width: 100%;
    height: 90vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 2;
    position: absolute;
}

.carouselOverlay {
    background-color: rgba(0,0,0,0.4);
    z-index: 2;
    position: absolute;
    width: 100vw;
    height: 100vh;
}

.coverImg {
    background-image: url(../images/bkg-home.jpg);
    width: 100%;
    height: 90vh;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quoteContainer {
    margin-left: 0px;
    margin-right: 0px;
    height: auto;
    position: relative;
    z-index: 3;
    width: 70vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.quote {
    font-size: 24px;
    font-weight: 100;
    line-height: 44px;
    margin-left: 30px;
    position: absolute;
    left: 0;
    color: #fff;
    width: 200px;
    z-index: 3;
}

.quote1 {
    border-left: 1px solid #000;
    font-weight: 100;
    line-height: 44px;
    margin-left: 255px;
    position: relative;
    z-index: 1029;
    top: -110px;
    left: 0;
    color: #fff;
    height: 100px;
}

.quote1-white {
    border-left: 1px solid #fff;
    font-weight: 100;
    line-height: 44px;
    margin-left: 255px;
    position: absolute;
    z-index: 1029;
    left: 0;
    height: 100px;
}

.quote2 {
    margin-left: 280px;
    font-size: 24px;
    font-weight: 100;
    line-height: 26px;
    position: absolute;
    z-index: 1029;
    color: #fff;
}

.quote2 p {
    margin-bottom: 0px;
}

.carousel {
    position: relative;
    top: 0px;
    margin-bottom: 0px;
    height: 90vh;
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
    display: block;
    background-size: cover;
    width: 100%;
}

.carousel-control-next-icon {
    background-image: url(../images/arrow-right.svg);
    width: 40px;
    height: 40px;
    background-position: left;
    position: relative;
    top: -50px;
    right: -50px;
}

.customarrow {
    background-image: url(../images/arrow-left.svg);
    width: 40px;
    height: 40px;
    background-position: right;
    position: relative;
    top: 0px;
    left: -50px;
}

.carousel-indicators{
    position:absolute;
    top: 5%;
    bottom:0;
    margin:auto;
    height:20px;
    right:20px;
    left:auto;
    width:auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.carousel-indicators li {
    transition: 0.5s;
    border-top: none;
    border-bottom: none;
    height: 30px;
    width: 0px;
    padding-left: 4px;
    padding-right: 4px;
    border-right: 2px solid #fff;
    background-color: transparent;
    border-radius: 0px;
}

.carousel-indicators .active {
    opacity: 1;
    width: 2px;
    height: 46px;
    transition: 0.5s;
    display: inline-block;
    margin-top: 0px;
    border-right: 2px solid #fff;
    background-color: transparent;
    border-radius: 0px;
}

.carousel-inner {
    position: fixed;
    z-index: -1;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    background-color: #1b1b1b;
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
}

.carousel-caption {
    position: absolute;
    left: 0;
    top: calc(50% - 95px);
    color: #fff;
    text-align: left;
    z-index: 1;
    height: 150px;
    margin-right: auto;
    background-color: rgba(255,255,255, 0);
    margin-left: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: 1s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1!important;
    transition: 1s;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
    transition: 1s;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
    transition: 1s;
}

.moreBtn {
    position: absolute;
    z-index: 4;
    bottom: 20px;
    text-align: center;
    margin-left: 47%;
    background-color: transparent;
    width: 100px;
    height: 100px;
    padding: 35px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 2px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@media (max-width: 768px) {
.carousel-caption {
    padding: 0px;
    height: calc(100vh - 20px);
    width: 100vw;
    margin-top: 10px;
    margin-left: 0px;
    top: 0px;
}

.quoteContainer {
    top: 0%;
    margin-left: 30px;
    margin-right: 30px;
    width: 100vw;
}

.quote {
    top: -140px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.quote1-white {
    display: none;
}

.quote2 {
    margin-left: 0px;
    top: 0px;
    font-size: 20px;
    text-align: center;
}

.moreBtn {
    position: absolute;
    z-index: 4;
    bottom: 100px;
    text-align: center;
    margin-left: calc(50% - 30px);
    background-color: transparent;
    width: 60px;
    height: 60px;
    padding: 15px;
}

.carousel-indicators {
    top: 45%;
    right: 0px;
    height: 80px;
}

.carousel-indicators li {
    padding-left: 6px;
    padding-right: 6px;
}

.iconoText {
    height: 120px!important;
}

.carousel {
    position: relative;
    top: 0px;
    margin-bottom: 0px;
}

.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 0px!important;
}

.customarrow {
    width: 30px;
    height: 30px;
    top: 30px;
    left: 0px!important;
}

.carousel {
    position: relative;
    margin-top: 0px;
    height: 100vh;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
}

.logo-footer {
    position: relative;
    width: 100px!important;
    text-align: left;
}

.logo-footer-sm {
    width: 120px;
}

}

.bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.png) no-repeat center center/cover;
}

video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
  opacity: 0.8;
}

.overlay {
    margin-left: 30px;
    margin-top: 30px;
    width: calc(100% - 60px);
    height: calc(100vh - 60px);
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.3);
    z-index: 2;
}

/* ----------- Animacion Valores ---------------*/
/*Pie charts*/
.valoresContainer {
    width: 600px;
    height: 600px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.valores {
    position: absolute;
    width: 600px;
    height: 600px;
}

.valores1 {
    background-repeat: no-repeat;
    width: 600px;
    height: 600px;
    left: 0px;
    top: 0px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border-top: 15px solid transparent;
    border-left: 15px solid #64cec9;
    border-right: 15px solid #64cec9;
    border-bottom: 15px solid #64cec9;
    transform: rotate(145deg);
}

.valores1:hover {
    width: 600px;
    height: 600px;
    left: 0px;
    top: 0px;
    transition: 0.2s;
    background-color: white;
    border-top: 1px solid #64cec9;
    border-left: 1px solid #64cec9;
    border-right: 1px solid #64cec9;
    border-bottom: 1px solid #64cec9;
    transform: rotate(720deg);
    opacity: 0.4;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(100,206,201,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(100,206,201,1);
box-shadow: 0px 0px 10px 0px rgba(100,206,201,1);
}

.valores2 {
    background-repeat: no-repeat;
    width: 500px;
    height: 500px;
    left: 50px;
    top: 50px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border-top: 15px solid transparent;
    border-left: 15px solid #afbccf;
    border-right: 15px solid #afbccf;
    border-bottom: 15px solid #afbccf;
    transform: rotate(285deg);
}

.valores2:hover {
    width: 500px;
    height: 500px;
    left: 50px;
    top: 50px;
    transition: 0.2s;
    background-color: white;
    border-top: 1px solid #afbccf;
    border-left: 1px solid #afbccf;
    border-right: 1px solid #afbccf;
    border-bottom: 1px solid #afbccf;
    transform: rotate(720deg);
    opacity: 0.4;
-webkit-box-shadow: 0px 0px 10px 0px rgba(175,188,207,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(175,188,207,1);
box-shadow: 0px 0px 10px 0px rgba(175,188,207,1);

}

.valores3 {
    background-repeat: no-repeat;
    width: 400px;
    height: 400px;
    left: 100px;
    top: 100px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border-top: 15px solid transparent;
    border-left: 15px solid #F87473;
    border-right: 15px solid #F87473;
    border-bottom: 15px solid #F87473;
    transform: rotate(90deg);
    -webkit-animation: rotate 150s normal linear infinite;
}

.valores3:hover {
    width: 400px;
    height: 400px;
    left: 100px;
    top: 100px;
    transition: 0.2s;
    background-color: white;
    border-top: 1px solid #F87473;
    border-left: 1px solid #F87473;
    border-right: 1px solid #F87473;
    border-bottom: 1px solid #F87473;
    transform: rotate(720deg);
    opacity: 0.4;
-webkit-box-shadow: 0px 0px 10px 0px rgba(248,116,115,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(248,116,115,1);
box-shadow: 0px 0px 10px 0px rgba(248,116,115,1);
}

.valores4 {
    background-repeat: no-repeat;
    width: 300px;
    height: 300px;
    left: 150px;
    top: 150px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border-top: 16px solid transparent;
    border-left: 16px solid #28759a;
    border-right: 16px solid #28759a;
    border-bottom: 16px solid #28759a;
    transform: rotate(335deg);
    -webkit-animation: rotate 150s normal linear infinite;
    animation: rotate 150s normal linear infinite;
}

.valores4:hover {
    width: 300px;
    height: 300px;
    left: 150px;
    top: 150px;
    transition: 0.2s;
    background-color: white;
    border-top: 1px solid #28759a;
    border-left: 1px solid #28759a;
    border-right: 1px solid #28759a;
    border-bottom: 1px solid #28759a;
    transform: rotate(720deg);
    opacity: 0.4;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(40,117,154,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(40,117,154,1);
    box-shadow: 0px 0px 10px 0px rgba(40,117,154,1);
}

.valores5 {
    background-image: url(../images/logo-glue-dark.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    left: 200px;
    top: 200px;
    background-color: #f9fafb;
    border-radius: 50%;
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 0 0 10px rgb(0 0 0 / 50%);
    box-shadow: inset 0 0 10px rgb(0 0 0 / 50%);
    background-size: 70%;
    background-position: center center;
    z-index: 2;
    transition: 0.4s;
    cursor: pointer;
}

.valores5:hover {
    background-image: url(../images/logo-glue-light.svg);
    background-repeat: no-repeat;
    background-color: #474747;
    border-radius: 50%;
    transition: 0.4s;
}

.valoresText {
    margin-top: 100px;
    max-width: 80%;
}

.div2{opacity: 0.3;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);background: white;color:#333;top:0px;}
.div4{opacity: 0.3;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);background: white;color:#333;top:0px;}
.div6{opacity: 0.3;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);background: white;color:#333;top:0px;}
.div8{opacity: 0.3;box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);background: white;color:#333;top:0px;}

@media (max-width: 768px) {
.valoresContainer {
    width: 300px;
    height: 300px;
}

.valores {
    position: absolute;
    width: 300px;
    height: 300px;
}

.valoresText {
    margin-top: 0px;
}
}

.iconos {
    content: '';
    position: relative;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    bottom: 0px;
    left: 0;
    margin: auto;
    background-size: contain;
    margin-bottom: 20px;
}

.iconos-md {
    content: '';
    position: relative;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    bottom: 0px;
    left: 0;
    margin: auto;
    background-size: contain;
    margin-bottom: 20px;
}

.iconos-lg {
    content: '';
    position: relative;
    width: 120px;
    height: 120px;
    background-repeat: no-repeat;
    bottom: 0px;
    left: 0;
    margin: auto;
    background-size: contain;
    margin-bottom: 20px;
}

.iconoServicios {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    top: 10px;
    left: 10px;
    margin: 0px;
    background-size: contain;
}

.iconoNosotros {
    content: '';
    position: relative;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    top: 0px;
    left: 0;
    margin: 15px 51px;
    background-size: contain;
    text-align: center;
    transition: 0.5s;
}

.iconos-contacto {
    content: '';
    position: relative;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    bottom: 0px;
    left: 0;
    margin: auto;
    background-size: contain;
    margin-bottom: 20px;
}

.iconoNosotros:hover {
    opacity: 0.4;
    transform: 0.5s;
}

.iconoText {
    position: relative;
    margin-left: 80px;
    top: 0px;
    margin-bottom: 0px;
    height: auto;
}

.iconoSocial.linkedin {
    width: 20px;
    height: 20px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("iconos/linkedin.svg");
    top: -3px;
}

.excelencia2 {background-image: url(iconos/excelencia2.svg);}
.partnership2 {background-image: url(iconos/partnership2.svg);}
.personalizacion2 {background-image: url(iconos/personalizacion2.svg);}
.businessapproach2 {background-image: url(iconos/businessapproach2.svg);}

.excelencia {background-image: url(iconos/excelencia.svg);}
.partnership {background-image: url(iconos/partnership.svg);}
.personalizacion {background-image: url(iconos/personalizacion.svg);}
.businessapproach {background-image: url(iconos/businessapproach.svg);}
.linkedin {background-image: url(iconos/linkedin.svg);}
.mapeosdemercado {background-image: url(iconos/mapeosdemercado.svg);}
.softlanding {background-image: url(iconos/softlanding.svg);}
.diferenciales1 {background-image: url(iconos/diferenciales1.svg);}
.diferenciales2 {background-image: url(iconos/diferenciales2.svg);}
.diferenciales3 {background-image: url(iconos/diferenciales3.svg);}
.diferenciales4 {background-image: url(iconos/diferenciales4.svg);}
.diferenciales5 {background-image: url(iconos/diferenciales5.svg);}
.diferenciales6 {background-image: url(iconos/diferenciales6.svg);}
.ejecutivo {background-image: url(iconos/ejecutivo.svg);transition: 0.4s;}
.empresa {background-image: url(iconos/empresa.svg);transition: 0.4s;}
.programa1 {background-image: url(iconos/programa1.svg);transition: 0.4s;}
.programa2 {background-image: url(iconos/programa2.svg);transition: 0.4s;}
.programa3 {background-image: url(iconos/programa3.svg);transition: 0.4s;}
.programa4 {background-image: url(iconos/programa4.svg);transition: 0.4s;}
.programa5 {background-image: url(iconos/programa5.svg);transition: 0.4s;}
.executiveSearch {background-image: url("iconos/home-executivesearch.svg");}
.leadership {background-image: url("iconos/home-leadership.svg");}

.share2 {background-image: url(iconos/share2.svg);transition: 0.4s;width: 32px; margin-top:20px;}
.clock {background-image: url(iconos/clock.svg);transition: 0.4s;width:20px;margin: 0px !important;height:20px !important;}
.date{position: relative;
    top: 3px;
    left: 10px;}
.contactoClientes {background-image: url(iconos/contactoClientes.svg);transition: 0.4s;}
.contactoCandidatos {background-image: url(iconos/contactoCandidatos.svg);transition: 0.4s;}

/*---------- CLIENT LOGOS ---------*/
.clientLogos {
    content: '';
    position: relative;
    width: auto;
    height: 140px;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    transition: 0.4s;
}

.clientLogos:hover {
    filter: grayscale(100%);
    transition: 0.4s;
    opacity: 0.6;
}

.logo1 {background-image: url(../images/clientes/danone.svg)}
.logo2 {background-image: url(../images/clientes/mars.svg)}
.logo3 {background-image: url("../images/clientes/ims.jpg")}
.logo4 {background-image: url(../images/clientes/pfizer.svg)}
.logo5 {background-image: url(../images/clientes/galiciabanco.svg)}
.logo6 {background-image: url(../images/clientes/indigo.svg)}
.logo7 {background-image: url(../images/clientes/iunigo.svg)}
.logo8 {background-image: url(../images/clientes/scjohnson.svg)}
.logo9 {background-image: url(../images/clientes/smiles.svg)}
.logo10 {background-image: url(../images/clientes/bimbo.svg)}
.logo11 {background-image: url(../images/clientes/biotronik.svg)}
.logo12 {background-image: url(../images/clientes/metlife.svg)}
.logo13 {background-image: url(../images/clientes/sancristobal.svg)}
.logo14 {background-image: url(../images/clientes/naranjax.svg)}
.logo15 {background-image: url(../images/clientes/starbucks.svg)}
.logo16 {background-image: url(../images/clientes/itau.svg)}
.logo17 {background-image: url(../images/clientes/lacaja.svg)}
.logo18 {background-image: url(../images/clientes/yara.svg)}
.logo19 {background-image: url(../images/clientes/egger.svg)}
.logo20 {background-image: url(../images/clientes/mercantilandina.svg)}
.logo21 {background-image: url(../images/clientes/campari.svg)}
.logo22 {background-image: url(../images/clientes/alnylam.svg)}
.logo23 {background-image: url(../images/clientes/biogenesisbago.jpg)}
.logo24 {background-image: url(../images/clientes/nufarm.svg)}
.logo25 {background-image: url(../images/clientes/fleni.svg)}
.logo26 {background-image: url(../images/clientes/salentein.jpg)}
.logo27 {background-image: url(../images/clientes/upl.svg)}
.logo28 {background-image: url(../images/clientes/xylem.svg)}
.logo29 {background-image: url(../images/clientes/refinor.svg)}
.logo30 {background-image: url(../images/clientes/heineken.svg)}
.logo31 {background-image: url(../images/clientes/Ferrero.svg)}
.logo32 {background-image: url(../images/clientes/elea.svg)}
.logo33 {background-image: url(../images/clientes/brightstar.svg)}
.logo34 {background-image: url(../images/clientes/lvmh.svg)}
.logo35 {background-image: url(../images/clientes/kimberlyclark.svg)}
.logo36 {background-image: url(../images/clientes/karcher.svg)}
.logo37 {background-image: url(../images/clientes/toyota.svg)}
.logo38 {background-image: url(../images/clientes/cementosavellaneda.jpg)}
.logo39 {background-image: url(../images/clientes/megalabs.jpg)}
.logo40 {background-image: url(../images/clientes/knight.jpg)}
.logo41 {background-image: url(../images/clientes/supervielle.svg)}

.logo42 {background-image: url(../images/clientes/sesocio.jpg)}
.logo43 {background-image: url(../images/clientes/sura.jpg)}
.logo44 {background-image: url(../images/clientes/modo.jpg)}
.logo45 {background-image: url(../images/clientes/bind.jpg)}
.logo46 {background-image: url(../images/clientes/amega.jpg)}
.logo47 {background-image: url(../images/clientes/iplan.jpg)}
.logo48 {background-image: url(../images/clientes/prisma.jpg)}
.logo49 {background-image: url(../images/clientes/lomanegra.jpg)}
.logo50 {background-image: url(../images/clientes/ank.jpg)}
.logo51 {background-image: url(../images/clientes/uala.jpg)}

.logo52 {background-image: url(../images/clientes/lbago.jpg)}
.logo53 {background-image: url(../images/clientes/l_december_labs.jpg)}
.logo54 {background-image: url(../images/clientes/l_telecom.jpg)}
.logo55 {background-image: url(../images/clientes/l_ypf.jpg)}
.logo56 {background-image: url(../images/clientes/navent.jpg)}
.logo57 {background-image: url(../images/clientes/kavak.jpg)}
.logo58 {background-image: url(../images/clientes/interbanking.jpg)}
.logo59 {background-image: url(../images/clientes/keybiscayne.jpg)}

.logo60 {background-image: url("../images/clientes/levis.svg")}
.logo61 {background-image: url("../images/clientes/fiserv.svg")}
.logo62 {background-image: url("../images/clientes/bna.svg")}
.logo63 {background-image: url("../images/clientes/ecipsa.jpg")}
.logo64 {background-image: url("../images/clientes/qhausse.svg")}
.logo65 {background-image: url("../images/clientes/adama.svg")}
.logo66 {background-image: url("../images/clientes/iafis.jpg")}
.logo67 {background-image: url("../images/clientes/saba.svg")}


@media (max-width: 768px) {
.clientLogos {
    height: 110px;
}
}


/* --------- Mapa ---------- */
.description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(229, 229, 229, 0.7);
}

.content {
    position: relative;
}

.centered {
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(50%, 50%);
    overflow: hidden;
}

.centered-y {
    position: absolute;
    width: auto;
    top: 5%;
    transform: translateY(0%);
    font-weight: 100;
    overflow: hidden;
}

.distribution-map {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.distribution-map > img {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.distribution-map .map-point:active, .distribution-map .map-point:focus {
    border-radius: 3px;
    transition: 0.4s;
    border: 0px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
    background: rgb(255 255 255 / 80%);
    color: #333!important;
}

.distribution-map .map-point {
    cursor: pointer;
    outline: none;
    z-index: 0;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    transition: 0.4s;
    background: rgb(31 187 189);
    border: 1px solid #ffffff;
}

.distribution-map .map-point .content {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: overlay;
    top:-5px;
}

.distribution-map .map-point:active, .distribution-map .map-point:focus {
  margin: 0;
  padding: 0;
  opacity: 1;
  width: 220px;
  height: 120px;
  color: #e5e5e5;
  z-index: 1;
  transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out;
}

.distribution-map .map-point:active .content, .distribution-map .map-point:focus .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0s, 0s;
  transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  overflow: hidden;
}

.distribution-map .map-point:active .content a:hover, .distribution-map .map-point:active .content a:active, .distribution-map .map-point:focus .content a:hover, .distribution-map .map-point:focus .content a:active {
  color: #afe1fa;
}

.countryName {
    float: left;
    margin-left: 12px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    width: 95px;
    text-align: left;
}

.distribution-map .map-point:active, .distribution-map .map-point:focus .countryName {
    opacity: 1;
    height: 0;
    transition: 0.4s;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    top: 15px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
}

.countryNameLeft {
    float: right;
    margin-right: 12px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    width: 100px;
    text-align: right;
}

.distribution-map .map-point:active, .distribution-map .map-point:focus .countryNameLeft {
    opacity: 1;
    height: 0;
    transition: 0.4s;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    top: 15px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
    opacity: 0;
}


.blob {
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 0px;
    height: 15px;
    width: 15px;
    transform: scale(1);
    animation: pulse 2s infinite;
    position: relative;
    left: -7px;
    top: -2px;
}

.blob1 {
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    margin: 0px;
    height: 15px;
    width: 15px;
    transform: scale(1);
    animation: pulse 2s infinite;
    position: relative;
    left: 5px;
    top: 2px;
}

.distribution-map .map-point1:active, .distribution-map .map-point1:focus {
    border-radius: 3px;
    transition: 0.4s;
    border: 0px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
    background: rgb(255 255 255 / 80%);
    color: #333!important;
}

.distribution-map .map-point1 {
    cursor: pointer;
    outline: none;
    z-index: 0;
    position: absolute;
    width: 25px;
    height: 25px;
    opacity: 0.8;
    transition: 0.4s;
    border: none;
    background-color: transparent;
    background-image: url(../images/mapmarker.svg);
    background-repeat: no-repeat;
}

.distribution-map .map-point1 .content {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: overlay;
}

.distribution-map .map-point1:active, .distribution-map .map-point1:focus {
  margin: 0;
  padding: 0;
  opacity: 1;
  width: 220px;
  height: 120px;
  color: #e5e5e5;
  z-index: 1;
  transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out, height 0.25s ease-in-out;
}

.distribution-map .map-point1:active .content, .distribution-map .map-point1:focus .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s, 0s, 0s;
  transition: opacity 0.25s ease-in-out 0.25s, height 0.25s ease-in-out, overflow 0.25s ease-in-out;
  overflow: hidden;
}

.distribution-map .map-point1:active .content a:hover, .distribution-map .map-point1:active .content a:active, .distribution-map .map-point1:focus .content a:hover, .distribution-map .map-point1:focus .content a:active {
  color: #afe1fa;
}

.countryName {
    float: left;
    margin-left: 12px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    width: 95px;
    text-align: left;
}

.distribution-map .map-point1:active, .distribution-map .map-point1:focus .countryName {
    opacity: 1;
    height: 0;
    transition: 0.4s;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    top: 36px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
}

.countryNameGlue {
    float: left;
    margin-left: 20px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    width: 115px;
    text-align: left;
    margin-top: 8px;
}

.distribution-map .map-point1:active, .distribution-map .map-point1:focus .countryNameGlue {
    opacity: 1;
    height: 0;
    transition: 0.4s;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    top: 36px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}


.distribution-map .map-point:active, .distribution-map .map-point:focus .blob {
    animation: none;
}

.logoPanorama {
    width: 25%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.logoGlue {
    width: 15%;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media (max-width: 768px) {
.distribution-map {display: none;}
.logoPanorama {
    width: 50%;
    text-align: center;
}
.logoGlue {
    width: 30%;
    text-align: center;
}

}
/* ---------- Nosotros ----------*/
.container_foto {
    background-color: rgba(57, 62, 93, 0.7);
    padding: 0;
    overflow: hidden;
    max-width: 40%;
    margin: 50px auto;
}

.container_foto article {
    padding: 10% 5%;
    position: absolute;
    bottom: 40px;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.container_foto h2 {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    top: 100px;
    position: relative;
}

.container_foto h2:after {
    content: '';
    height: 1px;
    background-color: #fff;
    width: 40px;
    position: absolute;
    left: 0px;
    top: 40px;
    transition: 0.4s
}

.container_foto h4 {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    top: 120px;
    position: relative;
}

.container_foto p {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    transition: 0.2s;
    top: 50px;
    position: relative;
}

.container_foto img {
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
    -webkit-transition: all 4s ease;
    -moz-transition: all 4s ease;
    -o-transition: all 4s ease;
    -ms-transition: all 4s ease;
    transition: all 4s ease;
}

.ver_mas {
    background-color: #038092;
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transform: translate(0px, 70px);
    -webkit-transform: translate(0px, 70px);
    -moz-transform: translate(0px, 70px);
    -o-transform: translate(0px, 70px);
    -ms-transform: translate(0px, 70px);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.ver_mas span {
    font-size: 40px;
    color: #fff;
    position: relative;
    margin: 0 auto;
    width: 100%;
    top: 13px;
}


/*hovers*/

.container_foto:hover {
    cursor: pointer;
}

.container_foto:hover img {
    opacity: 0.1;
    transform: scale(1.35);
}

.container_foto:hover article {
    transform: translate(2px, -20px);
    -webkit-transform: translate(2px, -20px);
    -moz-transform: translate(2px, -20px);
    -o-transform: translate(2px, -20px);
    -ms-transform: translate(2px, -20px);
}

.container_foto:hover .ver_mas {
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    opacity: 1;
}


.container_foto:hover h2 {
    transform: translate(2px, -90px);
    -webkit-transform: translate(2px, -90px);
    -moz-transform: translate(2px, -90px);
    -o-transform: translate(2px, -90px);
    -ms-transform: translate(2px, -90px);
    display: block;
    opacity: 1;
    transition: 0.4s;
}

.container_foto:hover h2:after {
    content: '';
    height: 1px;
    background-color: #fff;
    width: 120px;
    position: absolute;
    left: 0px;
    top: 40px;
    transition: 0.4s
}

.container_foto:hover h4 {
    transform: translate(2px, -90px);
    -webkit-transform: translate(2px, -90px);
    -moz-transform: translate(2px, -90px);
    -o-transform: translate(2px, -90px);
    -ms-transform: translate(2px, -90px);
    display: block;
    opacity: 1;
    transition: 0.4s;
}

.container_foto:hover p {
    transform: translate(2px, -15px);
    -webkit-transform: translate(2px, -15px);
    -moz-transform: translate(2px, -15px);
    -o-transform: translate(2px, -15px);
    -ms-transform: translate(2px, -15px);
    display: block;
    opacity: 1;
    transition: 0.4s;
}

.linkedinText {
    position: absolute;
    left: 95px;
    top: 21px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
}

.linkedinText:hover {
    opacity: 0.5;
    transition: 0.4s;
}

@media (max-width: 1099px) {
.container_foto h2 {
    font-size: 18px;
    letter-spacing: 4px;
}

}

@media (max-width: 768px) {
.container_foto {
    max-width: 100%;
}
.container_foto {margin-top: 0px!important;}
.container_foto article {padding: 5%;}
.container_foto h2 {font-size: 18px;}
.container_foto h2:after {top:34px;}
.container_foto h4 {font-size: 13px;}
.container_foto p {font-size: 13px;}
.ver_mas {height: 50px;}
.iconoNosotros {margin: 10px 0px;width: 20px;left: 20px;top: 5px;}
.linkedinText {font-size: 12px;letter-spacing: 3px;left: 50px;top: 16px;
}

}

.shape1Right{
    transform: rotate(0deg);
    background: white;
    height: 70px;
    width: 90%;
    display: inline-block;
}

.shape2Right {
    transform: rotate(45deg);
    background: white;
    height: 50px;
    width: 50px;
    display: inline-block;
    left: -26px;
    top: 10px;
    position: absolute;
    border-radius: 0px 0px 0px 4px;
}

.inner-arrowRight {
    width: 80%;
    height: 70px;
    display: inline-block;
    background-color: #fff;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    padding: 10px 20px;
    color: #474747;
    position: relative;
    z-index: 1;
}

.shape1Left{
    transform: rotate(0deg);
    background: white;
    height: 70px;
    width: 90%;
    display: inline-block;
}

.shape2Left {
    transform: rotate(45deg);
    background: white;
    height: 50px;
    width: 50px;
    display: inline-block;
    right: -25px;
    top: 10px;
    position: absolute;
    border-radius: 0px 4px 0px 0px;
}

.inner-arrowLeft {
    width: 100%;
    height: 70px;
    display: inline-block;
    background-color: #fff;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    padding: 10px 20px;
    color: #474747;
    z-index: 1;
    position: relative;
}

.arrowText2 {
    font-size: 13px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1006;
    max-width: 90%;
    line-height: 18px;
}

.myshape {
    margin: 30px 0px;
    filter: drop-shadow(1px 1px 5px rgba(0,0,0,0.25));
    transition: 0.4s!important;
}

.myshape:hover {
    filter: drop-shadow(1px 1px 5px rgba(0,0,0,0.5));
    transition: 0.4s!important;
}

.glueContainer {
    background-color: white;
    border-radius: 50%;
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    padding: 10px;
    position: relative;
    width: 90%;
    top: 0px;
    margin-left: auto;
    margin-right: auto;
}

.glueContainerEjecutivo {
    background-color: #4eb7b7;
    border-radius: 50%;
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    padding: 10px;
    position: absolute;
    left: 5px;
    height: 60px;
    width: 60px;
    z-index: 1005;
    top: calc(50% - 20px);
}

.glueContainerEmpresa {
    background-color: #4fa0b7;
    border-radius: 50%;
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    box-shadow: inset 0 0 10px rgb(0 0 0 / 25%);
    padding: 10px;
    position: absolute;
    left: calc(100% - 60px);
    height: 60px;
    width: 60px;
    z-index: 1005;
    top: calc(50% - 20px);
}

.parallax {
/* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallaxSearch {
    background-image: url(../images/executivesearch.jpg);
    height: auto;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    animation: imgGrow 80s;
    margin-top: 0px;
    height: 100%;
    min-height: 70vh;
}

.parallaxCoaching {
    background-image: url("../images/executivecoaching.jpg");
    height: 70vh;
    background-attachment: fixed;
    background-position: top left;
    background-repeat: no-repeat;
    min-height: 70vh;
    animation: imgGrow 80s;
    margin-top: 0px;
    top: 0px;
    position: relative;
}

.parallaxContacto {
    background-image: url("../images/contacto.jpg");
    height: calc(100vh - 56px);
    background-attachment: fixed;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 750px;
    animation: imgGrow 80s;
    margin-top: -48px;
}

@keyframes imgGrow {
  0%   { background-size: 100% auto; }
  100% { background-size: 140% auto; }
}



.outer-cardsContainer{
  margin: 100px auto 0 auto;
  width: 100%;
}

.cardsContainer{
  width: 21%;
  height: 250px;
    margin-left: 2%;
    margin-right: 2%;
  border-radius: 2px;
  float: left;
  position: relative;
  top: 0;
  z-index: 1;
  box-shadow: 0 0px 10px 0px rgb(60 56 92 / 50%);
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cardsContainer1{
  background: #5967C3;
  background: -webkit-linear-gradient(left top, #599cc3, #83dcce);
  background: linear-gradient(to bottom right, #599cc3, #83dcce);
    z-index: 2;
}

.cardsContainer2{
 background: #5967C3;
  background: -webkit-linear-gradient(left top, #5967C3, #83cedc);
  background: linear-gradient(to bottom right, #5967C3, #83cedc);
}

.cardsContainer3{
  background: #ffaec2;
  background: -webkit-linear-gradient(left top, #ffaec2, #7e4aaf);
  background: linear-gradient(to bottom right, #ffaec2, #7e4aaf);
}

.cardsContainer4{
  background: #CA619C;
  background: -webkit-linear-gradient(left top, #CA619C, #DBC084);
  background: linear-gradient(to bottom right, #CA619C, #DBC084);
}

.activeCC {
  z-index: 3;
  top: -25px;
  height: 300px;
}

.titleCC {
    color: #FFF;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 3px;
    line-height: 18px;
    margin-top: 40%;
    transition: 0.4s;
    font-weight: normal;
}

.titleCC::after{
  content: '';
  display: block;
  height: 1px;
  width: 50px;
  background-color: #FFF;
  border-radius: 0px;
  margin: 10px auto 0 auto;
}

.activeCC .titleCC{
  margin-top: 20%;
    transition: 0.4s;
}

.main_numberCC{
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0; right: 0;
  text-align: center;
  font-size: 11rem;
  color: #FFFFFF;
  opacity: 0.2;
  font-weight: 800;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.activeCC .main_numberCC{
  top: 45%;
}

.cardsContainer a{
  text-decoration: none;
  color: #3C385C;
  font-weight: 800;
  font-size: 0.7rem;
  background-color: #FFF;
  width: 170px;
  line-height: 40px;
  display: block;
  border-radius: 30px;
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.cardsContainer a span{
  opacity: 0.6;
}

.active a{
  bottom: -20px;
}

.active a span{
  opacity: 1;
}

.cardsContainer_text {
    position: absolute;
    top: 52%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    color: #FFFFFF;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 20px;
    opacity: 0;
}

.activeCC .cardsContainer_text{
  top: 50%;
    opacity: 1;
}

.cardsContainer_text span{
  display: block;
}

.cardsContainer_text1{
  font-size: 16px;
}

.cardsContainer_text2{
  font-size: 2.5rem;
}

.mySteps {
    max-height: 400px;
    min-height: 400px;
}

.myLabel {
    text-transform: uppercase;
    letter-spacing: 3px;
    background-color: #ffffff;
    position: relative;
    bottom: -16px;
    font-size: 10px;
    left: 10px;
    padding: 0px 7px;
    z-index: 2;
    color: #535353;
}

.myLabel.bg-light {
    background-color: #f8f9fa;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: .95rem;
    line-height: 1.5;
    border-radius: 0.2rem;
    background-color: inherit;
}

.custom-file-label {
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.75em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    color: #898e93;
    background-color: inherit;
    border: 1px solid #ced4da;
    border-radius: .2rem;
    font-size: 15px;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.75em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Buscar"!important;
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.2rem 0.2rem 0;
}

.form-control:focus {
    color: #495057;
    background-color: #f6f7f7;
    border-color: #399fad;
    outline: 0;
    box-shadow: none;
}


.table {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 500px;
    top: 15px;
    position: relative;
}
.table__cell {
  position: relative;
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: center;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    color: #fff;
}

.table__cell:nth-child(1) {
    background-color: #474747;
    transition: 0.4s;
}

.table__cell:nth-child(1):hover {
    background-color: #f5f5f5;
    transition: 0.4s;
}

.table__cell:nth-child(2) {
  background-color: #474747;
}

.table__cell:nth-child(2):hover {
    background-color: #f5f5f5;
    transition: 0.4s;
}

.table__cell.active {
  width: 80%;
    background-color: #f5f5f5;
    color: #474747;
}
.table__cell span {
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0;
}
.table__cell.active span {
    opacity: 1;
    transition-delay: 300ms;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

.contactContainer {
    width: 100%;
    margin-left: 100px!important;
    margin-right: 100px!important;
    position: absolute;
    transition: 0.4s;
}

.table__cell.active .contactContainer {
    width: 100%;
    max-width: 0px;
    margin-left: 0px!important;
    margin-right: 0px!important;
    position: relative;
    transition: 0.4s;
    opacity: 0;
}

.table__cell:hover .contactContainer {
    margin-top:-10px;
    color: #000!important;
}



.mySection {
  height: 100vh;
    min-height: 600px;
  background-image: linear-gradient(to bottom, rgba(0, 121, 193, 0.75) 0%, rgba(70, 93, 255, 0.75) 100%);
}


.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.flex-items-default {
  width: 10%;
  height: 150px;
}
.dropdownArrow {
    width: 330px;
    height: 150px;
    background: white;
    box-shadow: 0 3px 20px 1px rgb(0 0 0 / 10%);
    border-radius: 5px;
    position: absolute;
    top: -110px;
    animation-duration: 0.2s;
    transition: left 0.3s ease;
}
.dropdownArrow .inner {
    position: relative;
    width: 100%;
    height: 150px;
}
.dropdownArrow .inner .arrow-down {
    position: absolute;
    bottom: -19px;
    left: calc(50% - 20px);
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
}

.animated {
  display: block;
}

.arrowNumber {
    width: 100%;
    font-size: 400px;
    position: relative;
    font-weight: bold;
    letter-spacing: -1px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    overflow: hidden;
    color: #fff;
    margin-top: -120px;
    opacity: 0.1;
}

.arrowText {
    font-size: 32px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: -350px;
    z-index: 1006;
    max-width: 500px;
    line-height: 40px;
    animation: fadeIn 1.5s;
    text-align: center;
    padding: 12px 0px 0px 0px;
    color: #fff;
}

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeUp {
  0%   { top: 300px; opacity: 0;}
  20% { top: 0px; opacity: 0.1;}
}

.mapTooltip {
    width: 0px;
    height: 0px;
    border-radius: 10px;
    border: 1px solid #fff;
    position: absolute;
    background: rgb(83 206 208);
    opacity: 1;
    padding: 6px;
    cursor: pointer;
    text-align: center;
}

.mapTooltip1 {
    width: 0px;
    height: 0px;
    border-radius: 10px;
    border: none;
    position: absolute;
    background-color: transparent;
    opacity: 1;
    padding: 10px;
    text-align: center;
    background-image: url(../images/mapmarker.svg);
}


.mapTooltip:hover {
    -webkit-animation-play-state: paused;
}

.mapTooltip:hover .info {
    visibility:visible;
    animation:fadeIn 1s;
}


.info {
    width:200px;
    padding:10px;
    background:rgba(255,255,255,1);
    border-radius:3px;
    position:absolute;
    visibility:hidden;
    margin:-100px 0 0 -100px;
    box-shadow:0 0 50px 0 rgba(0,0,0,.5);
    height: 60px;
    z-index: 1;
}

.mapTooltip:hover .infoLeft {
    visibility:visible;
    animation:fadeIn 1s;
}


.infoLeft {
    width:200px;
    padding:10px;
    background:rgba(255,255,255,1);
    border-radius:3px;
    position:absolute;
    visibility:hidden;
    margin:-70px 0 0 -100px;
    box-shadow:0 0 50px 0 rgba(0,0,0,.5);
    height: 60px;
    z-index: 1;
}

.myPointName {
    min-width: 50px;
    left: 10px;
    top: -8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 8px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    color: black;
    padding: 3px 0px;
    cursor: pointer;
    text-align: left;
}

.myPointName2 {
    min-width: 50px;
    left: 10px;
    top: -8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 8px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    color: black;
    padding: 3px 0px;
    text-align: left;
}

.myPointName:hover {color:rgb(83 206 208)}

.myPointNameLeft {
    min-width: 50px;
    right: 10px;
    top: -8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 8px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
    color: black;
    padding: 3px 0px;
    float: right;
    cursor: pointer;
    text-align: right;
}

.myPointNameLeft:hover {color:rgb(83 206 208)}

.myBlob {
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    margin: 0px;
    height: 14px;
    width: 14px;
    transform: scale(1);
    animation: pulse 2s infinite;
    position: absolute;
    left: -1px;
    top: -1px;
}

.myBlob1 {
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    margin: 0px;
    height: 14px;
    width: 14px;
    transform: scale(1);
    animation: pulse 2s infinite;
    position: absolute;
    left: 3px;
    top: 1px;
}

.alianzaLogo {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    position: relative;
    margin: auto;

}

.borderTop {
    height: 1px;
    background-color: #fff;
    width: 20%;
    margin-left: 40%;
    margin-top: 20px;
    margin-bottom: 30px;
}

.programasContainer {
    padding: 40px;
}

video::-webkit-media-controls-overlay-play-button {
display: none;
}

@media (max-width: 768px) {

.countryName {
    font-size: 11px;
    text-align: center;
    width: 100%;
    margin-left: 0px;
    margin-top: 15px;
}

.programasContainer {
    padding: 20px;
    text-align: center;
}

.sideText {padding: 0.5rem; }
.titleClassLeft:after {top: 70px!important;}
.titleClass:after {top: 70px!important;}
.titleClass2:after {top: 70px!important;}
.titleClass:after {top: 70px!important;}
.parallaxSearch {
    background-position: center right!important;
    background-size: auto 100%!important;
    position: relative!important;
    margin-left: -15px!important;
    margin-right: -15px!important;
    min-height: 300px!important;
    height: 200px!important;
    z-index: 1!important;
    margin-top: 0px!important;
    background-attachment: inherit!important;
    animation: none!important;
}


.parallaxCoaching {
    background-position: center right!important;
    background-size: auto 100%!important;
    position: relative!important;
    margin-left: -15px!important;
    margin-right: -15px!important;
    min-height: 300px!important;
    height: 200px!important;
    z-index: 1!important;
    margin-top: 0px!important;
    background-attachment: inherit!important;
    animation: none!important;
}

.parallaxContacto {
    background-position: center right!important;
    background-size: auto 100%!important;
    position: relative!important;
    margin-left: -15px!important;
    margin-right: -15px!important;
    min-height: 300px!important;
    height: 200px!important;
    z-index: 1!important;
    margin-top: 0px!important;
    background-attachment: inherit!important;
    animation: none!important;
}

#mismetodologias {
    top: 0px;
    position: relative;
    padding-top: 80px;
    margin-bottom: -80px;
}

#misprogramas {
    top: 0px;
    position: relative;
    padding-top: 0px;
    margin-bottom: -80px;
}

.arrowNumber {
    font-size: 180px;
    margin-top: -40px;
}
.arrowText {
    font-size: 22px;
    line-height: 22px;
    top: -180px;
}
h1, .h1 {font-size: 1.6rem;}

.programasSideText {
    width: 100%!important;
    margin-left: 10px;
    line-height: 30px;
}

.programasSideImg {
    left: 10px;
    margin-bottom: 0px;
}

.mydivContainer {
    min-height: 1000px;
}

mydiv {
    padding: 0px 25px 0px 50px;
}

input[type=radio] {
    position: absolute!important;
    left: 0px!important;
    width: 20px!important;
    height: 25%;
    outline: 25px solid;
    outline-offset: -25px;
    padding: 30px;
    z-index: 1;
    cursor: pointer;
}

input[type="radio"]:checked {
    transform: scaleX(1) scaleY(1)!important;
}

input[type="radio"]:hover {
    transform: scaleX(1) scaleY(1)!important;
}

.table {
    top: 0px;
    min-height: 780px!important;
    margin-bottom: 0px;
}

.myCustomLabel {display: none;}


h3, .h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.container_foto article {
    bottom: 70px;
    }

.logo-linkedin {
    margin-left: auto;
    margin-right: auto;
    float: none;
}

h4.text-linkedin {
    font-size: 14px;
    text-align: center;
}

#executivesearch {
    height: 100%;
    min-height: 805px;
}

#executivecoaching {
    height: 100%;
    min-height: 805px;
}

#contacto {
    height: 100%;
    min-height: 805px;
}

.contactHeader {
    text-align: center;
    background-color: #535353;
    padding: 50px;
}

.btn-link:hover {
    color: inherit!important;
    text-decoration: none!important;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none;
}

video {
    transform: translateX(-25%);
}


.iconos-contacto {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

video::-webkit-media-controls-overlay-play-button {
display: none;
}

}



.colName{z-index: 9999}
.pdfimage{width: 40px;max-width: 40px;}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    background-color: white;
    padding: 0px;
    max-height: 480px;
    overflow: hidden;
    min-height: 480px;
    height: 480px;
}

.carousel-inner-opiniones {
    height: 500px;
}


img.imgopinion {
    position: absolute;
    left: 0px;
    min-width: 101vw;
    top: -10%;
}
.opiniones{position: relative !important;}

.carouselcustom .carousel-inner-opiniones .carousel-item {
    min-height: 500px;
    height: 500px;
    max-height: 500px;
}

.carousel-caption-opiniones {
    position: absolute;
    left: unset;
    top: 20%;
    padding: 0px 0px 40px 0px;
    color: #fff;
    z-index: 1;
    height: auto;
    width: 68%;
    margin-left: 16%;
}

.carousel-caption-opiniones h5 {color: #fff;text-align: center;padding: 50px 10px 10px;font-size: 20px;text-shadow: 1px 1px 4px #000;}
.carousel-caption-opiniones h4 {color: #fff;text-align: center;padding: 0px 0px 0px;font-size: 13px;text-shadow: 1px 1px 4px #000;}

.carousel-caption-opiniones p {
    text-align: center;
    padding: 0px 80px 10px;
    font-size: 25px;
    text-shadow: 1px 1px 4px #000;
    font-weight: 100;
}

#carouselExampleControls {
    top: 0px;
}

.siconprev {
    top: 0px;
}
.siconnext {
  top: 0px;
}
.carousel-control-prev-icon {background-image: url(../images/arrow-left.svg); width: 40px; height: 40px;
background-position: right;
position: relative; top: -50px; left: -50px;
}

.carouselcustom {
    height: 500px !important;
    width: 100%;
}

.rtitle {
    position: relative;
    top: 15%;
    background: #cccccc00;
    z-index: 999;
    color: white;
}

/* Style all font awesome icons */
.contenedorrd{padding: 21px; left: -24px; position: relative;}

.fa {
    /* display: initial !important; */
    padding: 17px  2px 15px !important;
    font-size: 18px !important;
    width: 23px !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 50% !important;
}

@media (max-width: 768px) {
.testimonials {
    background-color: white;
    padding: 0px;
    max-height: 525px;
    overflow: hidden;
    min-height: 525px;
    height: 525px;
}
  
.uitem {
  font-size: 18px !important;
}
  
#carouselExampleControls {
    top: 10px;
}
  
.carousel-caption-opiniones {
    top: 40px;
}
  
.siconnext .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    top: 0px;
    right: 5px!important;
}
  
.siconprev .carousel-control-prev-icon {
    width: 30px;
    height: 30px;
    top: 0px;
    left: 5px;
}
    
.carousel-caption-opiniones h5 {
    text-align: center;
    padding: 0px 0px 0px;
    font-size: 16px;
}
   
.carousel-caption-opiniones h4 {
    text-align: center;
    padding: 0px 0px 0px;
    font-size: 14px;
 }
  
.carousel-caption-opiniones p {
    text-align: center;
    padding: 40px 5px 6px;
    font-size: 18px;
}

.imgopinion {
    top: 0px !important;
    height: 525px!important;
    max-height: 525px!important;
    padding-bottom: 0px;
    min-width: 100%!important;
    width: auto!important;
    background-position: center center;
}

#clientes{margin-top:50px;}
.share2{margin-top: 10px;}
.iconos-lg{margin-bottom: 0px;height: 40px;max-height: 40px;}
.footer-newsletter{position: relative !important;right: 0px !important;}
.fa {
    display: initial !important;
    padding: 12px 15px 15px !important;
    font-size: 16px !important;
    width: 30px !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 50% !important;
}
.contenedorrd{padding: 21px; left: 0px; position: relative;}
}

a:link, a:visited, a:active {
    text-decoration:none;
    color: #616060;
}

.programasContainer h4 {margin-top:50px;}
.content-only-mobile{top: -30px;}

/* Newsletter  */
.footer-newsletter{
position: fixed;
bottom: 10px;
right: 50px;
z-index: 99;
}
.footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e1e4ec;
}
.footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px ;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc107;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.footer-newsletter form input[type="submit"]:hover {
  background: #ffce3a;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3c3c3c;
  color: white !important;
  width: 50px !important;
}

.fa-twitter {
background: #3c3c3c;
  color: white !important;
}

.fa-google {
background: #3c3c3c;
  color: white !important;
}

.fa {
    display: initial !important;
    padding: 12px 15px 15px !important;
    font-size: 16px !important;
    width: 30px !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 50% !important;
}
.fa-youtube {
  background: #3c3c3c;
  color: white !important;
}

.fa-instagram {
  background: #3c3c3c;
  color: white !important;
}

.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.fa-skype {
  background: #00aff0;
  color: white;
}

.fa-android {
  background: #a4c639;
  color: white;
}

.fa-dribbble {
  background: #ea4c89;
  color: white;
}

.fa-vimeo {
  background: #45bbff;
  color: white;
}

.fa-tumblr {
  background: #2c4762;
  color: white;
}

.fa-vine {
  background: #00b489;
  color: white;
}

.fa-foursquare {
  background: #45bbff;
  color: white;
}

.fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.fa-soundcloud {
  background: #ff5500;
  color: white;
}

.fa-reddit {
  background: #ff5700;
  color: white;
}

.fa-rss {
  background: #ff6600;
  color: white;
}
.label-newsletter{top: 26px;
    position: relative;
    left: 10px;
    font-weight: 700;}


/*---- BLOG ---*/
.blog-img {
    vertical-align: middle;
    border-style: none;
    width: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.blog-img img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

span.select2-selection.select2-selection--multiple {
    border-radius: 0px;
    border: 1px solid #dedede!important;
    min-width: 40vw!important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 15px!important;
    margin-left: 15px!important;
    max-width: 100%;
    height: 32px!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3c3c3c!important;
}

.select2-results__option {
    padding: 12px 6px!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    top: -8px!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3c3c3c!important;
    border: 1px solid #f8f9fa!important;
    border-radius: 0px!important;
    margin-left: 15px!important;
    margin-top: 20px!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 16px!important;
    padding-right: 10px!important;
    color: #f8f9fa!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 1px solid #f8f9fa!important;
    color: #f8f9fa!important;
    font-weight: 200!important;
    padding: 0 8px!important;
    font-size: 1.5rem!important;
    margin-top: -9px!important;
    transition: 0.4s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #f8f9fa!important;
    color: #333!important;
    transition: 0.4s;
}

.select2-container--open .select2-dropdown--below {
    min-width: 40vw;
}

@media (max-width: 768px) {
span.select2-selection.select2-selection--multiple {
    min-width: calc(100vw - 30px)!important;
}
  
.select2-container--open .select2-dropdown--below {
    min-width: calc(100vw - 30px)!important;
}
}

.bkg-filters {
    background-color: #dedede;
    width: 100%;
    padding: 20px 0px;
}

.filter {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.filter-title {
    text-align: right;
    min-width: fit-content;
    margin-right: 10px;
}

.filter-title h5 {
    margin-top: 18px;
    color: #666666;
}

@media (max-width: 768px) {
.filter {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: flex-start;
}

  .filter-title h5 {
    text-align: left;
    margin-top: 0px;
}
}

.programasContainer .content-only-mobile {
    max-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #d8d8d8;
    min-height: 350px;
}

.content-only-mobile hr {
    display: none;
}

.content-only-mobile p {
    display: -webkit-box;
    max-width: 98%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    margin-top: -5px;
}


@media (max-width: 768px) {
.programasContainer .content-only-mobile {
    max-height: 100%;
    min-height: 100%;
}
}

a.fa.fa-linkedin {
    background-color: black!important;
    color: white!important;
}

.fa-linkedin:before {
    content: "\f0e1";
}

section#homeVid {
    padding: 70px 0px 80px 0px;
    position: relative;
}

.instVid {
    opacity: 1;
    transition: 0.4s;
}

.instVid:hover {
    opacity: 0.8;
    transition: 0.4s;
}

.instVid video {
    opacity: 1!important;
}

video.myVid::-webkit-media-controls-overlay-play-button {
display: contents!important;
}

video.myVid {
    transform: none;
    min-height: 100%;
    height: 100%;
}


/*---------------------------- HOME 25 ---------------------------------*/
.card.card-home {
    border: none;
    transition: 0.4s;
    height: 100%;
}

a.card-home-link:hover .card-home {
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.card.card-home .card-header {
    padding: 0px;
    overflow: hidden;
    transition: 0.4s;
    min-height: 200px;
    background-color: white;
    border-radius: 0px;
    border: none;
    display: flex;
}

a.card-home-link .card-home .card-header img {
    transition: 0.4s;
}

a.card-home-link:hover .card-home .card-header img {
    transform: scale(1.25);
    transition: 0.4s;
}

.card.card-home .card-body {
    padding: 25px 20px 20px 20px;
    border: none;
}

.card.card-home .card-footer {
    background-color: #fff;
    border: none;
    padding-bottom: 30px;
    padding-top: 0px;
}

.card-home-link {
    position: relative;
    width: 100%;
    height: 100%;
}

a.card-home-link .chlHover {
    position: absolute;
    border-radius: 50rem;
    width: 1px;
    height: 1px;
    background-color: rgba(255,255,255,0.25);
    top: 60%;
    left: 50%;
    z-index: 0;
    transition: 0.1s forwards;
}

a.card-home-link:hover .chlHover {
    position: absolute;
    border-radius: 50rem;
    background-color: rgba(255,255,255,0);
    top: 60%;
    left: 0%;
    z-index: 1501;
    transform: scale(600);
    transform-origin: center center;
    transition: 0.4s;
}

.btn-ver-mas {
    border: 1px solid #3c3c3c;
    font-size: 13px;
    letter-spacing: 3px;
    font-family: 'Nunito';
    font-weight: 500;
    width: 200px;
    padding: 5px 15px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.4s;
    text-transform: uppercase;
}

a.card-home-link:hover .btn-ver-mas {
    width: 100%;
    padding: 5px 15px;
    transition: 0.4s;
    background-color: #3c3c3c;
    color: white;
}

#gestionar {
    padding-top: 60px;
}

section#gestionar h1 {
    text-transform: none;
    letter-spacing: 0px;
    font-size: 1.75rem;
    font-weight: 200!important;
}

section#gestionar h3 {
    text-transform: none;
    letter-spacing: 0px;
    font-size: 1.5rem;
    font-weight: 500;
}

.beneficiosContainer {
    padding: 40px;
}

.bcHolder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.bcText {
    width: 80%;
    margin-left: 0px;
    margin-right: auto;
}

.beneficiosContainer .row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.beneficiosContainer h4 {
    font-size: 16px;
    letter-spacing: 1px;
}

.beneficiosContainer p {
    line-height: 18px;
}

.beneficiosUno {background-image: url("iconos/beneficios_01.svg");}
.beneficiosDos {background-image: url("iconos/beneficios_02.svg");}
.beneficiosTres {background-image: url("iconos/beneficios_03.svg");}
.beneficiosCuatro {background-image: url("iconos/beneficios_04.svg");}
.beneficiosCinco {background-image: url("iconos/beneficios_05.svg");}
.beneficiosSeis {background-image: url("iconos/beneficios_06.svg");}
.beneficiosSiete {background-image: url("iconos/beneficios_07.svg");}

@media (max-width: 768px) {
.bcHolder {
    flex-direction: column;
}
  
.bcText {
    width: 100%;
}
}


/*---------------------------- CALL 2 ACTION - SUSCRIBITE 25 ---------------------------------*/
a section#call2Action {
    padding: 60px;
    text-align: center;
    background: #0f8c84;
    background: linear-gradient(90deg, rgba(15, 140, 132, 1) 0%, rgba(24, 119, 161, 1) 100%);
    transition: 0.4s;
    z-index: 1;
    position: relative;
}

a:hover section#call2Action {
    filter: hue-rotate(45deg);
    transition: 0.4s;
}

a:hover section#call2Action h1 {
    transform: scale(0.85);
    transition: 0.4s;
}

section#call2Action h1 {
    font-size: 26px!important;
    color: white;
    margin-bottom: 0px;
    font-weight: 500;
    letter-spacing: 4px;
    transition: 0.4s;
    margin-left: auto;
    margin-right: auto;
}

section#suscribite {
    padding: 60px;
    text-align: center;
    background: #0f8c84;
    background: linear-gradient(90deg, rgba(15, 140, 132, 1) 0%, rgba(24, 119, 161, 1) 100%);
    transition: 0.4s;
}


section#suscribite h2 {
    color: white;
    letter-spacing: 3px;
    font-size: 1rem;
}

section#suscribite h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 1.75rem;
}

.input-group.suscribite {
    margin-top: 20px;
    margin-bottom: 0px;
}

.input-group.suscribite .form-control {
    border: 1px solid #fff!important;
    background-color: rgba(255,255,255,0.5);
    border-radius: 6px 0px 0px 6px;
    height: 42px;
}

.input-group.suscribite .btn-outline-light {
    border-radius: 0px 6px 6px 0px;
    border-left: none;
    text-transform: uppercase;
    letter-spacing: 4px!important;
    font-size: 14px;
}

div#successMessage {
    font-size: 18px;
    color: white!important;
}

/*---------------------------- SRVICIOS 25 ---------------------------------*/
section#searchDestacados h2 {
    color: white;
}

section#executivesearch h2 {
    font-size: 15px;
    margin-top: 20px;
    letter-spacing: 4px;
    font-weight: 500;
}

section#searchDestacados {
    background: linear-gradient(45deg, rgba(6, 113, 110, 1) 0%, rgba(24, 119, 161, 1) 100%);
}

section#searchDestacados h6 {
    color: white;
}

section#searchDestacados .titleDivider {
    border-color: white;
}

.shContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}

.shContainer .iconos-md {
    width: 90px;
    height: 90px;
    margin-right: 30px;
    margin-bottom: 0px;
}

.shText {
    width: 100%;
}


.shText h4 {
    font-size: 18px;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

.shText p {
    margin-bottom: 0px;
    font-size: 15px;
}

.kpiContainer {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.kpiContainer h1 {
    font-size: 58px;
    letter-spacing: 0px;
    margin-bottom: 0px;
    font-weight: 300;
    font-family: open-sans, sans-serif;
    color: #fff;
}

.kpiContainer h1 span {
    margin-left: -35px;
    font-size: 34px;
    position: relative;
    top: -7px;
    margin-right: -2px;
    color: #fff;
}

.kpiContainer h3 {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
    color: #fff;
}

.kpiContainer h4 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
    color: #fff;
}


/* -- Number 1 --*/
@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

numOne {
  animation: counterOne 3s forwards alternate ease-in-out;
  counter-reset: num var(--num);
}
numOne::after {
  content: counter(num);
}

@keyframes counterOne {
  from {
    --num: 0;
  }
  to {
    --num: 500;
  }
}

numTwo {
  animation: counterTwo 3s forwards alternate ease-in-out;
  counter-reset: num var(--num);
}
numTwo::after {
  content: counter(num);
}

@keyframes counterTwo {
  from {
    --num: 0;
  }
  to {
    --num: 150;
  }
}

numThree {
  animation: counterThree 4s forwards alternate ease-in-out;
  counter-reset: num var(--num);
}
numThree::after {
  content: counter(num);
}

@keyframes counterThree {
  from {
    --num: 0;
  }
  to {
    --num: 7;
  }
}

numFour {
  animation: counterFour 3s forwards alternate ease-in-out;
  counter-reset: num var(--num);
}
numFour::after {
  content: counter(num);
}

@keyframes counterFour {
  from {
    --num: 0;
  }
  to {
    --num: 90;
  }
}

numSix {
  animation: counterSix 4s forwards alternate ease-in-out;
  counter-reset: num var(--num);
}
numSix::after {
  content: counter(num);
}

@keyframes counterSix {
  from {
    --num: 0;
  }
  to {
    --num: 5;
  }
}


.es1 {background-image: url("iconos/es-01.svg");}
.es2 {background-image: url("iconos/es-02.svg");}
.es3 {background-image: url("iconos/es-03.svg");}
.es4 {background-image: url("iconos/es-04.svg");}


section#politica h5 {
    letter-spacing: 0px;
    font-size: 20px;
    text-transform: none;
    font-weight: 600!important;
    margin-top: 40px!important;
}

section#politica h6 {
    letter-spacing: 0px;
    font-size: 16px;
    text-transform: none;
    font-weight: 600;
}


.leadership1 {background-image: url("iconos/leadershi-01.svg");}
.leadership2 {background-image: url("iconos/leadershi-02.svg");}
.leadership3 {background-image: url("iconos/leadershi-03.svg");}
.leadership4 {background-image: url("iconos/leadershi-04.svg");}
.leadership5 {background-image: url("iconos/leadershi-05.svg");}
.leadership6 {background-image: url("iconos/leadershi-06.svg");}
.leadership7 {background-image: url("iconos/leadershi-07.svg");}
.leadership8 {background-image: url("iconos/leadershi-08.svg");}



label.form-label {
    width: 100%;
    font-size: 14px;
}

.form-select {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: 1px solid #ced4db;
    border-radius: 4px;
    font-weight: 300;
    color: #505050;
}



@media (max-width: 768px) {
section#gestionar h1 {
    font-size: 1.25rem;
}

  
.beneficiosContainer h4 {
    text-align: center;
}
  
.beneficiosContainer p {
    line-height: 22px;
    text-align: center;
}
  
a section#call2Action {
    padding: 40px 20px;
}
  
section#call2Action h1 {
    max-width: 100vw;
}
  
section#call2Action h1 {
    font-size: 22px!important;
}
  
section#call2Action h1 small, .small {
    font-size: 70%;
}
  
section#suscribite {
    padding: 40px 20px;
}
  
section#suscribite h1 {
    font-size: 20px;
}
  
section#suscribite h2 {
    font-size: 14px;
}
}



section#confiar {
    padding: 80px 0px!important;
}



.grecaptcha-badge {
    display: none;
    opacity: 0;
}

section#beneficios {
    color: white;
    background: #06716E;
    background: linear-gradient(45deg, rgba(6, 113, 110, 1) 0%, rgba(24, 119, 161, 1) 100%);
}

section#beneficios .titleDivider {
    border-color: white;
}


section#programas {
    background: #06716E;
    background: linear-gradient(45deg, rgba(6, 113, 110, 1) 0%, rgba(24, 119, 161, 1) 100%);
}

section#programas h6 {
    color: #fff;
}

section#programas h2 {
    color: #fff;
}

section#programas .titleDivider {
    border-color: white;
}

.card.card-home.programas {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid white;
    color: white;
}

.card.card-home.programas .card-header {
    background-color: transparent;
}





