
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

.material-symbols-sharp {
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 200,
  'opsz' 48
}

/*SCROLLBAR*/
::-webkit-scrollbar {width: 15px; background: #e3d8e3;}
/* Track */
::-webkit-scrollbar-track {box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15); border-radius: 10px; }
/* Handle */
::-webkit-scrollbar-thumb {background: #505456; border-radius: 0px;}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {background: #5b2260;}



/*ESTILOS NAVBAR*/
body{
    background: #5b2260;
    font-family: "Open Sans";
    color: #fff;
} 

/*barra superior*/
.top-nav{
    background: #fff;
    text-align: center;
    padding: 10px;
}

.top-nav a{
    text-decoration: none;
    color: #5b2260;
    font-weight: 600;
    font-size: 1em;
    padding: 5px 10px;
    transition: 0.5s;
}

.top-nav a:hover{
    color: #800080;
    text-shadow: 2px 3px 3px rgba(0,0,0,0.5);
    transition: 0.5s;
}

.top-nav button{
    background: transparent;
    color: #505456;
    border: none;
}

.top-nav button:hover{
    color: #800080;
    text-shadow: 2px 1px 5px rgba(0,0,0,0.15);
    transition: 0.5s;
}




/*ESTILOS BARRA DE NAVEGACIÓN*/
  
.fixed-top {
    top: -40px;
    transform: translateY(40px);
    transition: transform 1s;
}

nav{
    background: #5b2260;
    z-index: 1030;	
}
.navbar{
    background: rgba(89, 33, 94, 0.9);
    padding: 20px;
    filter: drop-shadow(0px 3px 2px rgba(0,0,0,0.25));
}

a.navbar-brand{
    margin: 0px;
    padding: 5px;
}

a.navbar-brand.brand-mob{
    display: none;
}
  
.navbar-brand img{
    height: 100px;
    width: auto;
}
.navbar-collapse{
    float: left;
    justify-content: end;
}
  
.navbar-toggler {
    color:  #fff;
    font-size: 1.5em;
    padding: 10px 15px ;
    background:#505456;
    transition: 0.5s;
}
  
.navbar-toggler:hover{
    background: #fff;
    color: #505456; 
    filter: drop-shadow(3px 3px 4px rgba(0,0,0,0.5));
    transition: all 0.5s;     
}

.navbar-nav{
    text-align: center;
    padding: 0px;
}
li.nav-item{
    text-align: center;
    padding: 0px;
    margin-left: 10px; 
    margin-right: 10px;   
}
  
.nav-item a{
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    transition: all 0.5s;
    text-align: left;
    border: none;
    font-weight: 500;
}

  
.nav-item a:hover{
    transform: scale(0.95);
    border: #fff solid thin;
    color: #fff;
    background: #621a68;
    -webkit-box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.3); 
box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.3);
    transition: all 0.5s;
}

.nav-link{
    padding: 15px 5px;    
    line-height: 1.5;
}
a.nav-link.dropdown-toggle{
    font-size: 1.5em;
    margin-bottom: -15px;
    margin-top: 5px;
}

