/*-----Body------*/

body{
  background-color: #fff;
  font-family:'Montserrat', sans-serif;
  font-size: 16px;
}

/*-----Paddings------*/

.pt-4{padding-top: 40px;}
.pt-5{padding-top: 50px;}
.pt-6{padding-top: 60px;}
.pt-7{padding-top: 70px;}
.pt-8{padding-top: 80px;}
.pt-9{padding-top: 90px;}
.pt-10{padding-top: 100px;}
.pt-11{padding-top: 110px;}
.pt-12{padding-top: 120px;}
.pt-15{padding-top: 150px;}
.pt-16{padding-top: 160px;}
.pt-17{padding-top: 170px;}
.pt-18{padding-top: 180px;}
.pt-19{padding-top: 190px;}
.pt-20{padding-top: 200px;}

/*-----Texte Center------*/
.mt-05{
  margin-top: 5rem;
}

.mt-01{
  margin-top: 1rem;
}

.text-center{
  text-align: center;
}
.pd-left-0{
  padding-left: 0;
}


/*-----Colors------*/

:root {
  --color-primary: #031331;
  --color-secondary: #0086FF;
  --color-driver: #0069C8;
  --color-family: #0086FF;
  --color-personal: #05C19F;
  --color-business: #DB0000;
  --color-black: #000000;
  --color-grey: #595959;
  --color-lightgrey:#A5A5A5;
  --color-lightblue: #20405D;
  --color-bluedark: #091932;
  --color-white:#FFFFFF;
  --color-lightwhite:#F4F2F2;
  /* --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px; */
}

/*--------------------------------------- HOME ------------------------------- */

/*-----0.- Section Banner------*/

  .masthead{
    height: 675px;
    /* background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.mp4) no-repeat center center/cover; */

    /* background: url('https://storage.googleapis.com/coverr-main/mp4/Mt_Baker.mp4') black no-repeat center center scroll; */
    /* background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%); */
  }

  video {
  min-width: 100%;
  /* min-height: 100vh; */
  z-index: 1;
  }

  .overlay {
  width: 100%;
  height: 675px;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #0F3269 0%, rgb(13 9 78 / 78%) 50%, rgb(2 20 47 / 66%) 50%);
  /* background-image: linear-gradient(45deg, rgba(0,0,0,.3) 50%, rgba(0,0,0,.7) 50%); */
  background-size: 3px 3px;
  /* z-index: 2; */
}



  /*-----Menu------*/

  #mainNav {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: var(--color-bluedark);
    transition: background-color 0.2s ease;
  }

  #mainNav .navbar-brand {
    color: #212529;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 15px;
    padding: 0.75rem 0;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link:active {
    color: #FFF;
  }

  #mainNav .navbar-nav .nav-item .nav-link.active {
    color: #ffffff !important;
    font-weight: 400;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url(../images/menu.svg);
  }
  .navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    /* border-color: rgba(255,255,255,.1); */
    border-color: transparent;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    float: right;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

  /*-----Banner content------*/

  .banner-intro{
    font-size: 35px;
    font-weight:300;
    color: #fff;
  }

  .banner-title{
    font-size: 59px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
  }

  .banner-text{
    font-size: 25px;
    font-weight: 200;
    color: #fff;
    line-height: 1.2;
  }

  .size-download{
    height: 3rem;
  }

  .banner_restringe{
    color: #fff;
    font-weight: 200;
    font-size: 16px;
  }

  .btn-basic{
    background-color: var(--color-secondary);
    color:#fff;
    font-weight: 400;
    padding: 8px 70px;
  }

  .btn-basic:hover{
    background-color: var(--color-white);
    color: var(--color-primary);
  }

  .device-wrapper {
      position: relative;
  }

  .mobile_phone{
    margin-top: -120px;
        width: 258px;
  }

  .center{
    position: relative;
  }

  .pulse{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 134, 255, 0.63);
    text-align: center;
    animation: animate 3s linear infinite;
  }

  @keyframes animate {
    0%
    {
      box-shadow: 0 0 0 0 rgba(0, 134, 255, .7), 0 0 0 0 rgba(0, 134, 255, .7), 0 0 0 0 rgba(0, 134, 255, .7);
    }
    40%
    {
      box-shadow: 0 0 0 50px rgba(0, 134, 255, 0), 0 0 0 0 rgba(0, 134, 255, .7), 0 0 0 0 rgba(0, 134, 255, 0);
    }
    80%
    {
      box-shadow: 0 0 0 50px rgba(0, 134, 255, 0), 0 0 0 80px rgba(0, 134, 255, 0), 0 0 0 0 rgba(0, 134, 255, 0);
    }
    100%
    {
      box-shadow: 0 0 0 50px rgba(0, 134, 255, 0), 0 0 0 80px rgba(0, 134, 255, 0), 0 0 0 150px rgba(0, 134, 255, 0);
    }

  }

/*----- 1.-Secc Submenu -----  */

.secc-menu{
  /* padding: 1rem 0; */
  box-shadow: 0px 2px 9px 2px #0000009c;
  background-color:#f4f2f2;
}

.secc-menu .owl-carousel_menu .owl-nav{
  display: none;
}

.secc-menu .owl-theme .owl-dots .owl-dot span{
  display: none !important;
}

.link_services{
  text-decoration: none;
  color: var(--color-primary);
}

.link_services:hover{
  text-decoration: none;
  color: var(--color-primary);
}

.submenu_link{
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  padding: 25px 0px;
  margin: 0;
  cursor: pointer;
  border-bottom: 4px solid #f4f2f2;
}

.submenu_link:hover{

  border-bottom: 4px solid var(--color-family);
  transition: all 0.7s ease-in-out;
  text-decoration: none;
}


/*----- 2.-Secc Beneficits -----*/

  .Secc-beneficios{
    padding: 8rem 0;
  }

  .first_title{
    font-size: 35px;
    font-weight:300;
    color:var(--color-primary);
    line-height: 0.5;
  }

  .character_title{
    font-size: 59px;
    font-weight: bold;
    color: var(--color-secondary);
  }

  hr.divider{
    /* max-width: 3.25rem; */
    /* border-width: 0.2rem; */
    border: 3px solid var(--color-primary);
    border-style: dashed;
  }


  .hovicon {
      display: inline-block;
      cursor: pointer;
      margin: 20px 0;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      text-align: center;
      position: relative;
      z-index: 1;
      color: #fff;
  }

  .hovicon:after {
      pointer-events: none;
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      content:'';
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box;
  }

  .hovicon:before {
      speak: none;
      font-size: 48px;
      line-height: 90px;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      display: block;
      -webkit-font-smoothing: antialiased;
  }

  /*-----Effect 1------*/

  .hovicon.effect-1 {
      background: var(--color-primary);
      -webkit-transition: background 0.2s, color 0.2s;
      -moz-transition: background 0.2s, color 0.2s;
      transition: background 0.2s, color 0.2s;
  }

  .hovicon.effect-1:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px var(--color-secondary);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
  }

  /*-----Effect 1b------*/

  .hovicon.effect-1.sub-b:hover {
    background: var(--color-secondary);
    color: #000;
  }

  .hovicon.effect-1.sub-b:hover i {
    color: #000;
  }

  .hovicon.effect-1.sub-b:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .hovicon.effect-1.sub-b:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  .title-benefit{
    font-size: 25px;
  }

