/* variables */

:root {
  --text-xs:   0.80rem;
  --text-sm:   0.975rem;
  --text-base: 1.1rem;
  --text-lg:   1.145rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4rem;
  --bg-main-rco: #ee7502;
  --bg-dark: #0f0f0f;
  --bg-grey: #edeef0;
  --bg-filter: #eeeeee;
  --bg-light: #ffffff;
  --font-light: rgb(197, 197, 197);
  --font-color-base: #333333;
  --font-color-light: #ffffff;
  --font-color-rco: #ee7502;
  --font-color-grey: #6a6a6a;
  --font-family: 'Raleway', sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  --font-weight-xbold: 700;
  --font-weight-xxbold: 800;

}


/* barra scroll custom */


::-webkit-scrollbar{
    width: 6px;
    background-color: #ffffff;
}
::-webkit-scrollbar-track{
    background-color: #c3c3c3;
}
::-webkit-scrollbar-thumb{

    background-color: #ee7502;
    
}



/* LOADER*/

#loader-blq span{
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 20px;
  height: 20px;
  background-color: #505050;
}

#loader-blq span:nth-child(2){
  animation: moveanimation1 1s ease-in-out infinite;
  
}

#loader-blq span:nth-child(3){
  animation: moveanimation2 1s ease-in-out infinite;
}

#loader-blq span:nth-child(4){
  animation: moveanimation3 1s ease-in-out infinite;
  background-color: var(--bg-main-rco);
}

