
// Styling
/*Carrousel imagenes*/

.wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider {
  width: 100%;
  height: 100px;
  position: relative;
  background: white;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.2);
  display: flex;
  overflow: hidden;
}
.slide {
  height: 100px;
  display: flex;
  align-items: center;
  animation: slideshow 20s linear infinite;
}
.slide img {
  height: 70px;
  padding: 0 30px 0 30px;
}
@keyframes slideshow {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}
.slider::before, .slider::after {
  height: 100px;
  width: 200px;
  position: absolute;
  content: "";
  background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
}
.slider::before {
  left: 0;
  top: 0;
}
.slider::after {
  right:0;
  top:0;
  transform: rotateZ(180deg);
}

/*brochures*/
section 
{
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
min-height: 100vh;
}
section .boxb{
   position: relative;
   width: 400px;
   height: 300px;
   background: white;
   margin: 10px;
   overflow: hidden;
}
section .boxb .imgBox{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:#f7f7f7;
}

section .boxb .imgBox.active{

position: fixed;
top: 0;
left: 0;
width: 80%;
height: 80%;
z-index: 1000;
   }
section .boxb .imgBox img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
}
section .boxb .imgBox.active img{
position: absolute;
top: 50px;
left: 60px;
right: 60px;
border: 50px;
width: calc(100% - 100px);
height: calc(100% - 100px);

}
.section-brochure
{
   text-align: center;
   margin-bottom: 10px;
   margin-top: 30px;
   margin-bottom: 60px;
   background-color: #f7f7f7;
}
.section-brochure h2{
  padding: 30px;
}


/*Catalogos*/


.single-services .ul_catologo{
position: relative;
width: 100%;
margin: 100px auto 0;
padding: 10px;
box-sizing: border-box;

}
.single-services .ul_catologo .li_catalogo{
height: 80px;
padding: 10px 10px;
color: #082c44;
margin: 5px;
transition: .5s;
width: 90%;
font-weight: 700 !important;

}
.single-services .ul_catologo .li_catalogo a{
  width:auto !important;
  background: white !important;
  background: rgba(255,255, 255, .1) !important;
  font-size: 14px !important;
  padding-left: 80px;
  padding-right: 20px;
  font-weight: 400 !important;
  display: flex;
  float: right;
  color: #082c44 !important ;

}
.single-services .ul_catologo .li_catalogo i{
padding-left: 10px;
  }

.single-services .ul_catologo .li_catalogo:nth-child(1){

background: rgba(255,255, 255, .6);
}
.single-services .ul_catologo .li_catalogo:nth-child(2){

background: rgba(255,255, 255, .4);

}
.single-services .ul_catologo .li_catalogo:nth-child(3){

background: rgba(255,255, 255, .2);
}

.single-services .ul_catologo .li_catalogo span:nth-child(1){
width: 30px !important;
}
.single-services .ul_catologo .li_catalogo span:nth-child(2){
width: 200px !important;
}
.single-services .ul_catologo .li_catalogo span:nth-child(3){
width: 100px !important;
text-align: right;
}
.single-services .ul_catologo .li_catalogo span:nth-child(4){
width: 70px !important;
text-align: right;
margin-right: 10px;
}
.single-services .ul_catologo .li_catalogo:hover{
  transition: scale(1.06);
  background-color: rgba(211,211,211,.4);
  color: black !important;
  font-weight: 700 !important;
}

/*representacion*/
.container_represen{
  position: relative;
  max-height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
  grid-template-rows: minmax(80px, auto);
  margin: 30px;
  grid-auto-flow: dense;
  grid-gap: 10px;
}