a.nav-link.dropdown-toggle::after{
    margin: 5px; 
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) { 
  
    .dropdown-menu li{
      position: relative;
    }
    .dropdown-menu .submenu{ 
      display: none;
      position: absolute;
      left:100%; top:-7px;
    }
    .dropdown-menu .submenu-left{ 
      right:100%; left:auto;
    }
  
    .dropdown-menu > li:hover{ background-color: #f1f1f1 }
    .dropdown-menu > li:hover > .submenu{
      display: block;
    }  
} 
/* ============ desktop view .end// ============ */
  
/* ============ small devices ============ */
@media (max-width: 991px) {
  
  .dropdown-menu .dropdown-menu{
      margin-left:0rem; margin-right:0rem; margin-bottom: .5rem;
  
  }
    .nav-link.dropdown-toggle{
    margin-bottom: 0px;
  }  



} 

 /* ============ small devices .end// ============ */

  
@media (max-width:767px){

    .navbar-brand img{
        height: 80px;
        width: auto;
    }   

    .top-nav .phone{
        display: none;
    }
}

/*ESTILOS PORTADA*/

.portada-insaga{
    background: url(../img/bg-textura01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    
}
.portada-content{
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center ;
    padding: 10px;
}

.portada-img{
    display: inline-flex;
    filter: drop-shadow(10px 3px 2px #505456); 
}


.portada-img img{
    height: 90%;
    width: 90%;
    object-fit: cover;
}

.portada-txt{
    margin-top: 150px;
}


.portada-txt h4{
    color: #505456;
    font-weight: 400;
}


.portada-txt h3{
    color: #505456;
    font-weight: 600;
}

.portada-txt h1{
    color: #630b57;
    font-weight: 900;
    font-size: 4em;
}

.portada-txt h2{
    color: #505456;
    font-weight: 600;
    font-size: 3em;
}

.portada-btn{
    margin-top: 50px;
}

.portada-btn button{
    border: none;
    background: #5b2260;
    width: 80px;
    height: 80px;
    padding: 10px;
    filter: drop-shadow(10px 3px 2px #505456); 
    transition:0.5s;
}

.portada-btn button:hover{
    border: solid 3px #5b2260;
    background: #505456; 
    filter: none; 
    transform: scale(0.9);
    transition:0.5s;
}


@media (min-width: 1100px) and (max-width:1199px){

    .portada-txt{
        margin-top: 100px;
    }
}

@media (min-width: 992px) and (max-width:1099px){

    .portada-txt{
        margin-top: 80px;
    }

    .portada-txt h1{
        font-size: 3.5em;
    }

    .portada-txt h2{
        font-size: 2.8em;
    }

    .portada-btn button{
        width: 70px;
        height: 70px;
    }
    

}

@media (min-width: 768px) and (max-width:991px){

    .portada-txt{
        margin-top: 50px;
    }
    .portada-txt h4{
        font-size: 1em;
    }
    .portada-txt h3{
        font-size: 1.2em;
    }

    .portada-txt h1{
        font-size: 2.5em;
    }

    .portada-txt h2{
        font-size: 2em;
    }

    .portada-btn button{
        width: 50px;
        height: 50px;
    }
}

@media (max-width:767px){

    .portada-insaga{
        background: url(../img/bg-textura01-v.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .portada-txt{
        margin-top: 50px;
    }
    .portada-txt h4{
        font-size: 1em;
    }
    .portada-txt h3{
        font-size: 1.2em;
    }

    .portada-txt h1{
        font-size: 2.5em;
    }

    .portada-txt h2{
        font-size: 2em;
    }

    .portada-btn button{
        width: 75px;
        height: 75px;
    }

    .portada-img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/*ESTILOS INTRO*/

.intro-insaga{
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 100px;
    text-align: center;
    box-shadow: inset 0px 4px 6px 3px rgba(0,0,0,0.2);
    background: rgb(91,34,96);
    background: -moz-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
    background: linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
}

.txt-intro{
    text-align: right;
    padding: 50px 100px;
}

.txt-intro h2{
    color: #505456;
    font-weight: 400;
    font-size: 2em;
    line-height: 1.3;
}

.txt-intro h2 strong{
    color: #5b2260;
    font-weight: 700;
}



@media (min-width: 1100px) and (max-width:1199px){

    .intro-insaga{
        padding-top:  50px;
        padding-bottom: 50px;
        background: rgb(91,34,96);
        background: -moz-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
    }

    .txt-intro h2{
        font-size: 1.8em;
    }
}

@media (min-width: 992px) and (max-width:1099px){

    .intro-insaga{
        padding-top: 50px;
        padding-bottom: 50px;
        background: rgb(91,34,96);
        background: -moz-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
    }

    .txt-intro{
        padding: 20px 100px;
    }

    .txt-intro h2{
        font-size: 1.8em;
    }

}

@media (min-width: 768px) and (max-width:991px){
    .intro-insaga{
        padding-top: 20px;
        padding-bottom: 20px;
        background: rgb(91,34,96);
        background: -moz-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        background: linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 15%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
    }

    .txt-intro{
        padding: 20px 100px;
    }

    .txt-intro h2{
        font-size: 1.5em;
    }
}

@media (max-width:767px){

    .intro-insaga{
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 0px;
        background: rgb(91,34,96);
        background: -moz-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
        background: linear-gradient(145deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 10%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
    }
    .txt-intro{
        text-align: right;
        padding: 50px 10px;
    }
    .txt-intro h2{
        font-size: 1.5em;
    }


}

/*ESTILOS MISIÓN VISIÓN*/
.insaga-mivi{
    background: url(../img/bg-foto01.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.vision-txt, .mision-txt{
    padding: 10px;
    border: solid thin #fff;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    box-shadow: 1px 2px 3px 4px #501756;
}
.mision-txt{
    background: rgb(91,34,96);
background: -moz-linear-gradient(45deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 100%);
background: -webkit-linear-gradient(45deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 100%);
background: linear-gradient(45deg, rgba(91,34,96,1) 0%, rgba(91,34,96,1) 20%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b2260",endColorstr="#ffffff",GradientType=1);
}

.vision-txt{
    background: rgb(255,255,255);
background: -moz-linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 80%, rgba(91,34,96,1) 80%, rgba(91,34,96,1) 100%);
background: -webkit-linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 80%, rgba(91,34,96,1) 80%, rgba(91,34,96,1) 100%);
background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 80%, rgba(91,34,96,1) 80%, rgba(91,34,96,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#5b2260",GradientType=1);
}

.mision-txt h2,.vision-txt h2{
    font-weight: 900;
    padding: 20px;
    color: #fff;
    font-size: 2.5em;
    text-shadow:rgb(80, 84, 86) 3px 3px 0px;

}


.mision-txt p,.vision-txt p{
    font-weight: 400;
    padding: 10px 30px;
    padding-bottom: 30px;
    color: #fff;
    font-size: 1.2em;
    line-height: normal;
}


.mision-txt h2, .mision-txt p{
    text-align: left;
}

.vision-txt h2, .vision-txt p{
    text-align: right;
    text-shadow: 2px 2px 5px #000000;
}

.mob-ver{
    display: none;
    visibility: hidden;
}

.mision-img{
padding: 30px;
text-align: center;
}
.mision-img img{
    width: 50%;
    height: 50%;
    object-fit: cover;
}

.vision-img{
    padding: 30px;
    text-align: center;
}
    
.vision-img img{
    width: 80%;
    height: 80%;
    object-fit: cover;
}
.bloque-vision{
    margin-top: 100px;
}


@media (min-width: 1200px) and (max-width:1399px){

    .mision-txt h2,.vision-txt h2{
        font-size: 2.3em;    
    }

    .mision-img img{
        width: 70%;
        height: 70%;
        object-fit: cover;
    }


}

@media (min-width: 1100px) and (max-width:1199px){
    .mision-txt h2,.vision-txt h2{
        font-size: 2.3em;    
    }

    .mision-img img{
        width: 75%;
        height: 75%;
        object-fit: cover;
    }
    .mision-txt p,.vision-txt p{
        font-size: 1.1em;
    }
    
    .vision-img img{
        width: 90%;
        height: 90%;
        object-fit: cover;
    }
}

@media (min-width: 992px) and (max-width:1099px){
    .mision-txt h2,.vision-txt h2{
        font-size: 2.3em;    
    }

    .mision-img img{
        width: 75%;
        height: 75%;
        object-fit: cover;
    }
    .mision-txt p,.vision-txt p{
        font-size: 1.1em;
    }
    
    .vision-img img{
        width: 90%;
        height: 90%;
        object-fit: cover;
    }

    .mision-img, .mision-img{
        padding: 10px;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .mision-txt h2,.vision-txt h2{
        font-size: 2.3em;    
    }

    .mision-img img{
        width: 65%;
        height: 65%;
        object-fit: cover;
    }
    .mision-txt p,.vision-txt p{
        font-size: 1.1em;
    }
    
    .vision-img img{
        width: 90%;
        height: 90%;
        object-fit: cover;
    }

    .mision-img, .mision-img{
        padding: 10px;
    }

  .mob-ver{
        display: contents;
        visibility: visible;  
    }

    .desktop-ver{
        display: none;
        visibility: hidden;
    }


}

@media (max-width:767px){
    .mision-txt h2,.vision-txt h2{
        font-size: 2.3em;    
    }

    .mision-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mision-txt p,.vision-txt p{
        font-size: 1em;
        padding: 10px;
    }
    
    .vision-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mision-img, .mision-img{
        padding: 10px;
    }

  .mob-ver{
        display: contents;
        visibility: visible;  
    }

    .desktop-ver{
        display: none;
        visibility: hidden;
    }


}

/*ESTILOS SERVICIOS*/

.servicios-insaga{
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgb(42,44,45);
background: -moz-linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
background: -webkit-linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
background: linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2c2d",endColorstr="#2a2c2d",GradientType=1);
}

.servicios-tit{
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}
.servicios-tit h2{
    border: solid thin #fff;
    color: #fff;
    text-align: center;
    width: 30%;
    padding: 30px;
    font-weight: 900;
    font-size: 3em;
    text-shadow:rgb(80, 84, 86) 3px 3px 0px;
    box-shadow: 1px 2px 3px 4px rgba(0,0,0,0.15);
}

.columna-servicios{
    padding: 50px 30px;
}

ul.list-serv-insaga{
    color: #fff;
    list-style-type: square;
  list-style-image: url(../img/bullet.svg);
  font-size: 2em;
  line-height: 1.4;
}

ul.list-serv-insaga p{
    font-size: 0.6em;
}


@media (min-width: 1200px) and (max-width:1399px){
    .servicios-tit h2{
        width: 35%;
    }
}

@media (min-width: 1100px) and (max-width:1199px){


    .servicios-tit{
        margin-bottom: 30px;
    }

    .servicios-tit h2{
        width: 40%;
        font-size: 2.8em;
    }

    .columna-servicios{
        padding: 30px 10px;
    }

    ul.list-serv-insaga{
      font-size:1.8em;
    }
}

@media (min-width: 992px) and (max-width:1099px){
    
    .servicios-tit{
        margin-bottom: 30px;
    }

    .servicios-tit h2{
        width: 40%;
        font-size: 2.8em;
    }

    .columna-servicios{
        padding: 30px 10px;
    }

    ul.list-serv-insaga{
      font-size:1.8em;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .servicios-tit{
        margin-bottom: 30px;
    }

    .servicios-tit h2{
        width: 50%;
        font-size: 3em;
    }

    .columna-servicios{
        padding: 30px 10px;
    }

    ul.list-serv-insaga{
      font-size:1.8em;
    }
    .columna-servicios{
        padding: 0px 30px;
    }
}

@media (max-width:767px){
    .servicios-tit{
        margin-bottom: 30px;
        padding: 30px 10px;
    }
    
    .servicios-tit h2{
        width: 100%;
        font-size: 2em;
    }

    .columna-servicios{
        padding: 30px 10px;
    }

    ul.list-serv-insaga{
      font-size:1.8em;
    }
    .columna-servicios{
        padding: 0px 10px;
    }

    ul.list-serv-insaga p{
        font-size: 0.65em;
    }

}

/*ESTILOS ALIANZAS*/

.insaga-alianzas{
    background: url(../img/bg-textura01.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

.alianzas-tit{
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.alianzas-tit h2{
    font-weight: 900;
    padding: 30px;
    border: solid #501756 2px;
    color: #505456;
    width: 50%;
    font-size: 3em;
    box-shadow: 1px 2px 3px 4px rgba(0,0,0,0.15);
    text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

.carousel-alianzas{
    padding: 0px 30px;
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

.carousel-alianzas .logo-alianza{
    text-align: center;
    padding: 30px;
    filter: drop-shadow(3px 3px 2px rgba(82, 86, 89, 0.5));
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

.carousel-alianzas .logo-alianza a img{
    width: 75%;
    height: 75%;
    object-fit: cover;
}


@media (min-width: 1200px) and (max-width:1399px){

    .alianzas-tit h2{
        padding: 20px;
        width: 50%;
        font-size: 2.8em;
    }
}

@media (min-width: 1100px) and (max-width:1199px){
    .alianzas-tit h2{
        padding: 20px;
        width: 50%;
        font-size: 2.8em;
    }
}

@media (min-width: 992px) and (max-width:1099px){
    .alianzas-tit h2{
        padding: 20px;
        width: 65%;
        font-size: 2.8em;
    }

    .carousel-alianzas .logo-alianza a img{
        width: 65%;
        height: 65%;
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width:991px){

    .insaga-alianzas{
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .alianzas-tit h2{
        padding: 20px;
        width: 75%;
        font-size: 2.5em;
    }

    .carousel-alianzas .logo-alianza a img{
        width: 70%;
        height: 70%;
        object-fit: cover;
    }
}

@media (max-width:767px){
    .insaga-alianzas{
        background: url(../img/bg-textura01-v.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .alianzas-tit h2{
        padding: 20px;
        width: 100%;
        font-size: 2em;
    }

    .carousel-alianzas .logo-alianza a img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*BANNER CIERRE*/
.insaga-cierre{
    background: url(../img/bg-perspectiva.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding-top: 200px;
    padding-bottom: 200px;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.insaga-cierre h3{
    font-weight: 700;
    font-size: 2.5em;
    padding: 10px;
    color: #fff;
    text-shadow: 2px 4px 1px #505456;
}

.insaga-cierre h4{
    font-size: 2.2em;
    font-weight: 500;
    padding: 20px;
    border: solid #fff thin;
    margin-left: 25%;
    margin-right: 25%;
    text-shadow: 2px 4px 1px #505456;
    color: #fff;
    box-shadow: 1px 2px 3px 4px rgba(91,34,96,0.5);

}

.insaga-cierre h2{
    font-weight: 900;
    font-size: 3.5em;
    padding: 10px;
    color: #fff;
    text-shadow: 2px 4px 1px #505456;
}


@media (min-width: 992px) and (max-width:1099px){
    .insaga-cierre{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 768px) and (max-width:991px){

    .insaga-cierre{
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .insaga-cierre h3{
        font-size: 2.2em;
    }

    .insaga-cierre h4{
        font-size: 2em;
        margin-left: 15%;
        margin-right: 15%;    
    }

    .insaga-cierre h2{
        font-size: 3.2em;
        padding: 0px;
        color: #fff;
    }
}

@media (max-width:767px){
    .insaga-cierre{
        background: url(../img/bg-perspectiva.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        padding-top: 100px;
        padding-bottom: 100px;
        text-align: center;
        justify-content: center;
        justify-items: center;
        align-items: center;
        align-content: center;
    }
    .insaga-cierre h3{
        font-size: 1.5em;
    }

    .insaga-cierre h4{
        font-size: 1.2em;
        font-weight: 500;
        padding: 20px;
        margin-left: 0%;
        margin-right: 0%;
    }

    .insaga-cierre h2{
        font-size: 2.8em;
        padding: 0px;
    }
}

/*ESTILOS FOOTER*/
footer{
    background: #1e1f20;
    padding: 0;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.footer-left{
    padding: 50px;
    text-align: center;
    color: #fff;
}

.footer-left p{
    text-align: left;
    font-size: 1.2em;
    font-weight: 400;
    padding: 5px 50px;
    width:75%;

}

.footer-left h4{
    text-align: left;
    font-size: 1.5em;
    font-weight: 600;
    text-shadow: 2px 4px 1px #5b2260;
    padding: 0px 50px;
    width:75%;
}

.footer-left h2{
    text-align: left;
    font-size: 1.8em;
    font-weight: 600;
    padding: 0px 50px;
    margin-top: 50px;
}

.footer-left h2 a{
    text-decoration: none;
    color: #ac8cad;
    font-weight: 700;
    border: solid thin #fff;
    box-shadow: 1px 2px 3px 4px rgba(91,34,96,0.5);
    padding: 15px 30px;
    transition: 0.5s;
}

.footer-left h2 a:hover{
    transform: scale(0.95);
    color: #fff;
    text-shadow: 2px 4px 1px #5b2260;
    box-shadow: 1px 2px 3px 4px rgba(137, 101, 140, 0.5);
    transition: 0.5s;
}

.footer-right{
    background: url(../img/bg-textura01.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 50vh;
}
.footer-right img{
    width: 50%;
    height: auto;
    margin-top: 10%;
}

.low-footer{
    padding: 10px;
    padding-top: 10px;
    text-align: center;
    background: #452048;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.low-footer p{
    font-size: 0.8em;
    color: #fff;

}


@media (min-width: 1200px) and (max-width:1399px){

    .footer-left p{
        padding: 5px 30px;    
    }

    .footer-left h4{
        padding: 0px 30px;
    }

    .footer-left h2{
        padding: 0px 30px;
    }
    .footer-right{
        height: 50vh;
    }
    .footer-right img{
        width: 50%;
        height: auto;
        margin-top: 25%;
    }
}

@media (min-width: 1100px) and (max-width:1199px){
    .footer-left p{
        padding: 5px 30px;    
    }

    .footer-left h4{
        padding: 0px 30px;
    }

    .footer-left h2{
        padding: 0px 30px;
    }
    .footer-right{
        height: 55vh;
    }
    .footer-right img{
        width: 50%;
        height: auto;
        margin-top: 25%;
    }
}

@media (min-width: 992px) and (max-width:1099px){
    .footer-left p{
        font-size: 1.1em;
        padding: 5px 20px;
        width:80%;    
    }

    .footer-left h4{
        font-size: 1.3em;
        padding: 5px 20px;
        width:80%;  
    }

    .footer-left h2{
        font-size: 1.5em;
        padding: 0px 30px;
    }
    .footer-right{
        height: 50vh;
    }
    .footer-right img{
        width: 50%;
        height: auto;
        margin-top: 30%;
    }
}

@media (min-width: 768px) and (max-width:991px){
    .footer-left{
        padding: 20px;
    }
    .footer-left p{
        font-size: 1em;
        padding: 5px 10px;
        width:85%;    
    }

    .footer-left h4{
        font-size: 1.3em;
        padding: 5px 10px;
        width: 90%;  
    }

    .footer-left h2{
        font-size: 1.2em;
        padding: 0px 10px;
    }
    .footer-right{
        height: 45vh;
    }
    .footer-right img{
        width: 60%;
        height: auto;
        margin-top: 25%;
    }
}

@media (max-width:767px){

    .footer-left{
        padding: 50px 20px;
    }
    .footer-left p{
        font-size: 1.2em;
        padding: 5px;
        width:100%;  
        text-align: center;  
    }

    .footer-left h4{
        font-size: 1.5em;
        padding: 5px;
        width: 100%;
        text-align: center;  
    }

    .footer-left h2{
        font-size: 1.4em;
        padding: 5px;
        text-align: center;
    }
 
    .footer-right{
        height: 45vh;
    }
    .footer-right img{
        width: 60%;
        height: auto;
        margin-top: 25%;
    }

    .footer-right{
        background: url(../img/bg-textura01-v.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        height: auto;
        padding: 80px 50px;
    }

    .footer-right img{
        width: 80%;
        height: 80%;
        object-fit: cover;
        margin-top: 0%;
    }
    
}

/*AVISO DE PRIVACIDAD*/
.aviso-insaga{
    background: url(../img/bg-textura01.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 20px;    
}

.aviso-tit{
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.aviso-tit h1{
    font-weight: 900;
    padding: 30px;
    border: solid #501756 2px;
    color: #505456;
    width: 45%;
    font-size: 2em;
    box-shadow: 1px 2px 3px 4px rgba(0,0,0,0.15);
    text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
    text-align: left;
}

.aviso-txt{
    padding:30px
}

.aviso-txt h2{
    font-weight: 700;
    color: #5b2260;
    font-size: 1.5em;
    margin-top: 50px;
    margin-bottom: 30px;
}

.aviso-txt p{
    color: #505456;
}

.aviso-txt p a{
    color: #800080;
    font-style: italic;
    text-decoration: none;
    transition: 0.5s;
}

.aviso-txt p a:hover{
    color: #008080;
    transition: 0.5s;
}


.aviso-txt p strong{
    color: #5b2260;
}

.aviso-txt p.casilla{
    font-weight: 600;
    color: #000;
}

.aviso-txt p.casilla span{
    color: #5b2260;
    font-weight: 800;
    letter-spacing: 3px;
    
}
ul.list-aviso{
    color: #5b2260;
    list-style-type: disc;

}

ul.list-aviso li span{
    color: #505456;
    font-weight: 600;
    color: #000;

}

.separador-aviso{
    background: rgb(42,44,45);
    background: -moz-linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
    background: -webkit-linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
    background: linear-gradient(135deg, rgba(42,44,45,1) 0%, rgba(42,44,45,1) 5%, rgba(76,30,80,1) 5%, rgba(76,30,80,1) 95%, rgba(42,44,45,1) 95%, rgba(42,44,45,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a2c2d",endColorstr="#2a2c2d",GradientType=1);
    padding-top: 20px;
    padding-bottom: 50px;
    text-align: center;

}

.txt-separador h2{
    font-weight: 700;
    color: #fff;
    font-size: 1.5em;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: left;
    text-shadow:rgb(80, 84, 86) 3px 3px 0px;
    padding: 0px 30px;

}

.txt-separador p{
    color: #fff;
    text-align: left;
    padding: 0px 30px;
}

.txt-separador p a{
    color: #a4dd9f;
    text-decoration: none;
    text-align: left;
    font-style: italic;
    transition: 0.5s;

}

.txt-separador p a:hover{
    color: #edff21;
    transition: 0.5s;
}

@media (min-width: 1100px) and (max-width:1199px){

    .aviso-tit h1{
        width: 65%;
    }
}

@media (min-width: 992px) and (max-width:1099px){
    .aviso-tit{
        margin-bottom: 20px;
        padding: 10px 30px;
    }


    .aviso-tit h1{
        width: 65%;
    }

    .aviso-txt{
        padding:10px 30px
    }
    
}

@media (min-width: 768px) and (max-width:991px){

    .aviso-tit{
        padding: 10px 30px;
        margin-bottom: 10px;
    }

    .aviso-tit h1{
        padding: 30px;
        width: 75%;
    }

    .aviso-txt{
        padding:10px 30px
    }

}

@media (max-width:767px){
    .aviso-insaga{
        background: url(../img/bg-textura01-v.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;

    }
    .aviso-tit{
        padding: 10px;
        margin-bottom: 0px;
    }

    .aviso-tit h1{
        padding: 10px 30px;
        width: 100%;
        font-size: 1.8em;       
        text-align: center;
    }
    
    .aviso-txt{
        padding:10px 15px;
    }

    .aviso-txt h2{
        font-size: 1.3em;
    }

    .txt-separador h2{
        font-size: 1.3em;
        padding: 0px 15px;
    
    }

    .txt-separador p{
        padding: 0px 15px;    
    }
    
}