/*----- 3.-Section User -----*/


  .section-driver{
    background-color: var(--color-driver);
    padding-top: 50px;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .section-family{
    background-color: var(--color-family);
    padding-top: 50px;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .section-personal{
    background-color: var(--color-personal);
    padding-top: 50px;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .section-business{
    background-color: var(--color-business);
    padding-top: 50px;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .block_text_user{
    margin-top: 100px;
  }

  .pulse_person {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: animate2 3s linear infinite;
    margin-top: 250px;
  }

  @keyframes animate2 {
    0%
    {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, .5), 0 0 0 0 rgba(255, 255, 255, .4), 0 0 0 0 rgba(255, 255, 255, .3);
    }
    40%
    {
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, .4), 0 0 0 0 rgba(255, 255, 255, 0);
    }
    80%
    {
      box-shadow: 0 0 0 50px rgba(255, 255, 255, 0), 0 0 0 80px rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0);
    }
    100%
    {
      box-shadow: 0 0 0 50px rgba(255, 134, 255, 0), 0 0 0 80px rgba(255, 255, 255, 0), 0 0 0 150px rgba(255, 255, 255, 0);
    }

  }

  .person_driver{
    margin-top: -280px;
  }

  .btn-driverapp{
    background-color: #fff;
    color: var(--color-secondary);
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn-driverapp:hover{
    background-color: #fff;
  }

  .btn-familiarapp{
    background-color: #fff;
    color: var(--color-secondary);
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn-familiarapp:hover{
    background-color: #fff;
  }

  .btn-personalapp{
    background-color: #fff;
    color: var(--color-personal);
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn-personalapp:hover{
    background-color: #fff;
  }

  .btn-corporativoapp{
    background-color: #fff;
    color: var(--color-business);
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn-corporativoapp:hover{
    background-color: #fff;
  }




/*----- 4.-Section Download -----*/

  .section_download{
    background-color: #fff;
    padding: 8rem 0;
  }

  .block-download-static{
    display: block;
  }
  .block-download-carousel{
    display: none;
  }

/*----- 4.5.-Section Video -----*/

  .secc_video{

  }

  .bg-video{
    padding: 8rem 0;
    /* background-color: #000000; */
    background-image: linear-gradient(rgb(3, 19, 49, 1),rgb(0, 86, 179, 0.34)), url(../images/ciudad.jpg);
    /* background-image: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0.8)), url(../images/ciudad.jpg); */
    /* background-image: url(../images/ciudad.jpg); */
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .image_video{
    width: 80px;
  }

/*----- 5.- Section count -----*/

  .section_count{
    background-color: #031331;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    /* padding: 6rem 0; */
    color: #fff;
  }
  .back_images{
    background-image: url(../images/count_back.png);
    background-size: cover;
    background-attachment:fixed;
    padding: 4rem 0;
  }

  .count_line{
    border-right: 7px dashed #fff;
  }

  .count_box p{
    font-size: 20px;
    font-weight: 500;
  }

  .count-title {
    font-size: 80px;
    font-weight: bold;
  }

/*----- 6.- Secc Services-home -----*/

    .secc-Services-home{
      padding: 8rem 0;
    }

    /*sccreenshot css*/
    /* line 2, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
    .screenshot-wrap {
      position: relative;
    }

    /* line 4, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
    .screenshot-wrap .screenshot-frame {
      background-image: url("../images/screen/iphone-mask.png");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      display: block;
      width: 290px;
      height: 513px;
      position: absolute;
      top: -10px;
      left: calc(50% + 0.5px);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      z-index: 2;
      border-radius: 20px;
    }

    /* line 21, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
    .screenshot-wrap .screen-carousel .owl-item img {
      -webkit-transform: scale(0.85);
      transform: scale(0.85);
      -webkit-transition: 0.3s;
      transition: 0.3s;
      -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
              box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
      border-radius: 30px;
    }

    /* line 30, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
    .screenshot-wrap .screen-carousel .owl-item.active.center img {
      -webkit-transform: scale(1);
      transform: scale(1);
    }

/*----- 6.- Secc transport -----*/

  .secc-transport{
    padding: 8rem 0;
  }

  .secc-transport .owl-carousel_transport .owl-nav{
    display: none;
  }

  .secc-transport .owl-theme .owl-dots .owl-dot span{
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: var(--color-secondary);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
  }

  .secc-transport .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--color-primary);
  }


  .transport_title {
    font-size: 60px;
    font-weight: bold;
    color: var(--color-secondary);
    text-align: center;
  }

  .text-sit{
    color: var(--color-primary);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
  }

  .title-sit{
    color: var(--color-grey);
    font-size: 60px;
    font-weight: bold;
    text-align: center;
  }

/*----- 7.- Section Equipement -----*/

  .secc-equipement{
    padding: 8rem 0;
    background-color: var(--color-secondary);
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .first_title_white{
    color: #fff;
    font-size: 40px;
    font-weight:300;
    line-height: 0.5;
  }

  .character_title_white{
    color: #fff;
    font-size: 59px;
    font-weight: bold;
  }

  hr.divider_white{
    border: 3px solid #fff;
    border-style: dashed;
  }

  .hide {
    display: none;
    position:absolute;
    top:170px;
    width: auto;
    background-color: #fff;
    padding:10px;
    color: var(--color-secondary);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /* -moz-box-shadow: 5px 5px 5px #222;
    -webkit-box-shadow: 5px 5px 5px #222; */
    /* box-shadow: 5px 5px 5px 0.8px #031331; */

  }

  .hide->img{float: bottom;}
  .hide->div{width: 250px;float: bottom;}
  /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
  .iAir:hover,.iCamara:hover,.iEcosistema:hover,.iCarga:hover,.iWifi:hover,.iSoporte:hover{filter: none;}

  .iAir:hover + .hide,.iCamara:hover + .hide,.iEcosistema:hover + .hide,.iCarga:hover + .hide,.iWifi:hover +.hide,.iSoporte:hover + .hide {
    z-index: 10;
    display: block;
  }

  .circle_equipement{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
  }

  .hovicon2 {
    display: inline-block;
    cursor: pointer;
    margin: 20px 0;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #fff;
  }

  .hovicon2:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content:'';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }

  .hovicon2:before {
    speak: none;
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
  }

  /* Effect 1 */

   .hovicon2.effect-1 {
     background: #fff;
     -webkit-transition: background 0.2s, color 0.2s;
     -moz-transition: background 0.2s, color 0.2s;
     transition: background 0.2s, color 0.2s;
  }

  .hovicon2.effect-1:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.94);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
  }

  /* Effect 1b */
   .hovicon2.effect-1.sub-b:hover {
     background: #fff;
     color: #000;
  }

  .hovicon2.effect-1.sub-b:hover i {
    color: #000;
  }

  .hovicon2.effect-1.sub-b:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .hovicon2.effect-1.sub-b:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

/*----- 8.- Section Testimony -----*/

  .secc-Testimonio{
    padding: 8rem 0 6rem 0;
    background-color: var(--color-lightwhite);
  }

  .bg-block-testimonio{
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
  }

  .secc-Testimonio .owl-carousel_testimonio .owl-nav{
    display: none;
  }

  .secc-Testimonio .owl-theme .owl-dots .owl-dot span{
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: var(--color-secondary);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
  }

  .secc-Testimonio .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--color-primary);
  }

  .testimonial-round img{
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid rgba(140, 140, 140, 0.5);
  }

  .testimonial-round:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
  }

  .name-testimonio{
    color: var(--color-primary);
    font-size: 25px;
    font-weight: 600;
  }

  .day-testimonio{
    color: var(--color-grey);
    font-size: 15px;
    font-weight: 700;
  }

  .day-testimonio span{
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 14px;
    border-radius: 3px;
    padding: 3px 10px;
  }

  .text-testimonio{
    color: var(--color-grey);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 4px;
  }

  .calification ul{
    padding: 0;
    margin:0;
  }

  .calification ul li{
    list-style: none;
    display: inline-block;
    padding: 0;
  }

  /*----- 8.5.- Secc gallery ----------*/
  .bg_gallery{
    background-color: #fff;
  }

  .mdb-lightbox figure {
      float: left;
      margin: 0;
      padding: 0;
  }

  #portfolio .container-fluid, #portfolio .container-sm, #portfolio .container-md, #portfolio .container-lg, #portfolio .container-xl {
    max-width: 1920px;
  }

  #portfolio .container-fluid .portfolio-box, #portfolio .container-sm .portfolio-box, #portfolio .container-md .portfolio-box, #portfolio .container-lg .portfolio-box, #portfolio .container-xl .portfolio-box {
    position: relative;
    display: block;
  }

  #portfolio .container-fluid .portfolio-box .portfolio-box-caption, #portfolio .container-sm .portfolio-box .portfolio-box-caption, #portfolio .container-md .portfolio-box .portfolio-box-caption, #portfolio .container-lg .portfolio-box .portfolio-box-caption, #portfolio .container-xl .portfolio-box .portfolio-box-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    opacity: 0;
    color: #fff;
    background: rgba(3, 19, 49, 0.9);
    transition: opacity 0.25s ease;
    text-align: center;
  }

  #portfolio .container-fluid .portfolio-box .portfolio-box-caption .project-category, #portfolio .container-sm .portfolio-box .portfolio-box-caption .project-category, #portfolio .container-md .portfolio-box .portfolio-box-caption .project-category, #portfolio .container-lg .portfolio-box .portfolio-box-caption .project-category, #portfolio .container-xl .portfolio-box .portfolio-box-caption .project-category {
    font-size: 0.85rem;
    font-weight: 600;
    /* text-transform: uppercase; */
  }

  #portfolio .container-fluid .portfolio-box .portfolio-box-caption .project-name, #portfolio .container-sm .portfolio-box .portfolio-box-caption .project-name, #portfolio .container-md .portfolio-box .portfolio-box-caption .project-name, #portfolio .container-lg .portfolio-box .portfolio-box-caption .project-name, #portfolio .container-xl .portfolio-box .portfolio-box-caption .project-name {
    font-size: 1.2rem;
  }

  #portfolio .container-fluid .portfolio-box:hover .portfolio-box-caption, #portfolio .container-sm .portfolio-box:hover .portfolio-box-caption, #portfolio .container-md .portfolio-box:hover .portfolio-box-caption, #portfolio .container-lg .portfolio-box:hover .portfolio-box-caption, #portfolio .container-xl .portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
  }

