:root {
  --blanco: #fff;
  --negro: #000;
  --rojo: #a6272d;
  --rojo2: #641312;
  --amarillo: #ffa719;
  --azul: #5474ea;
  --verde: #637080;
}

body, p {
  line-height: normal;
}

h1, h2, h3, h4, h5, h6 {
  line-height: normal;
}

/*Template
*********************************************/
.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

@media screen and (max-width: 599px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.heading {
  margin-bottom: 30px;
}

.heading .smallTitle {
  font-size: 22px;
  color: #000;
  font-weight: 800;
  margin-bottom: 0px;
}

.heading .title {
  color: var(--azul);
  font-weight: 800;
  margin-bottom: 0px;
  font-size: 35px;
  line-height: 45px;
  margin-top: 10px;
}

/*Margin Paddings
*********************************************/
.mt-40 {
  margin-top: 40px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

/*Botones
*********************************************/
.btn-red {
  background: var(--rojo);
  border: 1px solid var(--rojo);
  color: #fff;
  padding: 15px 25px;
  display: inline-block;
  font-family: var(--urbanSB);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.btn-red:hover {
  background: transparent;
  border: 1px solid var(--rojo);
  color: var(--rojo);
}

.btn-red.hover-white:hover {
  background: transparent;
  border: 1px solid var(--rojo);
  color: #fff;
}

.btn-yellow {
  background: var(--amarillo);
  border: 1px solid var(--amarillo);
  color: #fff;
  padding: 15px 25px;
  display: inline-block;
  font-family: var(--urbanSB);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.btn-yellow:hover {
  background: transparent;
  border: 1px solid var(--amarillo);
  color: var(--amarillo);
}

/*Fuentes y estilos
*********************************************/
.w-600 {
  font-weight: 600;
}

/*Header
*********************************************/
/*Footer
*********************************************/
/*Banner
*********************************************/
#banner {
  height: 100vh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #banner {
    height: 100%;
  }
}

@media screen and (max-width: 599px) {
  #banner {
    height: 130vh;
  }
}

.rowContentBanner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70vh;
}

.rowContentBanner .titleSlide {
  color: var(--blue);
  font-weight: 800;
  font-size: 50px;
  margin-bottom: 25px;
}

@media screen and (max-width: 599px) {
  .rowContentBanner .titleSlide {
    font-size: 33px;
  }
}

.rowContentBanner .descriptionBanner {
  line-height: normal;
  color: var(--verde);
  font-size: 26px;
  margin-bottom: 0;
  padding-right: 50px;
}