@keyframes moveanimation1{
  0%, 100%{
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  75%{
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes moveanimation2{
  0%, 100%{
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  75%{
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes moveanimation3{
  0%, 100%{
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  75%{
    -webkit-transform: translate(30px, 30px);
    -ms-transform: translate(30px, 30px);
    -o-transform: translate(30px, 30px);
    transform: translate(30px, 30px);
  }
}



/* scroll down icon */



.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;

}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border: 2px solid #333333;
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 2;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1);
  z-index: 999;
}

.scroll-down:before {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
    transform: rotate(-45deg);
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border: 2px solid black;
    border-width: 0px 0 2px 2px;
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}


/* generales */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  font-family: var(--font-family);
  color: var(--font-base);
  line-height: 1;
  font-size: 16px;
  scroll-behavior: smooth;
  

}



body {
  font-family: var(--font-family);
  overflow-x: hidden;
  background-color: white;
  color: var(--font-color-base);
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: var(--text-base);
}


section {

  position: relative;
  padding: 100px 0;


}

.section-fluid {

  position: relative;
  padding: 0px 0;


}


.bg-dark {

background-color: var(--bg-dark)!important;

}

.bg-light {

background-color: var(--bg-light)!important;

}

.bg-rco {

background-color: var(--bg-main-rco)!important;

}

.bg-grey {

background-color: var(--bg-grey)!important;

}


.dark {

color: var(--font-color-base)!important;

}

.light {

color: var(--font-color-light)!important;

}

.rco {

color: var(--font-color-rco)!important;

}


.grey {

color: var(--font-color-grey)!important;

}


.border-dark {

border-color: var(--bg-dark)!important;
}

a{

text-decoration: none;
color: var(--font-color-base);

}


a:hover {

text-decoration: none;
color: var(--font-color-rco);

}


p{

 font-size: var(--text-base);

}


h1 {

font-size: var(--text-3xl);
 color: var(--font-color-base);

}


h2 {

font-size: var(--text-2xl);
 color: var(--font-color-base);

}


h3 {

font-size: var(--text-xl);
 color: var(--font-color-base);

}

h4, h5 {

font-size: var(--text-lg);
 color: var(--font-color-base);

}

q {

font-size: var(--text-3xl);
font-weight: var(--font-weight-xbold);
color: var(--font-color-rco);
margin-right: 10px;
display: block;
line-height: 1.3em;



}

.head-tit h1 {

font-size: var(--text-7xl);
color: var(--font-base);
font-weight: var(--font-weight-xxbold);


}


.tit-stroke {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

}


.tit-stroke .vlt-stroke-num {
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    -webkit-text-stroke-color: var(--font-color-light);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    font-size: 10em;
    margin-left: -85px;
    opacity: 0.6;

}

.tit-stroke .vlt-stroke-text {
    font-weight: 700;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: var(--font-color-rco);
    font-size: var(--text-4xl);
    z-index: 1;

}

.divider {

    height: 1px;
    background: var(--bg-dark);
    margin: 35px auto;

}


.reset-section-pad {
 
padding: 50px 0px;

}

.reset-section-pad2 {
 
padding: 50px 0px;

}


.reset-section-mar-neg {
 
margin-top: -93px;
padding-top: 170px;

}


.mb-6 {
    margin-bottom: 4rem!important;
}



.img-full-fill {

    width: 100% !important;
    height: 100%;
    object-fit: fill;
    object-position: center;

}

.img-full-cover {
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    height: 100%;
}


.int-showcase__footer {
    position: absolute;
    height: 100px;
    width: 30%;
    z-index: 2;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}


.prev-next {

    margin-top: 50px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;

}

.prev-next-blq {

    position: relative;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}

.prev-next-blq a{

position: relative;
padding: 20px;
font-weight: var(--font-weight-xbold);
color: var(--font-color-base);
transition: all 0.2s;
font-size: var(--text-xl)
  
}


.prev-next-blq a:hover{


color: var(--font-color-rco);
  
}


.prev-next-blq a:nth-of-type(2n)::before{

   position: absolute;
    z-index: 1;
    top: 8px;
    left: 0px;
    width: 1px;
    height: 50px;
    content: '';
    background-color: var(--bg-dark);
    

}

.prev-next-blq a.inactiv{


color: var(--font-color-grey);
opacity: 0.5;  
}

.prev-next-blq a.inactiv:hover{


color: var(--font-color-grey);
opacity: 0.5;  

}


/* Rotación modo horizontal dispositivos móviles */
.rotate-img {
  position: fixed;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-color: var(--bg-main-rco);
  color: var(--font-color-light);
}
.rotate-img div {
  width: 100px;
  height: 100px;
  
}


@media (max-height: 414px) {
  body {overflow: hidden !important;}
  .rotate-img {display: flex;flex-direction: column;}
}

/*Iframe vimeo*/

.video-blq {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;

}

.video-blq iframe {
    width: 100%;
    height: 29.25vw;
    position: relative;
    top: 0%;
    left: 0%;
}


.video-blq .iframe-vid-sp {

    width: 100%;
    height: 34.25vw;
    position: relative;
    top: 0%;
    left: 0%;


}



/* Fin generales */



/* header */

.header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  height: 75px;
  z-index: 9999;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: transparent;
  font-size: var(--text-sm);
}

.header li a {
  display: block;
  padding: 25px 25px;
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  background-image: linear-gradient(to right, #ffffff,#ffffff 50%,#ffffff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease-in-out;
}
  

.header li a:hover {
 background-position: 0;
}


.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  padding: 20px;
  text-decoration: none;
}

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.sticky {
  background-color: white;
  position: sticky;
  top: 0;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}

.sticky .logo img{
  content:url("../img/logo2.svg");
  width: 150px;

}

.sticky li a {
  
  background-image: linear-gradient(to right, #BB5C02,#BB5C02 50%,#000000 50%);
   
}

.sticky li .active {

font-weight: var(--font-weight-xbold)!important;
 background-image: linear-gradient(to right, #BB5C02,#BB5C02 50%,#BB5C02 50%);


}



/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 37px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}


.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  
  max-height: 100vh;
  background-color: white;
  overflow: visible;
  padding: 15px;
  
}

.header .menu-btn:checked ~ .menu li a{
  
  background-image: linear-gradient(to right, #BB5C02,#BB5C02 50%,#000000 50%);
  color: var(--font-color-base);
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}


/* media header */

@media (min-width: 1200px) {
  .header li {
    float: left;
  }

  .header li a {
    padding: 25px 25px;
  }

  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  .header .menu-icon {
    display: none;
  }


}

/*FOOTER*/

.footer{

  padding: 60px 15px 60px 15px;


}


.footer a{ 

color: var(--font-color-light)!important;
text-decoration: none;
transition: all 0.3s;
display: block!important;

}


.footer a:hover{ 

color: var(--font-color-grey);
text-decoration: none;


}

.footer-bottom{ 

 border-top: 1px solid rgba(255, 255, 255, 0.1);
 color: var(--font-color-light);


}





/*HOME*/
/*hero video*/


.hero {

    
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;


}


.overlay {

    
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 2;
    background: rgba(0,0,0,0.5);



}

.vimeo-wrapper {
   
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   pointer-events: none;
   overflow: hidden;
   position: absolute;
}



.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   
}


.content-hero {
  
  z-index: 99;
  display: flex;
  color: var(--font-color-light);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}



.content-hero h1{
  
  font-weight:var(--font-weight-bold);
  font-size: var(--text-6xl);
  color: var(--font-color-light);

}


.content-hero p{
  
 
  color: var(--font-color-light);

}

.hero::before {
    left: 20%;
}

.hero::after {
    left: 60%;
}

.hero::after, .hero::before {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 20%;
    content: '';
    border-right: 1px solid rgba(255,255,255,.25);
    border-left: 1px solid rgba(255,255,255,.25);
}


.hero-showcase__footer {
    position: absolute;
    height: 100px;
    width: 60%;
    z-index: 2;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--bg-light);
}


/*HOME*/
/*quienes somos*/


.quienes {

display: flex;


}

.quienes-blq {

display: flex;

  
}

.quienes-blq-inner {

display: flex;
flex-direction: column;

  
}

.quienes-blq-inner2 {

display: flex;
flex-direction: column;
justify-content: flex-end;

  
}

.quienes-blq-inner-int {

display: flex;


  
}

.quienes-blq-inner h1, .quienes-blq-inner2 h1{

font-weight: var(--font-weight-xbold);
  
}





/*HOME*/
/*datos*/


.datos-blq {

  display: flex;
  flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;


}

.datos-blq-inner {

  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;

}


.datos-blq-inner h2{

font-size: var(--text-6xl);
color: var(--font-color-rco);
font-weight: var(--font-weight-xbold);

}


.datos-blq-inner span{

font-size: var(--text-base);
color: var(--font-color-light);
font-weight: var(--font-weight-xbold);

}


/*HOME*/
/*equipo*/


.equipo-blq {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;

}


.equipo-blq-inner {

   display: flex;
   align-items: flex-end;
  
}

.equipo-blq-inner h2{

font-weight: var(--font-weight-bold);
  
}



/*home*/
/*marquesina*/

 


#marquee {
    
    
    overflow: hidden;
    white-space: nowrap;
}