.container_represen .box_represen{

padding: 20px;
display: grid;
place-items: center;
color: #fff;
transition: 0.5s;
background: rgba( 8, 44, 68, 0.7 );
backdrop-filter: blur( 8.5px );
-webkit-backdrop-filter: blur( 8.5px );
border-radius: 10px;
}
.container_represen .box_represen:hover{

filter: none;
    transform: scale(1.1);
    -webkit-filter: none;
    -moz-filter: none;
    background: rgba( 210, 240, 255, 0.7 );

}
.container_represen .box_represen img:hover{
filter: none;
}
.container_represen .box_represen img{
  position: relative;
  max-width: 90%;
  margin-bottom: 10px;
  padding: 15px 0;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(100);
    -moz-filter: grayscale(100);
    filter: grayscale(90);
}

.container_represen .box_represen:nth-child(1){
  grid-column: span 2;
  grid-row: span 1;
}
.container_represen .box_represen:nth-child(2){
  grid-column: span 1;
  grid-row: span 2;
}

.container_represen .box_represen:nth-child(3){
  grid-column: span 1;
  grid-row: span 2;
}
@media (max-width: 991px){

.container_represen{
  
  grid-template-columns: repeat(auto-fill,minmax(50%, 1fr));
  grid-template-rows: minmax(auto, auto);
  
}

.container_represen .box_represen{
  grid-column: unset !important;
  grid-row: unset !important; 
}
}
/*Alianzas*/
.container_alianzas{
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.our_alianzas{
  position: relative ;
  width:100%;
  height: auto;
  float: left;
  text-align: center;
  float: left;

 
}
.our_alianzas .ul_alianzas{
padding: 0 !important;
margin: 0 !important;

}
.our_alianzas .ul_alianzas .il_alianzas{
list-style: none;
float:right;

position: relative;
overflow: hidden;
z-index: 1;
transition: .5s;
 margin: 20px;
  }
.our_alianzas .ul_alianzas .il_alianzas:before{
position: absolute;
content: '';
width: 50%;
height: 0;

background: rgba( 8, 44, 68, 0.4 );
backdrop-filter: blur( 8px );
-webkit-backdrop-filter: blur( 8px );

left: 0;
top: auto;
bottom: 0;
z-index: -1;
transition: .5s;
}

.our_alianzas .ul_alianzas .il_alianzas:after{
position: absolute;
content: '';
width: 50%;
height: 0;
background: rgba( 8, 44, 68, 0.3 );
backdrop-filter: blur( 8px );
-webkit-backdrop-filter: blur( 8px );

right: 0;
top: 0;
bottom: auto;
z-index: -1;
transition: .5s;
}
.our_alianzas .ul_alianzas .il_alianzas img{
  width: 266px;
  height: 85px;
  cursor: pointer;
  margin: 10px;

}
.our_alianzas .ul_alianzas .il_alianzas:hover:before{
height: 100%;
top: 0;
bottom: auto;
transition: .5s;
}
.our_alianzas .ul_alianzas .il_alianzas:hover:after{
height: 100%;
top: auto;
bottom: 0;
transition: .5s;

}
.logo-list {
   
    text-align: center;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    margin-top: 0 !important;

}
.logo-list img {
    display: inline-block;
    max-width: 85%;
    padding: 15px 0;
    transition: all 0.3s ease-in-out;
    -webkit-filter: grayscale(100);
    -moz-filter: grayscale(100);
    filter: grayscale(100);
  }
  .logo-list img:hover {
    filter: none;
    transform: scale(1.2);
    -webkit-filter: none;
    -moz-filter: none;
}
.box{
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.box span{
  display: block;
  width: 35px;
  height: 35px;
  margin: -10px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
  animation: animate 2s infinite;

}
.box span:nth-child(2){
  animation-delay: -0.2s;


}
.box span:nth-child(3){
  animation-delay: -0.4s;
}
@keyframes animate{
  0%{
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50%{
    opacity: 1;

  }
  100%{
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
@media (max-width: 342px) {
  .box span{
  display: block;
  width: 15px;
  height: 15px;
  margin-top:60%;
  }
}
@media (max-width: 460px) {
  .box span{
  display: block;
  width: 15px;
  height: 15px;
  
  }
}