/*----- 9.- Section Clients -----*/

  .secc-socios{
    padding: 8rem 0;
  }

  .secc-socios .owl-carousel_clients .item{
    /* width: 200px; */
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  /* .secc-socios .owl-carousel_clients .item img{
    margin-bottom: 20px;
  } */

  .secc-socios .owl-carousel_clients .owl-nav{
    display: none;
  }

  .secc-socios .owl-theme .owl-dots .owl-dot span{
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: var(--color-secondary);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
  }

  .secc-socios .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--color-primary);
  }

/*----- 10.- Section News -----*/


  .secc-noticias{
    padding: 8rem 0;
    background-color:var(--color-lightwhite);
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .block-news{
    background-color: var(--color-white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .block-body-news-personal{
    padding: 15px;
    border-bottom: 6px solid var(--color-personal);
    min-height: 250px;
  }

  .block-body-news-familiar{
    padding: 15px;
    border-bottom: 6px solid var(--color-family);
    min-height: 250px;
  }

  .block-body-news-corporativo{
    padding: 15px;
    border-bottom: 6px solid var(--color-business);
    min-height: 250px;
  }

  .block-title-news{
    color:var(--color-primary);
    font-size: 25px;
    font-weight: 700;

  }

  .block-days-news{
    font-size: 16px;
    font-weight: 400;
    color: var(--color-lightgrey);
  }

  .block-text-news{
    font-size: 15px;
    font-weight: 300;
    color: var(--color-grey);
  }

  .btn-news{
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    padding: 5px 25px;
  }

  .btn-news:hover{
    background-color: #010d25;
    color: var(--color-white);
  }

  .btn-news-all{
    background-color: var(--color-primary);
    border-radius: 5px;
    color: var(--color-white);
    font-size: 18px;
    padding: 10px 25px;
    cursor: pointer;
    /* text-decoration: none; */
    display: block;
  }

  .btn-news-all:hover{
    background-color: #010d25;
    color: var(--color-white);
    text-decoration: none;
  }


/*----- 11.- Secc Contact -----*/

  .secc-contacto{
    padding: 8rem 0;
  }

  .secc-contacto2 {
    background-color: #f1f1f1;
}

  .block-contact-map iframe{
    padding: 0 70px;
  }

  /* form contact */
  .form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    margin-right: .75rem;
  }

  .block-text-contact{
    color: var(--color-lightgrey);
    font-size: 16px;
    font-weight: 300;
  }

  .btn-contact{
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    padding: 5px 25px;
  }

  .btn-contact:hover{
    background-color: #010d25;
    color: var(--color-white);
  }

/*----- 12.- Secc Footer -----*/

  .secc-footer{
    padding: 6rem 0;
    background-color: var(--color-primary);
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .block-title-footer{
    color: var(--color-white);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
  }

  .block-footer ul{
    margin: 0;
    padding: 0;
  }

  .block-footer ul li{
    text-decoration: none;
    list-style: none;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
  }

  .title-download{
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
  }

  .title_foorter_datos{
    font-size: 20px;
    text-align: left;
    color: var(--color-white);
  }

  .footer_datos{
    /* display: inline-block; */
    color:#ffffff8f;
    /* color: var(--color-white); */
    font-size: 20px;
    font-weight: 300;
    text-align: center;
  }

  .footer_datos:hover{
    color: var(--color-white);
  }

  .divider_white_footer{
    border: 3px solid #ffffffab;
    border-style: dashed;
  }

  /* block info Footer */

  .footer-img_download{
    height: 3rem;
  }

  .block-redes-footer ul{
    margin: 0;
    padding: 0;
    text-align: right;
  }

  .block-redes-footer ul li{
    list-style: none;
    display: inline-block;
    margin: 0 0 0 5px;
  }

  .block-footer ul li a{
    color: #ffffff8f;
  }
  .block-footer ul li a:hover{
    color: #fff;
    text-decoration: none;
  }

  .block-redes-footer ul li img{
    width: 45px;
  }

/*----- 13.- Secc Subfooter -----*/

  .subfooter{
    background-color:#000713;
    color: var(--color-white);
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }

  .subfooter p{
    margin: 0;
  }

/*--------------------------------------- CONDUCTOR ------------------------------- */

/*-----1.- Section Banner Conductor------*/

  .masthead_driver{
    height: 768px;
    background: var(--color-driver);
  }

  .pulse_person_driver{
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: animate2 3s linear infinite;
    margin-top: 116px;
  }

  .page_person_driver {
    margin-top: -234px;
  }

  .btn-basic_driver{
    background-color:  var(--color-primary);
    color:var(--color-white);
    /* background-color: var(--color-white);
    color:var(--color-driver); */
    font-weight: 400;
    padding: 8px 70px;
  }

  .btn-basic_driver:hover{
    /* background-color:  var(--color-primary);
    color:var(--color-white); */
    background-color: var(--color-white);
    color:var(--color-driver);
  }

/*-----2.- Section Benefits Conductor------*/

  .character_title_driver{
    color: var(--color-driver);
  }

  .title_hover{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }

  /*-----Effect 1------*/

    .hovicon.effect-2 {
        background: var(--color-driver);
        -webkit-transition: background 0.2s, color 0.2s;
        -moz-transition: background 0.2s, color 0.2s;
        transition: background 0.2s, color 0.2s;
    }

    .hovicon.effect-2:after {
      top: -7px;
      left: -7px;
      padding: 7px;
      box-shadow: 0 0 0 4px var(--color-driver);
      -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
      -webkit-transform: scale(.8);
      -moz-transition: -moz-transform 0.2s, opacity 0.2s;
      -moz-transform: scale(.8);
      -ms-transform: scale(.8);
      transition: transform 0.2s, opacity 0.2s;
      transform: scale(.8);
      opacity: 0;
    }

    /*-----Effect 1b------*/

    .hovicon.effect-2.sub-b:hover {
      background: var(--color-driver);
      color: #000;
    }

    .hovicon.effect-2.sub-b:hover i {
      color: #000;
    }

    .hovicon.effect-2.sub-b:after {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
    }

    .hovicon.effect-2.sub-b:hover:after {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }

/*-----3.- Section Requisit Conductor------*/

    /* .Secc-requisit{
      padding: 8rem 0 4rem 0;
      background-color: #F4F2F2;
      box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    } */

    .Secc-requisit_driver {
    padding: 8rem 0 0.009rem 0;
    background-color: #F4F2F2;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    }

    .type_driver{
      position: absolute;
      margin-top: -52px;
    }

    .name_requisit_driver{
      font-size: 25px;
      font-weight: 600;
      color: var(--color-driver);
    }

    .block_coments_services{
      /* border: 3px solid var(--color-primary); */
      background-color: var(--color-white);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 5px;
      padding: 15px;
    }

    .block_coments_services .text_requisit_driver{
      margin-bottom: 0;
    }

    .subtitle_requisit_driver{
      font-size: 25px;
      font-weight: 600;
      color: var(--color-driver);
    }

    .list-requisit{
       padding-left: 45px;
    }

    .text_requisit_driver{
      font-size: 16px;
      color: var(--color-primary);
      /* padding-left: 45px;
      margin-bottom: 20px; */
    }

    .text_restringe_driver{
      font-size: 16px;
      color: var(--color-primary);
      /* padding-left: 30px; */
    }



/*----- 3.5.- Secc-documents------------- */

    .secc-documents{
      padding: 8rem 0;
      background-color: var(--color-driver);
      box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    }

    .title_list_requisit{
      color: var(--color-primary);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .block_bonus ul{
      /* margin-right: 0; */
      padding-left: 0;
    }

    .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    /* border-bottom: 3px dashed #fff; */
    /* border-style: dashed; */
  }

    .list_requisit{
      list-style: none;
      color: var(--color-grey);
      line-height: 1.3;
      font-size: 14px;
      border-bottom: 1px dotted #909090;
      padding: 10px 0;
    }

    .image_requisit{
      width: 80px;
    }

    .block_requisit {
      background-color: #fff;
      box-shadow: 5px 4px 4px 4px #0000004a;
      border-radius: 5px;
      padding: 40px 15px;
      min-height: 570px;
    }

    .block_requisit_moto {
    background-color: #fff;
    box-shadow: 5px 4px 4px 4px #0000004a;
    border-radius: 5px;
    padding: 40px 15px;
    min-height: 540px;
    }

    .nav-tabs .nav-link {
      border: 1px solid transparent;
      border-top-left-radius: .25rem;
      border-top-right-radius: .25rem;
      color: #fff;
    }




/*-----5.- Section Premios Conductor------*/
    .size_number_bonus{
      width: 65px;
    }

    .title_premio{
      color: var(--color-primary);
      font-size: 25px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .text_premio{
      color: var(--color-grey);
      line-height: 1.3;
      font-size: 15px;
    }

/*-----6.- Section Services Conductor------*/

  .secc-services{
    padding: 8rem 0;
    background-color: var(--color-lightwhite);
  }

  .mobile_phone_services{
    margin-top: -120px;

  }

  .center_services{
    position: relative;
  }

  .pulse_services{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 134, 255, 0.63);
    text-align: center;
    animation: animate 3s linear infinite;
    margin-top: 125px;

  }

  @keyframes animate {
    0%
    {
      box-shadow: 0 0 0 0 rgba(0, 105, 200, .7), 0 0 0 0 rgba(0, 105, 200, .7), 0 0 0 0 rgba(0, 105, 200, .7);
    }
    40%
    {
      box-shadow: 0 0 0 50px rgba(0, 105, 200, 0), 0 0 0 0 rgba(0, 105, 200, .7), 0 0 0 0 rgba(0, 105, 200, 0);
    }
    80%
    {
      box-shadow: 0 0 0 50px rgba(0, 105, 200, 0), 0 0 0 80px rgba(0, 105, 200, 0), 0 0 0 0 rgba(0, 105, 200, 0);
    }
    100%
    {
      box-shadow: 0 0 0 50px rgba(0, 134, 255, 0), 0 0 0 80px rgba(0, 134, 255, 0), 0 0 0 150px rgba(0, 134, 255, 0);
    }

  }

  .name_services{
    font-size: 25px;
    font-weight: 500;
  }

  .box_services{
    background-color: #fff;
    /* padding: 20px; */
    padding: 20px 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  .box_services:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
  }

  .img_services{
    width: 160px;
  }

  .img_services2 {
    width: 118px;
  }

  .subtitle_services_driver {
    color: var(--color-primary);
    font-size: 35px;
    font-weight: 700;
  }

  .label-default{
    background-color: #f70707;
    color: #fff;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    vertical-align: middle;
  }

  .text_item_services{
    font-size: 14px;
  }

  .btn_item_services{
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  .btn_item_services:hover{
    background-color: var(--color-driver);
    color: var(--color-white);
  }

  .btn_services2{
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    padding: 8px 250px;
  }

  .btn_services2:hover{
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  .btn_services_driver2{
    background-color: var(--color-primary);
    color: var(--color-white);
  }

  .btn_services_driver2:hover{
    background-color: var(--color-driver);
    color: var(--color-white);
  }





  /*-----7.- Section Bonus Equipment------*/

  .secc-equipement_driver{
    background-color: var(--color-driver);
  }

  .hide_driver {
    display: none;
    position:absolute;
    top:170px;
    width: auto;
    background-color: #fff;
    padding:10px;
    color: var(--color-driver);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /* -moz-box-shadow: 5px 5px 5px #222;
    -webkit-box-shadow: 5px 5px 5px #222; */
    /* box-shadow: 5px 5px 5px 0.8px #031331; */

  }

  .hide_driver->img{float: bottom;}
  .hide_driver->div{width: 250px;float: bottom;}
  /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
  .iAirco:hover,.iCamaras:hover,.iEcosistemas:hover,.iCargaes:hover,.iWifix:hover,.iSoporteis:hover{filter: none;}

  .iAirco:hover + .hide_driver,.iCamaras:hover + .hide_driver,.iEcosistemas:hover + .hide_driver,.iCargaes:hover + .hide_driver,.iWifix:hover +.hide_driver,.iSoporteis:hover + .hide_driver {
    z-index: 10;
    display: block;
  }


  /*-----8.- Section Funtion------*/

  .secc-funtion{
    padding: 8rem 0 10rem 0;
  }

  .mobile_pasos{
    position: absolute;
    margin-top: -260px;
  }

  .box_funtcion-driver{
    padding-left: 70px;
  }

  .subtitle_function_driver{
    color: var(--color-primary);
    font-size: 35px;
    font-weight: 700;
  }

  .funtion-link {
    color: #ffffff;
    text-decoration: none;
    background-color: var(--color-primary);
    font-size: 23px;
    font-weight: 500;
    margin-right: 15px;
  }

  .funtion-link:hover {
    color: #ffffff;
    background-color: var(--color-driver);
  }

  .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
      color: #fff;
      background-color: var(--color-driver);
  }


  /*-----9.- Section Cuidado Conductor------*/

      .block_bonus{
        background-color: #fff;
        box-shadow: 5px 4px 4px 4px #0000004a;
        border-radius: 5px;
        padding: 15px;
        min-height: 320px;

      }
      .image_cuidado{
        width: 130px;
      }

      .title_bonus{
        color: var(--color-primary);
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .text_bonus{
        color: var(--color-grey);
        line-height: 1.3;
        font-size: 15px;
      }

/*--------------------------------------- FAMILIAR ------------------------------- */

  /*-----1.- Section Banner Familiar------*/

  .masthead_familiar{
    height: 768px;
    background: var(--color-family);
  }

  .btn-basic_familiar{
    background-color:  var(--color-primary);
    color:var(--color-white);
    /* background-color: var(--color-white);
    color:var(--color-driver); */
    font-weight: 400;
    padding: 8px 70px;
  }

  .btn-basic_familiar:hover{
    /* background-color:  var(--color-primary);
    color:var(--color-white); */
    background-color: var(--color-white);
    color:var(--color-secondary);
  }


/*-----2.- Section Benefits Familiar------*/

  .character_title_family{
    color: var(--color-family);
  }

  /*-----Effect 1------*/

  .hovicon.effect-3 {
    background: var(--color-family);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
  }

  .hovicon.effect-3:after {
    top: -7px;
    left: -7px;
    padding: 7px;
    box-shadow: 0 0 0 4px var(--color-family);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    transition: transform 0.2s, opacity 0.2s;
    transform: scale(.8);
    opacity: 0;
  }

  /*-----Effect 1b------*/

  .hovicon.effect-3.sub-b:hover {
    background: var(--color-family);
    color: #000;
  }

  .hovicon.effect-3.sub-b:hover i {
    color: #000;
  }

  .hovicon.effect-3.sub-b:after {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .hovicon.effect-3.sub-b:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

/*-----3.- Section Requisit Familiar------*/

  .Secc-requisit_familiar{
    padding: 8rem 0 6rem 0 ;
    background-color: #F4F2F2;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
  }

  .type_family{
    position: absolute;
    margin-top: -36px;
  }

  .block_coments_requisit_familiar{
    /* border: 3px solid var(--color-primary); */
    background-color: var(--color-white);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 15px 20px;
  }

  .block_coments_requisit_familiar .text_requisit_familiar{
    margin-bottom: 0;
  }
  .size_icon_requisit{
    width: 40px;
  }

  .name_requisit_familiar {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    /* margin-bottom: 0; */
  }

  .text_requisit_familiar {
    font-size: 14px;
    color: var(--color-primary);
  }

  .m-10{
    margin-top: 50px;
  }

  /*-----6.- Section Services Familiar------*/

  .btn_services_familiar2{
      background-color: var(--color-primary);
      color: var(--color-white);
    }

    .btn_services_familiar2:hover{
      background-color: var(--color-family);
      color: var(--color-white);
    }

  /*-----7.- Section Bonus Equipment familiar------*/

  .secc-equipement_familiar{
    background-color: var(--color-family);
  }

  .hide_family {
    display: none;
    position:absolute;
    top:170px;
    width: auto;
    background-color: #fff;
    padding:10px;
    color: var(--color-family);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    /* -moz-box-shadow: 5px 5px 5px #222;
    -webkit-box-shadow: 5px 5px 5px #222; */
    /* box-shadow: 5px 5px 5px 0.8px #031331; */

  }

  .hide_family ->img{float: bottom;}
  .hide_family ->div{width: 250px;float: bottom;}
  /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
  .iAire:hover,.iCamare:hover,.iEcosisteme:hover,.iCarge:hover,.iWife:hover,.iSoportie:hover{filter: none;}

  .iAire:hover + .hide_family ,.iCamare:hover + .hide_family ,.iEcosisteme:hover + .hide_family ,.iCarge:hover + .hide_family ,.iWife:hover +.hide_family ,.iSoportie:hover + .hide_family  {
    z-index: 10;
    display: block;
  }

/*--------------------------------------- PERSONAL ------------------------------- */

  /*-----1.- Section Banner Personal------*/

  .masthead_personal{
    height: 768px;
    background: var(--color-personal);
  }

  .btn-basic_personal{
    background-color:  var(--color-primary);
    color:var(--color-white);
    /* background-color: var(--color-white);
    color:var(--color-driver); */
    font-weight: 400;
    padding: 8px 70px;
  }

  .btn-basic_personal:hover{
    /* background-color:  var(--color-primary);
    color:var(--color-white); */
    background-color: var(--color-white);
    color:var(--color-personal);
  }

  /*-----2.- Section Benefits Familiar------*/

    .character_title_personal{
      color: var(--color-personal);
    }

    /*-----Effect 1------*/

    .hovicon.effect-4 {
      background: var(--color-personal);
      -webkit-transition: background 0.2s, color 0.2s;
      -moz-transition: background 0.2s, color 0.2s;
      transition: background 0.2s, color 0.2s;
    }

    .hovicon.effect-4:after {
      top: -7px;
      left: -7px;
      padding: 7px;
      box-shadow: 0 0 0 4px var(--color-personal);
      -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
      -webkit-transform: scale(.8);
      -moz-transition: -moz-transform 0.2s, opacity 0.2s;
      -moz-transform: scale(.8);
      -ms-transform: scale(.8);
      transition: transform 0.2s, opacity 0.2s;
      transform: scale(.8);
      opacity: 0;
    }

    /*-----Effect 1b------*/

    .hovicon.effect-4.sub-b:hover {
      background: var(--color-personal);
      color: #000;
    }

    .hovicon.effect-4.sub-b:hover i {
      color: #000;
    }

    .hovicon.effect-4.sub-b:after {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
    }

    .hovicon.effect-4.sub-b:hover:after {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }

    /*-----3.- Section Requisit personal------*/

      .Secc-requisit_personal{
        padding: 8rem 0 0.1rem 0 ;
        background-color: #F4F2F2;
        box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
      }


/*-----6.- Section services personal------*/
      .mobile_phone_services2{
        margin-top: -144px;

      }
      .pulse_services2{
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: rgba(0, 134, 255, 0.63);
        text-align: center;
        animation: animate 3s linear infinite;
        margin-top: 226px;
      }

      .btn_services_personal2{
          background-color: var(--color-primary);
          color: var(--color-white);
        }

        .btn_services_personal2:hover{
          background-color: var(--color-personal);
          color: var(--color-white);
        }


/*-----7.- Section Bonus Equipment------*/

      .secc-equipement_personal{
        background-color: var(--color-personal);
      }

      .hide_personal {
        display: none;
        position:absolute;
        top:170px;
        width: auto;
        background-color: #fff;
        padding:10px;
        color: var(--color-personal);
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        /* -moz-box-shadow: 5px 5px 5px #222;
        -webkit-box-shadow: 5px 5px 5px #222; */
        /* box-shadow: 5px 5px 5px 0.8px #031331; */

      }

      .hide_personal ->img{float: bottom;}
      .hide_personal ->div{width: 250px;float: bottom;}
      /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
      .iAires:hover,.iCamares:hover,.iEcosistemes:hover,.iCarges:hover,.iWifes:hover,.iSoporties:hover{filter: none;}

      .iAires:hover + .hide_personal ,.iCamares:hover + .hide_personal ,.iEcosistemes:hover + .hide_personal ,.iCarges:hover + .hide_personal ,.iWifes:hover +.hide_personal ,.iSoporties:hover + .hide_personal  {
        z-index: 10;
        display: block;
      }





/*--------------------------------------- CORPORATIVO ------------------------------- */

  /*-----1.- Section Banner Corporativo------*/

  .masthead_corporativo{
    height: 768px;
    background: var(--color-business);
  }

  .btn-basic_corporativo{
    background-color:  var(--color-primary);
    color:var(--color-white);
    /* background-color: var(--color-white);
    color:var(--color-driver); */
    font-weight: 400;
    padding: 8px 70px;
  }

  .btn-basic_corporativo:hover{
    /* background-color:  var(--color-primary);
    color:var(--color-white); */
    background-color: var(--color-white);
    color:var(--color-business);
  }

  /*-----2.- Section Benefits Corporativo------*/

    .character_title_corporativo{
      color: var(--color-business);
    }

    /*-----Effect 1------*/

    .hovicon.effect-5 {
      background: var(--color-business);
      -webkit-transition: background 0.2s, color 0.2s;
      -moz-transition: background 0.2s, color 0.2s;
      transition: background 0.2s, color 0.2s;
    }

    .hovicon.effect-5:after {
      top: -7px;
      left: -7px;
      padding: 7px;
      box-shadow: 0 0 0 4px var(--color-business);
      -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
      -webkit-transform: scale(.8);
      -moz-transition: -moz-transform 0.2s, opacity 0.2s;
      -moz-transform: scale(.8);
      -ms-transform: scale(.8);
      transition: transform 0.2s, opacity 0.2s;
      transform: scale(.8);
      opacity: 0;
    }

    /*-----Effect 1b------*/

    .hovicon.effect-5.sub-b:hover {
      background: var(--color-business);
      color: #000;
    }

    .hovicon.effect-5.sub-b:hover i {
      color: #000;
    }

    .hovicon.effect-5.sub-b:after {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
    }

    .hovicon.effect-5.sub-b:hover:after {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }

    /*----- 3.-Section Requisit------*/

    .Secc-requisit_corpo {
    padding: 8rem 0 0.1rem 0;
    background-color: #F4F2F2;
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
    }


    /*-----6.- Section Services corporativo------*/

    .btn_services_corporativo2{
        background-color: var(--color-primary);
        color: var(--color-white);
      }

      .btn_services_corporativo2:hover{
        background-color: var(--color-business);
        color: var(--color-white);
      }


    /*-----7.- Section Bonus corporativo------*/

          .secc-equipement_corporativo{
            background-color: var(--color-business);
          }

          .hide_corporativo {
            display: none;
            position:absolute;
            top:170px;
            width: auto;
            background-color: #fff;
            padding:10px;
            color: var(--color-business);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            /* -moz-box-shadow: 5px 5px 5px #222;
            -webkit-box-shadow: 5px 5px 5px #222; */
            /* box-shadow: 5px 5px 5px 0.8px #031331; */
          }

          .hide_corporativo ->img{float: bottom;}
          .hide_corporativo ->div{width: 250px;float: bottom;}
          /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
          .iAiresc:hover,.iCamaresc:hover,.iEcosistemesc:hover,.iCargesc:hover,.iWifesc:hover,.iSoportiesc:hover{filter: none;}

          .iAiresc:hover + .hide_corporativo ,.iCamaresc:hover + .hide_corporativo ,.iEcosistemesc:hover + .hide_corporativo ,.iCargesc:hover + .hide_corporativo ,.iWifesc:hover +.hide_corporativo ,.iSoportiesc:hover + .hide_corporativo  {
            z-index: 10;
            display: block;
          }

/*---------------------------------------NOSOTROS ------------------------------- */

    /*-----0.- Section Banner------*/

    .masthead_somos{
      height: 365px;
      background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%);
    }


    .bg_masthead{
      background-image: url(../images/circulo_interno.svg);
      background-position: center;
      background-position-y: 70px;
      background-size: contain;
      background-attachment: fixed;
      padding: 4rem 0;
      background-repeat: no-repeat;
    }

    /*-----2.-Secc Nosotros------*/

    .title_somos{
      font-size: 35px;
      color: var(--color-primary);
      font-weight: bold;
    }

    .subtitle_somos{
      font-size: 20px;
      color: var(--color-primary);
      font-weight: bold;
    }

    .parrafo_somos{
      font-size: 16px;
    }

    .frase_somos{
      font-size: 16px;
      font-style: italic;
      color: var(--color-primary);
      font-weight: bold;
    }
    /*------ 2.- Valores--------------- */
    .hide_valores {
      display: none;
      position:absolute;
      top:170px;
      width: auto;
      background-color: #fff;
      padding:10px;
      color: var(--color-secondary);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      /* -moz-box-shadow: 5px 5px 5px #222;
      -webkit-box-shadow: 5px 5px 5px #222; */
      /* box-shadow: 5px 5px 5px 0.8px #031331; */

    }

    .hide_valores->img{float: bottom;}
    .hide_valores->div{width: 250px;float: bottom;}
    /* .iDinero,.iDestinos,.iBeneficios,.iSoporte{filter: grayscale(100%);} */
    .iAmor:hover,.iRespeto:hover,.iInnovacion:hover,.iEmprendimiento:hover,.iProteccion:hover,.iMundo:hover{filter: none;}

    .iAmor:hover + .hide_valores,.iRespeto:hover + .hide_valores,.iInnovacion:hover + .hide_valores,.iEmprendimiento:hover + .hide_valores,.iProteccion:hover +.hide_valores,.iMundo:hover + .hide_valores {
      z-index: 10;
      display: block;
    }


    /*------ 7.- Section trabajo ------*/

    .secc-working{
      padding: 8rem 0;
      background-color: var(--color-lightwhite);
    }

    .frase_work{
      font-size: 35px;
      font-weight: 400;
      color: var(--color-primary);
    }

    .frase_work span{
      font-weight: 600;
    }

    .btn_work{
      color: var(--color-white);
      background-color: var(--color-primary);
      font-size: 20px;
      font-weight: 500;
      padding: 8px 50px;
    }

    .btn_work:hover{
      color: var(--color-white);
      background-color: var(--color-family);
    }



/*---------------------------------------EQUIPO ------------------------------- */

/*-----0.- Section Banner------*/

.masthead_equipo{
  height: 365px;
  background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%);
}


.Secc-equipo{
  padding: 6rem 0 8rem 0;
}

  /*-----1.-Formulario -----*/

  .form-control1 {
    padding: 1.5rem 1.75rem;
  }

  .btn-search{
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .btn-search:hover{
    background-color: var(--color-family);
    border-color: var(--color-family);
  }

  /*-----2.-Secc Trabajos------*/

  .table td, .table th {
    padding: 1.8rem .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
    padding-right: 12%;
  }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    font-size: 25px;
    color: var(--color-primary);
  }

    .table-hover tbody tr:hover {
    color: #ffffff;
    background-color: #007bff;
  }

/*---------------------------------------REGISTRO ------------------------------- */
  .Secc-registro{
    /* padding: 6rem 0 8rem 0; */
    /* background-color: #f1f1f1; */
    background-color: var(--color-lightwhite)
  }
  .bg_register{
    background-image: url(../images/registro/city2.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    /* background-attachment:fixed; */
    padding: 6rem 0 16rem 0;
  }

  .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px dotted rgb(3 19 49 / 17%); */
    border: 1px dotted rgb(3 19 49 / 63%);
    border-radius: .25rem;
}

.text-info {
    color: var(--color-secondary);
    font-size: 16px;
}

/*---------------------------------------AYUDA ------------------------------- */
.Secc-ayuda{
  padding: 6rem 0 8rem 0;
  background-color: var(--color-lightwhite);
}
    .block_ayuda{
      min-height: 540px;
    }

/*---------------------------------------SERVICIOS ------------------------------- */
.Secc-services_page{
  padding: 8rem 0;
  background-color: var(--color-lightwhite);
}
/*  */

/*---------------------------------------NEWS -------------------------------*/

.title_news{
  font-size: 35px;
  color: var(--color-primary);
  font-weight: bold;
  /* text-align: left; */
}

.subtitle_news{
  font-size: 25px;
  color: var(--color-secondary);
  font-weight: bold;
  text-align: left;
}

.item_news{
  font-size: 20px;
  color: var(--color-primary);
  font-weight: bold;
  text-align: left;
}

.parrafo_news{
  font-size: 16px;
  text-align: left;
}

.parrafo_news span{
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-right: 10px;
}

.frase_news{
  font-size: 16px;
  font-style: italic;
  color: var(--color-primary);
  font-weight: bold;
}

.block_redes_social ul{
      padding: 0;
}

.list_redes{
  list-style: none;
  margin-bottom: 5px;
  cursor: pointer;
}
.block_share{
  display: none;
}

.share_links{
  text-align: left;
}

.block_share ul{
  padding:  0;
  text-align: left;
}

ul .list_redes_mobile{
  text-align: left;
  list-style: none;
  display: inline-block;
  margin-bottom: 5px;
  cursor: pointer;
}


/*---------------------------------------CALIDAD/PRIVACIDAD/CONDICIONES ------------------------------- */


/*-----2.-Secc Politica------*/

.title_politica{
  font-size:35px;
  color: var(--color-primary);
  font-weight: bold;
}

.subtitle_politica{
  font-size:30px;
  color: var(--color-primary);
  font-weight: bold;
}

.parrafo_politica{
  color: var(--color-primary);
  font-size: 18px;
}

.list_politica{
  color: var(--color-primary);
  margin-bottom: 15px;

}
.list_politica span{
  font-weight: bold;
}

.links_conect{
  color: var(--color-secondary);
}

.links_conect:hover{
  color: var(--color-secondary);
  text-decoration: underline;
}












/*--------------------------------------- MEDIAS QUERIES------------------------------- */
@media (min-width: 320px) and (max-width: 1200px) {
  /* line 41, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
  .screenshot-wrap .screenshot-frame {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 51, src/assets/scss/components/sereenshots-section/_screenshots-1.scss */
  .screenshot-wrap .screen-carousel .owl-item img {
    width: 65%;
    margin: auto;
  }
}

/*-------- Extra large devices (large desktops, 1200px and up) --------*/

@media (min-width: 1200px) {


  /*-----1.- Section Banner------*/

  #mainNav {
    /* box-shadow: none; */
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  #mainNav .navbar-brand:hover {
    color: #fff;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link-country {
    padding-left:0;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }

  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  #mainNav.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: var(--color-primary);
  }

  #mainNav.navbar-scrolled .navbar-brand {
    color: #fff;
  }

  #mainNav.navbar-scrolled .navbar-brand:hover {
    color: #f4623a;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: #ffffff8c;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
    color: var(--color-white);
  }

  /*----- 12.- Section Footer -----*/

  .footer-img_download{
    height: 3rem;
  }

  .text-subfooter{
    font-size: 18px;
  }

}

/*--------  Large devices (desktops, 992px and up) --------*/

@media (min-width: 992px) and (max-width: 1199.98px) {



  /*----- 1.- Section Banner -----*/

  #mainNav {
    /* box-shadow: none; */
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
  }

  #mainNav .navbar-brand:hover {
    color: #fff;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 0.5rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }

  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  #mainNav.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: var(--color-bluedark);
  }

  #mainNav.navbar-scrolled .navbar-brand {
    color: #fff;
  }

  #mainNav.navbar-scrolled .navbar-brand:hover {
    color: #f4623a;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: #fff;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
    color: var(--color-secondary);
  }

  /* Content Banner */
  .banner-intro{
    font-size: 30px;
  }

  .banner-title{
    font-size: 50px;
  }

  .banner-text{
    font-size: 20px;
  }

  .size-download{
    height: 2rem;
  }

  /* graphic banner content */

  .mobile_phone {
    margin-top: -100px;
  }

  /*----- 2.-Section Beneficits -----*/

  .first_title {
    font-size: 30px;
  }

  .character_title{
  font-size: 50px;
  }

  .title-benefit{
  font-size: 20px;
  }

  /*----- 4.-Section Download -----*/

  .block-download-carousel{
    display: none;
  }

  .block-download-static{
    display: block;
  }

  .img-block-download{
    width: 260px;
  }

  /*----- 5.-Section Count -----*/

  .count-title {
    font-size: 60px;
  }

  /*----- 7.-Section Equipement -----*/


  .first_title_white {
    font-size: 30px;
  }

  .character_title_white {
    font-size: 50px;
  }



  /*----- 10.-Section News -----*/

  .block-title-news {
    font-size: 20px;
  }

  .block-days-news {
    font-size: 14px;
  }

  .block-text-news {
    font-size: 13px;
  }

  /*----- 11.-Section Contact -----*/

  .block-text-contact {
    font-size: 14px;
  }

  /*----- 12.-Section Footer -----*/

  .footer-img_download{
    height: 2.6rem;
  }

  .block-redes-footer ul li img{
    width: 45px;
  }

  /*----- 13.-Section Subfooter -----*/

  .text-subfooter{
    font-size: 16px;
  }

  /*--------------------------------------- CONDUCTOR ------------------------------- */

  /*-----3.- Section Requisit Conductor------*/

  .Secc-requisit {
    padding: 8rem 0 2rem 0;
}

  .type_driver{
    position: absolute;
    margin-top: -38px;
  }

  .type_conductor{
    margin-top: 140px;
  }