#marquee .marquee-blq .orig {
    display: inline-block;
    transform: translatex(0);
    animation: marquesina 40s infinite normal linear 1s;
    line-height: 47px;
    color: var(--font-color-base);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-xbold);
}

@keyframes marquesina {
  0% {transform: translatex(0); }
  100% {transform: translatex(-50%); }
}


/*HOME*/
/*retalk*/


.retalk-home {

display: flex;


}

.retalk-home-blq {

display: flex;
align-items: flex-end;


  
}

.retalk-home-blq-inner {

display: flex;
flex-direction: column;

  
}

.retalk-home-blq-img {

display: flex;
flex-direction: row;
justify-content: flex-start;

  
}

.retalk-home-blq-inner-int {

display: flex;


  
}

.retalk-home-blq-inner h1, .retalk-home-blq-inner2 h1{

font-weight: var(--font-weight-xbold);
  
}


/*HOME*/
/*casos-esg*/


.casos-esg {

display: flex;


}

.casos-esg-blq {

display: flex;

  
}

.casos-esg-blq-inner {

display: flex;
flex-direction: column;


  
}

.casos-esg-blq-inner2 {

display: flex;
flex-direction: column;
justify-content: flex-end;

  
}

.casos-esg-blq-inner-int {

display: flex;


  
}

.casos-esg-blq-inner h1, .casos-esg-blq-inner2 h1{

font-weight: var(--font-weight-xbold);
  
}



/*QUIENES SOMOS*/




.quienes-somos-blq3-inner {

   display: flex;
   padding: 0;

}


.quienes-somos-blq3-inner2 {

    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;

}

#quienes-somos-blq3 .quienes-somos-blq3-inner2 .tit-stroke {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1;

}

#quienes-somos-blq5 {
    min-height: 700px;
    background-image: url(../img/nuestra-vision.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}



.quienes-somos-blq6 {

   display: flex;
   padding: 0;
  

}


.quienes-somos-blq6 h1{

   font-size: var(--text-4xl);
  

}


/*EQUIPO*/


.equipo-blq-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    height: fit-content;
    height: auto;

  
}

.equipo-blq-inner:hover picture img{

  -webkit-filter: blur(10px);
  filter: blur(10px);
  z-index: 1;
  
}

.equipo-blq-inner picture img {
    position: relative;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.2s;
}

.equipo-blq-inner .caption-img{

display: none;
transition: all 0.2s;
z-index: 9;


}

.equipo-blq-inner:hover .caption-img{
display: block;

}

.equipo-blq-inner .caption-img h5{

color: var(--font-color-light);
font-size: var(--text-2xl);
line-height: 1.2;
  
}

.equipo-blq-inner .caption-img p{

color: var(--font-color-light);
font-size: var(--text-lg);
line-height: 1.2;
  
}