@media screen and (max-width: 599px) {
  .rowContentBanner .descriptionBanner {
    font-size: 23px;
    padding-right: 0;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .rowContentBanner {
    height: 50vh;
  }
}

@media screen and (max-width: 599px) {
  .rowContentBanner {
    height: 80vh;
  }
}

.footerBanner {
  background: url("../archivos/imagenes/slider.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rowContentImage {
  height: 30vh;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 30px;
}

.rowContentImage .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.rowContentImage .content img:nth-child(2) {
  margin: 0 25px;
}

@media screen and (max-width: 599px) {
  .rowContentImage .content img:nth-child(2) {
    margin: 35px 0;
  }
}

.rowContentImage .content a {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

@media screen and (max-width: 599px) {
  .rowContentImage .content {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .rowContentImage {
    height: 50vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.personBanner {
  position: absolute;
  bottom: 0;
  right: 15%;
  height: 100%;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .personBanner {
    right: 0;
    height: 75%;
  }
}

@media screen and (max-width: 599px) {
  .personBanner {
    opacity: .2;
    right: 0;
  }
}

.cloudBanner {
  position: absolute;
  bottom: calc(0% + 30vh);
  right: 0;
  z-index: -1;
}

/*About
*********************************************/
#about {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

#about .rowAbout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#about .rowAbout .col-md-6:nth-child(2) {
  margin-top: 50px;
}

#about .contentText p {
  color: var(--verde);
  font-size: 22px;
  margin-bottom: 0;
}

.owl-testimonial .item {
  background: var(--azul);
  padding: 60px 40px;
  position: relative;
  margin-right: 60px;
  min-height: 400px;
}

.owl-testimonial .item .text {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  padding-right: 40px;
  position: relative;
}

.owl-testimonial .item .text:before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: -25px;
  color: #fff;
  font-size: 70px;
  line-height: 70px;
  font-family: sans-serif;
}

.owl-testimonial .item .text:after {
  content: "\201D";
  position: absolute;
  bottom: -50px;
  right: -25px;
  font-size: 70px;
  color: #fff;
  line-height: 70px;
  font-family: sans-serif;
}

.owl-testimonial .item .boxAuthor .nameClient {
  color: #fff;
  margin-bottom: 5px;
  font-size: 18px;
}

.owl-testimonial .item .boxAuthor .companyClient {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
}

.owl-testimonial .item .imageClient {
  position: absolute;
  top: 15px;
  right: -60px;
}

.owl-testimonial .item .imageClient img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  border: 10px solid #fff;
}

@media screen and (max-width: 599px) {
  .owl-testimonial .item .imageClient {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .owl-testimonial .item {
    margin-right: 0;
    padding-right: 0;
  }
}

/*Company
*********************************************/
#companies {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

#companies p.descriptionText {
  font-size: 22px;
  color: var(--verde);
  margin-bottom: 40px;
}

.colCompany {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.colCompany .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14%;
          flex: 0 0 14%;
  text-align: center;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .colCompany .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 599px) {
  .colCompany .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-bottom: 35px;
  }
}

.colCompany .item img {
  border-radius: 50%;
  border: 10px solid #93b0cc;
  margin-bottom: 20px;
}

.colCompany .item:hover img {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 2.0s ease;
  transition: 2.0s ease;
}

.colCompany p {
  color: var(--verde);
  text-align: center;
  font-weight: 600;
  white-space: pre-line;
  font-size: 18px;
  margin-bottom: 0;
}

/*Numbers
*********************************************/
#numbers {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

@media screen and (max-width: 599px) {
  #numbers .contentBx {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 599px) {
  #numbers .row .contentBx:last-child {
    margin-bottom: 0px;
  }
}

#numbers .number {
  font-size: 50px;
  color: var(--azul);
  font-weight: 800;
  margin-top: 10px;
}

#numbers .description {
  white-space: pre-line;
  font-size: 20px;
  color: var(--verde);
  font-weight: 600;
  margin-bottom: 0;
}

/*Presentations
*********************************************/
#presentation {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

#presentation .card {
  background: #fff;
  padding: 25px;
  border: none;
  min-height: 500px;
}

#presentation .card h3 {
  color: #000;
  font-weight: 800;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

#presentation .card .text {
  color: var(--verde);
  font-weight: 400;
  margin-bottom: 0;
}

/*Video
*********************************************/
#video {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
  position: relative;
  z-index: 2;
}

#video .videoPresentation {
  width: 100%;
  height: auto;
}

#video .cloudVideo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

#video .contVideo {
  width: 730px;
  height: 410px;
  position: relative;
}

#video .contVideo .presentation {
  width: 100%;
  height: auto;
  z-index: 1;
}

#video .contVideo .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 90px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#video .contVideo .icon:hover {
  color: white;
}

#video .contVideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: -1;
}

@media screen and (max-width: 599px) {
  #video .contVideo {
    width: 100%;
    height: auto;
  }
}

/*Media Presence
*********************************************/
#media-presence {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

#media-presence .listLogos {
  width: 100%;
  height: auto;
}

/*Global Impact
*********************************************/
#global-impact {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
}

#global-impact .contentText p {
  color: var(--verde);
  font-size: 22px;
  margin-bottom: 0;
}

#global-impact .contentImg img {
  width: 100%;
  height: auto;
}

/*Testimonial 2nd part
*********************************************/
#testimonial-2 {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
  position: relative;
  z-index: 1;
}

#testimonial-2 .rowBlocks .col-md-6:nth-child(2n) {
  padding-top: 40px;
}

#testimonial-2 .contentBx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
  background-color: #fff;
}

#testimonial-2 .contentBx .contentImg {
  border: 20px solid var(--azul);
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
  min-height: 240px;
  position: relative;
}

#testimonial-2 .contentBx .contentImg img {
  width: auto;
  height: 100%;
  padding: 15px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #testimonial-2 .contentBx .contentImg {
    min-height: 180px;
  }
}