.text_requisit_driver{
    font-size: 13px;
    color: var(--color-primary);
    /* padding-left: 45px;
    margin-bottom: 20px; */
  }

  .text_restringe_driver {
    font-size: 14px;
    color: var(--color-primary);
    /* padding-left: 30px; */
  }

/*-----5.- Section Premios Conductor------*/

  .title_premio{
      font-size: 25px;
    }

    .text_premio{
      font-size: 14px;
    }

/*-----6.- Section Servicio Conductor------*/

    .btn_services2 {
        padding: 8px 190px;
    }

/*-----9.- Section cuidado Conductor------*/
  .title_bonus {
    font-size: 20px;
  }
  .text_bonus{
    font-size: 12px;
  }

  /*--------------------------------------- FAMILIAR ------------------------------- */

  /*-----3.- Section Requisit Familiar------*/
  .Secc-requisit_familiar {
    padding: 8rem 0 5rem 0;
  }

  .type_family{
    position: absolute;
    margin-top: 147px;
  }


  /*-----6.- Section Servicio Familiar------*/



  /*--------------------------------------- PERSONAL ------------------------------- */
  /*-----3.- Section Requisit personal------*/

  .type_personal{
    margin-top: 140px;
  }

  /*--------------------------------------- CORPORATIVO ------------------------------- */

  /*-----3.- Section Requisit corporativo------*/

  .type_corporativo{
    margin-top: 140px;
  }