.equipo-blq-inner .caption-img .equipo-blq-social {

    margin-top: 30px;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.equipo-blq-inner .caption-img .equipo-blq-social .rrss-equipo {

  width: 30px;
  margin-right: 15px;

}




/*SALA DE PRENSA*/


.sala-prensa-blq {

  display: flex;
  flex-wrap: wrap;

}


.sala-prensa-blq-inner,.sala-prensa-blq-inner-img,.sala-prensa-blq-inner-caption {

position: relative;

}



.sala-prensa-blq-inner-img{

position: relative;
height: 300px;


}

.sala-prensa-blq-inner {

padding: 10px;
margin-bottom: 15px;

}


.sala-prensa-blq-inner .prensa-showcase__footer {
    position: absolute;
    height: 70px;
    width: 75%;
    z-index: 2;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px 0px 10px 0px;
    justify-content: space-around;
    background-color: var(--bg-grey);
    transition: all 0.2s;
    color: var(--font-color-base);
    
}


.sala-prensa-blq-inner:hover .prensa-showcase__footer{
   
    background-color: var(--bg-main-rco);
    cursor: pointer;
    
}



.sala-prensa-blq-inner .prensa-showcase__footer .text p{
    
  margin-bottom: 0;
    
}

.sala-prensa-blq-inner .prensa-showcase__footer .forma{
    
   position: relative;
   padding: 0px 0px 0px 20px;
    
}


.sala-prensa-blq-inner .prensa-showcase__footer .forma-blq{
    
    margin: 0 auto;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 15px solid var(--bg-dark);
    border-radius: 0px;
    transition: all 0.3s;
    transform: rotate(-90deg);
    position: relative;
    
}

.sala-prensa-blq-inner .prensa-showcase__footer .forma:before{
    
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  background-color: var(--bg-dark);
  top: -5px;
  left:0px;
  
  
    
}


#sala-prensa .scroll-down {
 
  width: 50px;
  height: 50px;
 
}




/*CASOS DE ÉXITO*/


.casos-exito-blq {

  display: flex;
  flex-wrap: wrap;

}


.casos-exito-blq-inner,.casos-exito-blq-inner-img{

position: relative;
height: 300px;



}


.casos-exito-blq-inner-caption {

position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: rgba(238,117,2,0.8);
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
padding: 20px;
transition: all 0.4s;
opacity: 0;



}



.casos-exito-blq-inner:hover .casos-exito-blq-inner-caption, .casos-exito-blq-inner:hover .prensa-showcase__footer{


opacity: 1;
cursor: pointer;




}


.casos-exito-blq-inner-caption h1{


font-size: var(--text-2xl);
color: var(--font-color-light);


}



.casos-exito-blq-inner {

padding: 10px;
margin-bottom: 15px;

}


.casos-exito-blq-inner .prensa-showcase__footer {
    position: absolute;
    height: 70px;
    width: 75%;
    z-index: 2;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    padding: 10px 0px 10px 0px;
    justify-content: space-around;
    background-color: var(--bg-grey);
    transition: all 0.2s;
    color: var(--font-color-base);
    
}

.casos-exito-blq-inner .prensa-showcase__footer .text {
    
width: 65%;
    
}


.casos-exito-blq-inner .prensa-showcase__footer .text p{
    
  margin-bottom: 0;
    
}

.casos-exito-blq-inner .prensa-showcase__footer .forma{
    
   position: relative;
   padding: 0px 0px 0px 20px;
    
}


.casos-exito-blq-inner .prensa-showcase__footer .forma-blq{
    
    margin: 0 auto;
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 15px solid var(--bg-dark);
    border-radius: 0px;
    transition: all 0.3s;
    transform: rotate(-90deg);
    position: relative;
    
}

.casos-exito-blq-inner .prensa-showcase__footer .forma:before{
    
  content: "";
  width: 1px;
  height: 30px;
  position: absolute;
  background-color: var(--bg-dark);
  top: -5px;
  left:0px;
  
  
    
}


/*ESG*/


#esg-blq2 {
    min-height: 500px;
    background-image: url(../img/img-esg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}


.esg-blq2-inner h1{
   
   font-size: var(--text-5xl);
}



.esg-blq5 {

display: flex;
padding: 0;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
  
}


.esg-blq5-inner {

display: flex;
height: 500px;
flex-direction: column;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: flex-start;

  
}

@media (min-width: 1601px) {

.esg-blq5-inner {height: 600px;}

}



.esg-blq5-inner:nth-child(2){


padding: 60px 100px 60px 100px;
  
}