#testimonial-2 .contentBx .contentText {
  background-color: #fff;
  padding: 20px;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  height: 100%;
  min-height: 240px;
}

#testimonial-2 .contentBx .contentText .text {
  color: var(--verde);
  font-weight: 500;
}

#testimonial-2 .contentBx .contentText .name {
  color: var(--verde);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 16px;
}

#testimonial-2 .contentBx .contentText .company {
  color: var(--azul);
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (min-width: 1800px) {
  #testimonial-2 .contentBx .contentText {
    -webkit-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4;
  }
}

@media screen and (max-width: 599px) {
  #testimonial-2 .contentBx {
    display: block;
  }
}

#testimonial-2 .cloud {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

/*Awards
*********************************************/
#awards {
  padding: 60px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
  position: relative;
}

#awards .contentText .text {
  color: var(--verde);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0;
}

#awards .contentAwards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#awards .contentAwards .cont {
  margin-bottom: 25px;
  text-align: center;
}

#awards .contentAwards .cont img {
  margin-bottom: 15px;
}

#awards .contentAwards .cont .title {
  font-weight: 800;
  margin-bottom: 0;
}

#awards .contentAwards .cont .subtitle {
  color: var(--verde);
  font-weight: 500;
  white-space: pre-line;
}

@media screen and (max-width: 599px) {
  #awards .contentAwards {
    display: block;
  }
}

#awards .contentPhotos .colImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#awards .contentPhotos .colImg .imgSmall {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
  padding: 5px;
}

#awards .contentPhotos .colImg .imgBig {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  position: relative;
  padding: 5px;
}

#awards .contentPhotos .colImg .imgMedium {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
  padding: 2.5px;
}

@media screen and (max-width: 599px) {
  #awards .contentPhotos .colImg img {
    width: 100% !important;
  }
}

@media screen and (max-width: 599px) {
  #awards .contentPhotos .colImg {
    display: block;
  }
}

/*Call to Action 1
*********************************************/
#callToAction1 {
  background: url("../archivos/imagenes/sharing-knowledge.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}

#callToAction1 .content {
  text-align: center;
}

#callToAction1 .content .smallTitle {
  color: #fff;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 600;
}

#callToAction1 .content .title {
  font-size: 35px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}

/*Call to Action 2
*********************************************/
#callToAction2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#fefeff), to(#e8eeff));
  background: linear-gradient(to bottom, #fefeff, #e8eeff);
  padding: 60px 0;
}

#callToAction2 .content {
  text-align: center;
}

#callToAction2 .content .text {
  color: var(--azul);
  font-size: 26px;
  line-height: normal;
  margin-bottom: 50px;
  font-weight: 600;
}

#callToAction2 .content .imgLogo {
  width: auto;
  height: 100%;
}

/*Contacto
*********************************************/
#contact {
  position: relative;
  padding: 60px 0;
}

#contact .imageContact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 599px) {
  #contact .imageContact {
    max-width: 100%;
  }
}

#contact .content {
  padding: 0 50px;
}

#contact .content .contentHeading {
  position: relative;
  margin-bottom: 50px;
}

#contact .content .contentHeading .title {
  color: var(--azul);
  font-weight: 800;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  #contact .content .contentHeading .title {
    color: #fff;
  }
}

#contact .content .contentHeading .description {
  font-size: 22px;
  color: var(--verde);
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  #contact .content .contentHeading .description {
    color: #fff;
  }
}

#contact .content .contentInfo {
  position: relative;
}

#contact .content .contentInfo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 25px;
  font-size: 22px;
  color: var(--verde);
  white-space: pre-line;
}

#contact .content .contentInfo a:last-child {
  margin-bottom: 0;
}

#contact .content .contentInfo a:hover {
  text-decoration: none;
}

#contact .content .contentInfo a i {
  color: var(--azul);
  margin-right: 20px;
  font-size: 25px;
}

@media screen and (max-width: 599px) {
  #contact .content .contentInfo a i {
    color: #fff;
  }
}

@media screen and (max-width: 599px) {
  #contact .content .contentInfo a {
    color: #fff;
  }
}

@media screen and (max-width: 599px) {
  #contact .content {
    padding: 0;
  }
}
/*# sourceMappingURL=style.css.map */