/*--------------------------------------- NOSOTROS ------------------------------- */
  /*---- 0.- Secc Banner -------*/
  .bg_masthead {
    padding: 4.5rem 0;
  }

  /*----- 2.-Secc Nosotros -----*/

  .title_somos {
    font-size: 23px;
  }

  .parrafo_somos {
    font-size: 14px;
  }

  .frase_somos {
    font-size: 14px;
  }


}

/*-------- Medium devices (tablets, 768px and up) --------*/
@media (min-width: 768px) and (max-width: 991.98px) {

  .overlay {
    height: 100vh;
    background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%);
  }

  video{
    display: none;
  }

  /*-----1.- Section Banner------*/

  .banner-intro {
    font-size: 35px;
    text-align: center;
  }

  .banner-title {
    font-size: 60px;
    text-align:center;
  }

  .banner-text {
    font-size: 25px;
    text-align: center;
  }

  .block-download{
    text-align: center;
  }

  .block-btn{
    text-align: center;
  }

  /*-----2.- Section Benefits------*/

  .first_title {
    font-size: 30px;
    text-align: center;
  }

  .character_title {
    font-size: 47px;
    text-align: center;
  }

  /*-----3.- Section User------*/

  .section-driver, .section-family, .section-personal, .section-business{
    /* padding-top: 50px;  */
    padding: 8rem 0;
  }

  /*-----4.- Section Download------*/

  .block-download-static{
    display: none;
  }

  .block-download-carousel{
    display: block;
  }

  /*-----5.- Section Count------*/

  .count-title {
    font-size: 50px;
  }

  /*-----6.- Section Transport------*/


  .text-sit{
    font-size: 20px;
  }

  .title-sit{
    font-size: 45px;
  }

  /*-----7.- Section Equipment------*/

  .first_title_white{
    font-size: 30px;
  }

  .character_title_white{
    font-size: 47px;
  }

  .hide, .hide_valores, .hide_driver .hide_family, .hide_personal, .hide_corporativo {
    top:140px;
  }

  /*-----11.- Section Contact------*/

  .block-contact-map iframe{
    padding: 0;
  }
  .block-btn-contact{
    text-align: center;
  }

  /*-----12.- Section Footer------*/

  .title-download {
    font-size: 14px;
  }

  .footer-img_download {
    height: 36px;
  }

  .block-redes-footer ul li img {
    width: 35px;
  }

  /*--------------------------------------- CONDUCTOR ------------------------------- */

  /*-----3.- Section Requisit Conductor------*/
  .type_driver{
    position: relative;
    /* margin-top: -38px; */
    width: 400px;
  }
  .type_driver_mobile{
    width: 90px;
  }
  .text_requisit_driver {
    font-size: 17px;
  }

  /*------8.- Section Funtion Conductor------*/
  .mobile_pasos {
    margin-top: -30px;
  }

  /*------9.- Section cuidado Conductor------*/

  .text_bonus {
    font-size: 12px;
  }
  /*--------------------------------------- FAMILIAR ------------------------------- */

  /*-----3.- Section Requisit Conductor------*/
  .type_family{
    position: relative;
    /* margin-top: -38px; */
  }

  .block_coments_requisit_familiar .text_requisit_familiar {
    margin-bottom: 0;
    /* padding-left: 42px; */
    display: block;
  }

  .size_icon_requisit {
      width: 35px;
  }

  .m-10 {
    margin-top: 43px;
  }