.esg-blq6-inner h1{

font-size: var(--text-5xl);
margin-bottom: 20px;
}


#esg-blq6 h3{

margin-bottom: 20px;
}
  

  


/*CONTACTO*/


 .mapouter{
  position:relative;
  text-align:right;
  height:500px;
  width:100%;

  }


.gmap_canvas {
  overflow:hidden;
  background:none!important;
  height:500px;
  width:100%;
}

.gmap_canvas iframe{

  width: 100%;

}





/*INTERIOR. válido para equipo, casos de éxito y sala de prensa*/


.equipo-int-blq {

  display: flex;
  position: relative;

}

.equipo-int-blq-inner-img {

  display: flex;
  position: inherit;
  padding: 0;

}

.equipo-int-blq-inner-social {

    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
  
}

.equipo-int-blq-inner-social p{

  margin: 0px 15px 0px 0px;
  
}






/* RESPONSIVE */



@media (min-width: 1900px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1500px!important;
  }
}



@media (max-width: 991px) {


section {position: relative;padding: 90px 0;} 
.border-lg-0 {border: none!important;}
.mb-lg-flex-dir-col {flex-direction: column;}
.header {background-color: white;box-shadow: none;height: auto;}
.header li a {padding: 15px 25px;}
.sticky {background-color: white;position:fixed;top: 0;box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);}
.header .menu-btn:checked ~ .menu li a.active {background-image: linear-gradient(to right, #ee7502,#ee7502 50%,#ee7502 50%);color: var(--font-color-rco);}
.reset-section-pad,.reset-section-pad2 {padding: 100px 0px 0 0px;}
.quienes-blq-inner-int {flex-direction: column;}
.datos-blq-inner h2{font-size: var(--text-4xl);}
.datos-blq-inner span{font-size: var(--text-base);}
.esg-blq5-inner:nth-child(2){padding: 40px;}
.video-blq .iframe-vid-sp {height: 51.25vw;}
.head-tit h1 { font-size: var(--text-5xl);}


}


@media (max-width: 767px) {

p{font-size: var(--text-sm);}
h1 {font-size: var(--text-2xl);}
.head-tit h1 {font-size: var(--text-3xl);}
.mb-md-flex-dir-col {flex-direction: column;}
section {position: relative;padding: 60px 0;}
.border-md-0 {border: none!important;}
.datos-blq-inner {margin-bottom: 10px;}
#quienes-somos-blq5 { min-height: 450px;background-position: 50% 0%;}
.int-showcase__footer {height: 70px;width: 35%;}
.sala-prensa-blq-inner .prensa-showcase__footer {width: 80%;}
#esg-blq2 {min-height: 400px;}
.esg-blq2-inner h1, .esg-blq6-inner h1{font-size: var(--text-4xl);}
.esg-blq5-inner:nth-child(2){padding: 30px;}
#quienes-somos-blq5 {min-height: 450px;background-image: url(../img/nuestra-vision.jpg);background-position: center;background-attachment: unset;}
.quienes-somos-blq6 {padding: 0.9rem;}
.quienes-somos-blq6 h1 {font-size: var(--text-2xl);}
#esg-blq2 {min-height: 500px;background-image: url(../img/img-esg2.jpg);background-position: center;background-attachment: unset;}
.equipo-blq-inner .caption-img h5{font-size: var(--text-base);}
.equipo-blq-inner .caption-img p{font-size: var(--text-sm);line-height: 1.2;}
.equipo-blq-inner .caption-img .equipo-blq-social {margin-top: 15px;}


}


@media (max-width: 576px) {


section {position: relative;padding: 40px 0;}
.mb-sm-flex-dir-col {flex-direction: column;}
.retalk-home-blq-img {margin-top: 40px;}
#marquee .marquee-blq .orig {font-size: var(--text-2xl);}
.reset-section-mar-neg {margin-top: -93px;padding-top: 100px;}
.tit-stroke .vlt-stroke-num {font-size: 7em;margin-left: -55px;}
.tit-stroke .vlt-stroke-text {font-size: var(--text-3xl);}
.sala-prensa-blq-inner .prensa-showcase__footer {width: 75%;}
.sala-prensa-blq-inner .prensa-showcase__footer .forma {padding: 0px 0px 0px 13px;}
#esg-blq2 {min-height: 300px;}
.esg-blq2-inner h1, .esg-blq6-inner h1{font-size: var(--text-3xl);}
.esg-blq5-inner {height: 300px;}
.esg-blq5-inner:nth-child(2){height: auto;padding: 30px;}



}