/*--------------------------------------- NOSOTROS ------------------------------- */
/*-----2.-Secc Nosotros------*/
  .title_somos {
    font-size: 23px;
    text-align: center;
  }

  .parrafo_somos {
    font-size: 14px;
    text-align: center;
  }

  .frase_somos {
    font-size: 14px;
    text-align: center;
  }
}

/*-------- Small devices (landscape phones, 576px and up) --------*/

@media (min-width: 576px) and (max-width: 767.98px) {

  /*-----1.- Section Banner------*/

  .masthead,.masthead_driver,.masthead_corporativo, .masthead_personal, .masthead_familiar {
    height: 650px;
  }

  .overlay {
    height: 650px;
    background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%);
  }

  video{
    display: none;
  }



  .banner-intro {
    font-size: 30px;
    text-align: center;
  }

  .banner-title {
    font-size: 50px;
    text-align:center;
  }

  .banner-text {
    font-size: 20px;
    text-align: center;
  }

  .block-download{
    text-align: center;
  }

  .block-btn{
    text-align: center;
  }

  /*-----2.- Section Benefits------*/

  .first_title {
    font-size: 25px;
    text-align: center;
  }

  .character_title {
    font-size: 40px;
    text-align: center;
  }

  /*-----3.- Section User------*/


  .section-driver, .section-family, .section-personal, .section-business{
    /* padding-top: 50px;  */
    padding: 8rem 0;
  }

  /*-----4.- Section Download------*/

  .block-download-static{
    display: none;
  }
  .block-download-carousel{
    display: block;
  }

  /*-----5.- Section Count------*/

  .count_line {
    border-right: transparent;
  }

  /*-----7.- Section Equipment------*/

  .first_title_white {
    font-size: 25px;
    text-align: center;
  }

  .character_title_white{
    font-size: 40px;
    text-align: center;
  }

  .hide, .hide_valores, .hide_driver .hide_family, .hide_personal, .hide_corporativo {
    top:130px;
  }




  /*-----10.- Section News------*/

  .block-title-news {
    font-size: 20px;
  }
  .block-days-news {
    font-size: 12px;
  }
  .block-text-news {
    font-size: 13px;
  }

  /*-----11.- Section Contact------*/

  .block-contact-map iframe{
    padding: 0;
  }

  .block-btn-contact{
    text-align: center;
  }

  /*-----12.- Section Footer------*/

  .logo-footer{
    text-align: center;
  }

  .block-title-footer{
    font-size: 18px;
    text-align: center;
  }

  .block-footer ul li{
    font-size: 13px;
    text-align: center;
  }

  .footer_block_download{
    text-align: center;
  }

  .footer-img_download {
    height: 2.6rem;
  }

  .block-redes-footer ul{
    text-align: center;
  }

  .block-redes-footer ul li img {
    width: 45px;
  }

  .title_foorter_datos{
    text-align: center;
  }

  /*--------------------------------------- CONDUCTOR ------------------------------- */
  /*-----3.-Section Requisit Conductor------*/
  .text_restringe_driver {
      text-align: center;
  }

  /*-----6.- Section Services Conductor------*/

  .btn_services2 {
    padding: 8px 180px;
  }

  /*------8.- Section Funtion Conductor------*/
  .box_funtcion-driver {
    padding:0;
    /* text-align: center; */
  }

  .mobile_pasos {
    position: relative;
    margin-top: -30px;
  }

  /*------9.- Section cuidado Conductor------*/

  .text_bonus {
    font-size: 14px;
  }
  /*--------------------------------------- FAMILIAR ------------------------------- */

  /*-----3.- Section Requisit Conductor------*/

  .block_coments_requisit_familiar .text_requisit_familiar {
    margin-bottom: 0;
    /* padding-left: 42px; */
  }

  .size_icon_requisit {
      width: 33px;
  }
  .m-10 {
    margin-top: 33px;
}

  .name_requisit_familiar {
    font-size: 18px;
  }

  .text_requisit_familiar {
    font-size: 12px;
    display: block;
}



/*--------------------------------------- NOSOTROS ------------------------------- */
  /*---- 0.- Secc Banner -------*/
  .bg_masthead {
    padding: 4.5rem 0;
  }

  /*----- 2.-Secc Nosotros -----*/

  .title_somos {
    font-size: 23px;
    text-align: center;
  }

  .parrafo_somos {
    font-size: 14px;
    text-align: center;
  }

  .frase_somos {
    font-size: 14px;
    text-align: center;
  }

  /*----- 7.- Section trabajo  -----*/

      .frase_work {
      font-size: 30px;
    }


/*--------------------------------------- EQUIPO ------------------------------- */

    .masthead_equipo {
      height: 416px;
  }

  /*--------------------------------------- NEWS------------------------------- */

      .block_share{
        display: block;

      }
      .share_links{
        text-align: left;
      }
      .block_share ul{
        text-align: left;

      }



}

/*-------- Extra small devices (portrait phones, less than 576px) --------*/

@media (max-width: 575.98px) {

  /*-----0.- Section Banner------*/

  /* .masthead{
    height: 600px;
  } */
  .masthead,.masthead_driver,.masthead_corporativo, .masthead_personal, .masthead_familiar {
    height: 600px;
  }

  .overlay {
    height: 600px;
    background: radial-gradient(circle, #0F3269 0%, rgb(13, 9, 78) 80%, rgb(2, 20, 47) 100%);
  }

  video{
    display: none;
  }


  /* Secc Banner */

  .banner-intro{
    font-size: 25px;
    text-align: center;
  }

  .banner-title{
    font-size: 29px;
    text-align: center;
  }

  .banner-text {
    font-size: 15px;
    text-align: center;
  }

  .size-download {
    height: 2.5rem;
  }

  .block-download {
    text-align: center;
  }

  .banner_restringe {
    font-size: 13px;
    text-align: center;
  }

  .block-btn {
    text-align: center;
  }

  .block-btn .btn-primaryapp{
    font-size: 18px;
  }

  /*-----1.- Section Submenu------*/

  .submenu_link{
    font-size: 19px;
  }

  /*-----2.- Section Benefits------*/

  .first_title {
    font-size: 20px;
    text-align: center;
  }

  .character_title {
    font-size: 30px;
    text-align: center;
  }

  .title-benefit {
    font-size: 20px;
  }

  /*-----3.- Section User------*/

  .section-driver, .section-family, .section-personal, .section-business{
    /* padding-top: 50px;  */
    padding: 6rem 0;
  }

  .btn-driverapp, .btn-familiarapp, .btn-personalapp, .btn-familiarapp{
    font-size: 18px;
  }

  /*-----4.- Section Download------*/

  .block-download-static{
    display: block;
  }

  .block-download-carousel{
    display: none;
  }

  /*-----5.- Section Count------*/

  .count_line {
    border-right: transparent;
  }

  /*-----7.- Section Equipment------*/

  .first_title_white {
    font-size: 20px;
    text-align: center;
  }

  .character_title_white {
    font-size: 30px;
    text-align: center;
  }

  .hide, .hide_valores, .hide_driver .hide_family, .hide_personal, .hide_corporativo {
    top:150px;
  }


  /*-----8.- Section Testimony------*/

  .block_text-testimonio{
    text-align: center;
  }

  /*-----11.- Section Contact------*/

  .block-contact-map iframe{
    padding: 0;
  }

  .block-btn-contact{
    text-align: center;
  }

  /*-----11.- Section News------*/

  .block-title-news {
    font-size: 20px;
  }

  .block-days-news {
    font-size: 14px;
  }
  .block-text-news {
    font-size: 12px;
  }

  /*-----12.- Section Footer------*/

  .logo-footer{
    text-align: center;
  }

  .block-title-footer{
    font-size: 18px;
    text-align: center;
  }

  .block-footer ul li{
    font-size: 13px;
    text-align: center;
  }

  .footer_block_download{
    text-align: center;
  }

  .title-download{
    text-align: center;
  }

  .block-redes-footer ul{
    text-align: center;
  }

  .footer-img_download {
    height: 2rem;
  }

  .title_foorter_datos{
    text-align: center;
    margin-bottom: 5px;
    /* font-size: 18px; */
  }

  .footer_datos{
    font-size: 13px;
  }
  .img_footer_datos{
    width: 25px;
    display: none;
  }

/*--------------------------------------- CONDUCTOR ------------------------------- */

  /*-----1.- Section Banner Conductor------*/

  .masthead_driver {
    height: 600px;
  }

  /*------3.- Section Requisit Conductor------*/

  .text_requisit_driver {
    font-size: 11px;
    color: var(--color-primary);
  }

  .text_restringe_driver {
    font-size: 12px;
  }

  /*------6.- Section Services Conductor------*/

  .subtitle_services_driver {
    font-size: 30px;
    text-align: center;
  }

  .text_item_services {
    text-align: center;
    font-size: 12px;
  }

  .btn_services2 {
    padding: 8px 90px;
  }

  /*------8.- Section Funtion Conductor------*/

  .box_funtcion-driver {
    padding:0;
    text-align: center;
  }

  .subtitle_function_driver {
    font-size: 30px;
  }

  .mobile_pasos {
    position: relative;
    margin-top: -30px;
  }

  /*--------------------------------------- FAMILIAR ------------------------------- */



  /*-----3.- Section Requisit Familiar------*/

  .name_requisit_familiar {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
  }

  .block_coments_requisit_familiar .text_requisit_familiar {
    margin-bottom: 0;
    padding-left: 0px;
    display: block;
  }

  .text_requisit_familiar {
    font-size: 10px;
    color: var(--color-primary);
    display: none;
  }

  .size_icon_requisit {
      width: 30px;
      display: none;
  }


  .m-10 {
    margin-top: 42px;
}

  /*-----5.- Section Premios Familiar------*/

  .text_premio {
    font-size: 12px;
  }

  /*-----9.- Section Cuidados Familiar------*/
  .text_bonus {
    font-size: 12px;
  }

  /*--------------------------------------- NOSOTROS ------------------------------- */

  /*-----  0.- Secc Banner -----*/
    .masthead_somos {
        height: 340px;
    }

  /*----- 0.2.- Banner content -----*/

    .bg_masthead {
      padding: 4.5rem 0;
    }

  /*----- 2.-Secc Nosotros -----*/

      .title_somos {
        font-size: 23px;
        text-align: center;
      }

      .parrafo_somos {
        font-size: 14px;
        text-align: center;
      }

      .frase_somos {
        font-size: 14px;
        text-align: center;
      }
  /*----- 7.- Section trabajo  -----*/

      .frase_work {
      font-size: 22px;
    }

    .btn_work {
    font-size: 16px;
    }

/*--------------------------------------- EQUIPO ------------------------------- */

    /*-----0.- Section Banner------*/

    .masthead_equipo{
      height: 340px;
    }

    .icon_search{
      width: 80%;
    }
/*--------------------------------------- REGISTRO------------------------------- */
    .text-info {
        font-size: 14px;
    }

/*--------------------------------------- NEWS------------------------------- */

    .block_share{
      display: block;

    }
    .share_links{
      text-align: center;
    }
    .block_share ul{
      text-align: center;

    }

}
