@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'Helvetica Neue Light';
    src: local('Helvetica Neue Light'), local('HelveticaNeue-Light'),
		url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Light.woff') format('woff'),
        url('../fonts/HelveticaNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue Medium';
    src: local('Helvetica Neue Medium'), local('HelveticaNeue-Medium'),
		url('../fonts/HelveticaNeue-Medium.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Medium.woff') format('woff'),
        url('../fonts/HelveticaNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue Bold';
    src: local('Helvetica Neue Bold'), local('HelveticaNeue-Bold'),
		url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Bold.woff') format('woff'),
        url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue Thin';
    src: local('Helvetica Neue Thin'), local('HelveticaNeue-Thin'),
		url('../fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Thin.woff') format('woff'),
        url('../fonts/HelveticaNeue-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue Roman';
    src: local('Helvetica Neue Roman'), local('HelveticaNeue-Roman'),
		url('../fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaNeue-Roman.woff') format('woff'),
        url('../fonts/HelveticaNeue-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Helvetica Neue'!important;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
font-family: 'Helvetica Neue' !important;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
}


.navbar {
  background-color: #1a3768;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;

}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  font-family: 'Helvetica Neue Roman';
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  text-align: right;
  padding: 25px 10px;
  display: block;
}

.nav-list a:hover {
  color: #999999;
  font-weight: 500;
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  right: 0; 
  background-color: #ffffff;
  display: none;
  flex-direction: column;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 0;	
  z-index: 2000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 8px 14px;
  line-height: 1.2;
  color: #1a3768;
  text-align: right;
  background: transparent;
}

.dropdown-menu li a:hover {
  background-color: #f0f3fa;
  color: #1a3768;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 6px;
  margin-right: 10px;
  z-index: 3000;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  pointer-events: auto;
}

.bar {
  height: 3px;
  width: 24px;
  background-color: #ffffff;
  margin: 3px 0;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 62px;
    right: 0;
    width: 100%;
    max-height: 600px;
    background-color: #1a3768;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    border-radius: 4px;

    transform: translateX(110%);
    transition: none;
    list-style: none;
	padding: 0;
    margin: 0;	  
    z-index: 2000; 
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    padding: 10px 18px;
    width: 100%;
    text-align: right;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    padding: 0;
    width: 100%;
    align-items: center;
	margin-top: 2px;
	list-style: none;  
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu .submenu-block {
    width: 90%;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    margin: 2px 0;
  }

  .dropdown-menu .submenu-block li a {
    display: block;
    width: 100%;	
    padding: 6px 14px;
    background: transparent;
    color: #1a3768;
    text-align: right;
    line-height: 1.2;
    border-radius: 0;
    margin: 0;
  }

  .dropdown-menu .submenu-block li a:hover {
    background-color: rgba(255,255,255,0.08);
    color: #9999999;
    font-weight: 600;
  }
.dropdown.active .submenu-block li a {
    color: #1a3768; 
}	
	
}

#banda-iconos {
    width: 70px;
	background-color: #1a3768;
    height: 100%;
    z-index: 7;
    position:fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
	padding-top: 190px;
    padding-bottom: 100px;
	
}

	
	#banda-iconos-mobile {
		display:none;
	}

.iconos {
    margin: 15px auto;
    width: 24px;
    height: auto;
	
}
@media screen and (max-width: 1024px) {
  #banda-iconos {
    width: 60px;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .iconos {
    width: 22px;
    margin: 12px auto;
  }
}

@media screen and (max-width: 768px) {
  #banda-iconos {
    width: 55px;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .iconos {
    width: 20px;
    margin: 10px auto;
  }
}

@media screen and (max-width: 480px) {
  #banda-iconos {
    width: 50px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .iconos {
    width: 18px;
    margin: 10px auto;
  }
}

@media screen and (max-width: 360px) {
  #banda-iconos {
    width: 45px;
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .iconos {
    width: 16px;
    margin: 8px auto;
  }
}

.logo_menu {
    width: 100%;
    height: auto;
    max-width: 190px;
    position: fixed;
    left: 0;
	top:0px;
    z-index: 1040;
	
	}

@media (max-width: 768px) {
  .logo_menu {
    max-width: 140px; 
  }
}


@media (max-width: 576px) {
  .logo_menu {
    max-width: 130px; 
  }
}

@media (max-width: 480px) {
  .logo_menu {
    max-width: 120px;
  }
}

.header-home {
  background-image: var(--bg-image, url('../images/header-home.jpg')); 
  background-size: cover;        
  background-position: center;   
  height: 538px;                 
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;  
  justify-content: center;
}
.header-home h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman';  
  font-size: 40px;                    
  font-weight: 800;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
   -2px  0   0 #1a3768,  
   2px  0   0 #1a3768,  
   0   -2px 0 #1a3768,  
   0    2px 0 #1a3768,  
  -2px -2px 0 #1a3768,  
   2px -2px 0 #1a3768,  
  -2px  2px 0 #1a3768,  
   2px  1px 0 #1a3768;  
	margin-left: 75px;
}

@media screen and (max-width: 1024px) {
  .header-home {
    height: 400px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-home h2 {
    font-size: 30px;
    margin-left: 70px;
    margin-bottom: 35px;
	 text-align: center !important;
  }
}


@media screen and (max-width: 768px) {
  .header-home {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-home h2 {
    font-size: 24px;
    margin-left: 60px;
    margin-bottom: 30px;
	   text-align: center !important;
  }
}


@media screen and (max-width: 480px) {
  .header-home {
    height: 220px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-home h2 {
    font-size: 18px;
    margin-left: 50px;
    margin-bottom: 25px;
	   text-align: center !important;
  }
}


@media screen and (max-width: 360px) {
  .header-home {
    height: 180px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-home h2 {
    font-size: 14px;
    margin-left: 45px;
    margin-bottom: 20px;
	   text-align: center !important;
  }
}




.header-seccion-vision {
  background-image: url('../images/header-vision-cdmx.jpg'); 
  background-size: cover;        
  background-position: center;   
  height: 403px;                 
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center; 
}

.header-seccion-vision h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman';  
  font-size: 40px;                    
  font-weight: 520;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
    -1px -1px 0 #1a3768,  
     1px -1px 0 #1a3768,
    -1px  1px 0 #1a3768,
     1px  1px 0 #1a3768;	
	margin-left: 70px;
}


@media screen and (max-width: 1024px) {
  .header-seccion-vision {
    height: 340px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-seccion-vision h2 {
    font-size: 32px;
    margin-left: 60px;
    margin-bottom: 35px;
	 text-align: center;
  }
}


@media screen and (max-width: 768px) {
  .header-seccion-vision {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-vision h2 {
    font-size: 26px;
    margin-left: 40px;
    margin-bottom: 30px;
	   text-align: center;
  }
}


@media screen and (max-width: 480px) {
  .header-seccion-vision {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-vision h2 {
    font-size: 18px;
    margin-left: 20px;
    margin-bottom: 25px;
	   text-align: center;
  }
}


@media screen and (max-width: 360px) {
  .header-seccion-vision {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-vision h2 {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 20px;
	   text-align: center;
  }
}



.header-seccion-mision {
  background-image: url('../images/header-mision.jpg'); 
  background-size: cover;        
  background-position: center;   
  height: 403px;                 
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center; 
}

.header-seccion-mision h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman';  
  font-size: 40px;                    
  font-weight: 520;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
    -1px -1px 0 #1a3768,  
     1px -1px 0 #1a3768,
    -1px  1px 0 #1a3768,
     1px  1px 0 #1a3768;	
	margin-left: 70px;
}


@media screen and (max-width: 1024px) {
  .header-seccion-mision {
    height: 340px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-seccion-mision h2 {
    font-size: 32px;
    margin-left: 60px;
    margin-bottom: 35px;
	 text-align: center;
  }
}


@media screen and (max-width: 768px) {
  .header-seccion-mision {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-mision h2 {
    font-size: 26px;
    margin-left: 40px;
    margin-bottom: 30px;
	   text-align: center;
  }
}


@media screen and (max-width: 480px) {
  .header-seccion-mision {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-mision h2 {
    font-size: 18px;
    margin-left: 20px;
    margin-bottom: 25px;
	   text-align: center;
  }
}


@media screen and (max-width: 360px) {
  .header-seccion-mision {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-mision h2 {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 20px;
	   text-align: center;
  }
}


.header-seccion-quienes-somos {
  background-image: url('../images/header-quienes-somos.jpg'); 
  background-size: cover;        
  background-position: center;   
  height: 403px;                 
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center; 
}

.header-seccion-quienes-somos h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman';  
  font-size: 40px;                    
  font-weight: 520;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
    -1px -1px 0 #1a3768,  
     1px -1px 0 #1a3768,
    -1px  1px 0 #1a3768,
     1px  1px 0 #1a3768;	
	margin-left: 70px;
}



@media screen and (max-width: 1024px) {
  .header-seccion-quienes-somos {
    height: 340px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-seccion-quienes-somos h2 {
    font-size: 32px;
    margin-left: 60px;
    margin-bottom: 35px;
	 text-align: center;
  }
}


@media screen and (max-width: 768px) {
  .header-seccion-quienes-somos {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-quienes-somos h2 {
    font-size: 26px;
    margin-left: 40px;
    margin-bottom: 30px;
	   text-align: center;
  }
}


@media screen and (max-width: 480px) {
  .header-seccion-quienes-somos {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-quienes-somos h2 {
    font-size: 18px;
    margin-left: 20px;
    margin-bottom: 25px;
	   text-align: center;
  }
}


@media screen and (max-width: 360px) {
  .header-seccion-quienes-somos {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-quienes-somos h2 {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 20px;
	   text-align: center;
  }
}



.header-seccion-valores {
  background-image: url('../images/header-valores-principios.jpg'); 
  background-size: cover;        
  background-position: center;   
  height: 403px;                 
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center; 
}

.header-seccion-valores h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman'; 
  font-size: 40px;                    
  font-weight: 520;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
    -1px -1px 0 #1a3768,  
     1px -1px 0 #1a3768,
    -1px  1px 0 #1a3768,
     1px  1px 0 #1a3768;	
	margin-left: 70px;
}

@media screen and (max-width: 1024px) {
  .header-seccion-valores {
    height: 340px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-seccion-valores h2 {
    font-size: 32px;
    margin-left: 60px;
    margin-bottom: 35px;
	 text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header-seccion-valores {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-valores h2 {
    font-size: 26px;
    margin-left: 40px;
    margin-bottom: 30px;
	   text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .header-seccion-valores {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-valores h2 {
    font-size: 18px;
    margin-left: 20px;
    margin-bottom: 25px;
	   text-align: center;
  }
}

@media screen and (max-width: 360px) {
  .header-seccion-valores {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-seccion-valores h2 {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 20px;
	   text-align: center;
  }
}

.header-seccion-comunicacion {
  background-image: url('../images/header-comunicacion.png'); 
  background-size: cover;        
  background-position: center;   
  height: 316px;                 
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center; 
	align-items: center;
  background-color: #1a3768;
}

.header-seccion-comunicacion h2 {
  color: #ffffff;
  text-align: center;
  font-family: 'Helvetica Neue Bold'; 
  font-size: 50px;                    
  font-weight: bold;                 
  line-height: 1.0;                  
  letter-spacing: 0.4em;             
-webkit-font-smoothing: antialiased;	
	margin-left: 70px;
}

@media screen and (max-width: 1024px) {
  .header-seccion-comunicacion {
    height: 340px;
    justify-content: center;
    align-items: center;
	  display: flex;
  }

  .header-seccion-comunicacion h2 {
    font-size: 40px;
    margin-left: 60px;
	    width: calc(100% - 60px);
    margin-bottom: 35px;
	 text-align: center;
	    letter-spacing: 0.4em;             
-webkit-font-smoothing: antialiased;
  }
}

@media screen and (max-width: 768px) {
  .header-seccion-comunicacion {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center;
    align-items: center;	  
  }

  .header-seccion-comunicacion h2 {
    font-size: 30px;
    margin-left: 55px;
    width: calc(100% - 55px);  
    margin-bottom: 30px;
	   text-align: center;
	    letter-spacing: 0.2em;             
-webkit-font-smoothing: antialiased;
  }
}


@media screen and (max-width: 480px) {
  .header-seccion-comunicacion {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center;
    align-items: center;	  
  }

  .header-seccion-comunicacion h2 {
    font-size: 26px;
    margin-left: 50px;
    width: calc(100% - 50px);	  
    margin-bottom: 25px;
	   text-align: center;
	    letter-spacing: 0.2em;             
-webkit-font-smoothing: antialiased;
  }
}

@media screen and (max-width: 360px) {
  .header-seccion-comunicacion {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center;
    align-items: center;	  
  }

  .header-seccion-comunicacion h2 {
    font-size: 14px;
    margin-left: 45px;
    width: calc(100% - 45px);	  
    margin-bottom: 20px;
	   text-align: center;
	    letter-spacing: 0.2em;             
-webkit-font-smoothing: antialiased;
  }
}

.header-afiliacion {
  background-image: url('../images/header-afiliacion.jpg'); 
  background-size: cover;        
  background-position: center;   
  height: 403px;                 
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;  
  justify-content: center; 
}
.header-afiliacion h2 {
  color: #ffffff;
  margin-bottom: 40px; 
  text-align: center;
  font-family: 'Helvetica Neue Roman';  
  font-size: 40px;                    
  font-weight: 800;                   
  line-height: 1.0;                   
  letter-spacing: 0.01em;             
-webkit-font-smoothing: antialiased;	
  text-shadow: 
   -2px  0   0 #1a3768,  
   2px  0   0 #1a3768,  
   0   -2px 0 #1a3768,  
   0    2px 0 #1a3768,  
  -2px -2px 0 #1a3768,  
   2px -2px 0 #1a3768,  
  -2px  2px 0 #1a3768,  
   2px  1px 0 #1a3768;  
	margin-left: 75px;
}

@media screen and (max-width: 1024px) {
  .header-afiliacion {
    height: 340px;
    justify-content: center;
    align-items: flex-end;
	  display: flex;
  }

  .header-afiliacion h2 {
    font-size: 30px;
    margin-left: 70px;
    margin-bottom: 35px;
	 text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  .header-afiliacion {
    height: 300px;
    padding: 0 20px;
	  display: flex;
	  justify-content: center; 
  }

  .header-afiliacion h2 {
    font-size: 24px;
    margin-left: 60px;
    margin-bottom: 30px;
	   text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .header-afiliacion {
    height: 260px;
    padding: 0 10px;
	  display: flex;
	  justify-content: center; 
  }

  .header-afiliacion h2 {
    font-size: 18px;
    margin-left: 50px;
    margin-bottom: 25px;
	   text-align: center !important;
  }
}

@media screen and (max-width: 360px) {
  .header-afiliacion {
    height: 220px;
    padding: 0 8px;
	  display: flex;
	  justify-content: center; 
  }

  .header-afiliacion h2 {
    font-size: 14px;
    margin-left: 45px;
    margin-bottom: 20px;
	   text-align: center !important;
  }
}


.header-noticias {
  height: 200px;
  width: 100%;
  background-color: #1a3768;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
  padding: 0 20px;         
	margin-left: 0px;
	margin-right: 0px;
}

.texto-header-noticias {
	margin-left: 170px;          
  width: calc(100% - 170px);   
  color: #ffffff;
  font-family: 'Helvetica Neue Bold';
  font-size: 50px;
  font-weight: bold;
  text-align: center;
	line-height: 1.0;                  
  letter-spacing: 0.5em;             
-webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .texto-header-noticias {
    font-size: 42px;
    letter-spacing: 0.4em;
	    margin-left: 120px;
	    width: calc(100% - 120px);
  }
}

@media (max-width: 768px) {
  .header-noticias {
    height: 180px;
    padding: 0 15px;
	  
  }

  .texto-header-noticias {
    font-size: 40px;
    letter-spacing: 0.3em;
	    margin-left: 90px;
	    width: calc(100% - 90px);
  }
}

@media (max-width: 480px) {
  .header-noticias {
    height: 160px;
    padding: 0 10px;
  }

  .texto-header-noticias {
    font-size: 30px;
    letter-spacing: 0.2em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}

@media (max-width: 360px) {
  .header-noticias {
    height: 140px;
  }

  .texto-header-noticias {
    font-size: 24px;
    letter-spacing: 0.1em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}


.header-asambleas {
  height: 200px;
  width: 100%;
  background-color: #1a3768;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
  padding: 0 20px;         
	margin-left: 0px;
	margin-right: 0px;
}

.texto-header-asambleas {
	margin-left: 170px;          
  width: calc(100% - 170px);   
  color: #ffffff;
  font-family: 'Helvetica Neue Bold';
  font-size: 50px;
  font-weight: bold;
  text-align: center;
	line-height: 1.0;                   
  letter-spacing: 0.5em;             
-webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .texto-header-asambleas {
    font-size: 42px;
    letter-spacing: 0.4em;
	    margin-left: 120px;
	    width: calc(100% - 120px);
  }
}

@media (max-width: 768px) {
  .header-asambleas {
    height: 180px;
    padding: 0 15px;
	  
  }

  .texto-header-asambleas {
    font-size: 40px;
    letter-spacing: 0.3em;
	    margin-left: 90px;
	    width: calc(100% - 90px);
  }
}

@media (max-width: 480px) {
  .header-asambleas {
    height: 160px;
    padding: 0 10px;
  }

  .texto-header-asambleas {
    font-size: 30px;
    letter-spacing: 0.2em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}

@media (max-width: 360px) {
  .header-asambleas {
    height: 140px;
  }

  .texto-header-asambleas {
    font-size: 24px;
    letter-spacing: 0.1em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}


.header-documentos {
  height: 200px;
  width: 100%;
  background-color: #1a3768;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
  padding: 0 20px;         
	margin-left: 0px;
	margin-right: 0px;
}

.texto-header-documentos {
	margin-left: 170px;          
  width: calc(100% - 170px);   
  color: #ffffff;
  font-family: 'Helvetica Neue Bold';
  font-size: 48px;
  font-weight: bold;
  text-align: center;
	line-height: 1.0;                   
  letter-spacing: 0.5em;             
-webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .texto-header-documentos {
    font-size: 38px;
    letter-spacing: 0.4em;
	    margin-left: 120px;
	    width: calc(100% - 120px);
  }
}

@media (max-width: 768px) {
  .header-documentos {
    height: 180px;
    padding: 0 15px;
	  
  }

  .texto-header-documentos {
    font-size: 30px;
    letter-spacing: 0.3em;
	    margin-left: 90px;
	    width: calc(100% - 90px);
  }
}

@media (max-width: 480px) {
  .header-documentos {
    height: 160px;
    padding: 0 10px;
  }

  .texto-header-documentos {
    font-size: 20px;
    letter-spacing: 0.2em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}

@media (max-width: 360px) {
  .header-documentos {
    height: 140px;
  }

  .texto-header-documentos {
    font-size: 20px;
    letter-spacing: 0.1em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}




.header-posicionamiento {
  height: 200px;
  width: 100%;
  background-color: #1a3768;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
  padding: 0 20px;         
	margin-left: 0px;
	margin-right: 0px;
}

.texto-header-posicionamiento {
	margin-left: 170px;          
  width: calc(100% - 170px);   
  color: #ffffff;
  font-family: 'Helvetica Neue Bold';
  font-size: 40px;
  font-weight: bold;
  text-align: center;
	line-height: 1.0;
  letter-spacing: 0.5em;
-webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
  .texto-header-posicionamiento {
    font-size: 26px;
    letter-spacing: 0.4em;
	    margin-left: 120px;
	    width: calc(100% - 120px);
  }
}

@media (max-width: 768px) {
  .header-posicionamiento {
    height: 180px;
    padding: 0 15px;
	  
  }

  .texto-header-posicionamiento {
    font-size: 25px;
    letter-spacing: 0.3em;
	    margin-left: 90px;
	    width: calc(100% - 90px);
  }
}

@media (max-width: 480px) {
  .header-posicionamiento {
    height: 160px;
    padding: 0 10px;
  }

  .texto-header-posicionamiento {
    font-size: 15px;
    letter-spacing: 0.2em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}

@media (max-width: 360px) {
  .header-posicionamiento {
    height: 140px;
  }

  .texto-header-posicionamiento {
    font-size: 12px;
    letter-spacing: 0.1em;
	    margin-left: 80px;
	    width: calc(100% - 80px);
  }
}

.header-galerias {
  height: 100px;
  width: 100%;
  background-color: #1a3768;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
  padding: 0 20px;         
	margin-left: 0px;
	margin-right: 0px;
}


.mx-auto {
  margin-right:auto !important;
  margin-left: 75px;
}

.titulo-01  {
  margin-left: 75px; 
  height: 65px;
  width: calc(100% - 70px);
  display: flex;
  align-items: center;  
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.titulo-01 h2 {
  font-family: 'Helvetica Neue Bold';
  font-size: 30px;
  font-weight: 550;
  color: #1a3768;
  line-height: 1.3;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .titulo-01 {
    margin-left: 60px;
    width: calc(100% - 60px);
    height: auto;
    padding: 10px;
  }

  .titulo-01 h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .titulo-01 {
    margin-left: 55px;
    width: calc(100% - 55px);
    padding: 10px;
  }

  .titulo-01 h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .titulo-01 {
    margin-left: 50px;
    width: calc(100% - 50px);
    padding: 8px;
  }

  .titulo-01 h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 360px) {
  .titulo-01 {
    margin-left: 45px;
    width: calc(100% - 45px);
    padding: 6px;
  }

  .titulo-01 h2 {
    font-size: 18px;
  }
}


#quienes-somos {
margin-left: 75px; 
height: 40px;	
}

#vision {
margin-left: 75px; 
height: 50px;	
}

.titulo-02 {
  margin-left: 75px; 
  height: 65px;
  width: calc(100% - 70px);
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 0 10px;
  text-align: left;
}

.titulo-02 h2 {
  font-family: 'Helvetica Neue Bold';
  font-size: 30px;
  font-weight: 550;
  color: #1a3768;
  line-height: 1.3;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .titulo-02 {
    margin-left: 60px;
    width: calc(100% - 60px);
    height: auto;
    padding: 10px;
  }

  .titulo-02 h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .titulo-02 {
    margin-left: 40px;
    width: calc(100% - 40px);
    padding: 10px;
  }

  .titulo-02 h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .titulo-02 {
    margin-left: 20px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .titulo-02 h2 {
    font-size: 21px;
  }
}

@media screen and (max-width: 360px) {
  .titulo-02 {
    margin-left: 10px;
    width: calc(100% - 10px);
    padding: 6px;
  }

  .titulo-02 h2 {
    font-size: 19px;
  }
}


.subtitulo-01 {
  margin-left: 75px; 
  height: 20px;
  width: calc(100% - 70px);
  display: flex;
  align-items: center; 
  justify-content: center; 
  padding: 0 10px;
  text-align: center;
}

.subtitulo-01 h2 {
  font-family: 'Helvetica Neue Roman';
  font-size: 24px;
  font-weight: 600;
  color: #1a3768;
  line-height: 1;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-align: center;
}

.subtitulo-01 h2 a {
  color: inherit;
  text-decoration: none;
}

.subtitulo-01 h2 a:hover {
  text-decoration: underline; 
}

@media screen and (max-width: 1024px) {
  .subtitulo-01 {
    margin-left: 60px;
    width: calc(100% - 60px);
    height: auto;
    padding: 10px;
  }

  .subtitulo-01 h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .subtitulo-01 {
    margin-left: 55px;
    width: calc(100% - 55px);
    padding: 10px 8px;
  }

  .subtitulo-01 h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .subtitulo-01 {
    margin-left: 50px;
    width: calc(100% - 50px);
    padding: 8px 6px;
  }

  .subtitulo-01 h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 360px) {
  .subtitulo-01 {
    margin-left: 45px;
    width: calc(100% - 45px);
    padding: 6px 4px;
  }

  .subtitulo-01 h2 {
    font-size: 16px;
  }
}




.subtitulo-02 {
  margin-left: 75px; 
  height: 20px;
  width: calc(100% - 70px); 
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 0 10px;
  text-align: center;
}

.subtitulo-02 h2 {
  font-family: 'Helvetica Neue Roman';
  font-size: 20px;
  font-weight: 600;
  color: #1a3768;
  line-height: 1;
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .subtitulo-02 {
    margin-left: 60px;
    width: calc(100% - 60px);
    height: auto;
    padding: 10px;
  }

  .subtitulo-02 h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .subtitulo-02 {
    margin-left: 40px;
    width: calc(100% - 40px);
    padding: 10px 8px;
  }

  .subtitulo-02 h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .subtitulo-02 {
    margin-left: 20px;
    width: calc(100% - 20px);
    padding: 8px 6px;
  }

  .subtitulo-02 h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 360px) {
  .subtitulo-02 {
    margin-left: 10px;
    width: calc(100% - 10px);
    padding: 6px 4px;
  }

  .subtitulo-02 h2 {
    font-size: 16px;
  }
}

.tx-content-lateral-01{
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  font-weight: normal;
  color: #1a3768;
  line-height: 1.4;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;

}

@media (max-width: 1024px) {
  .tx-content-lateral-01 {
    text-align: left;
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .tx-content-lateral-01 {
    text-align: left;
    font-size: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .tx-content-lateral-01 {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-lateral-01 {
    font-size: 13px;
    padding: 0 8px;
	  text-align: center;
  }
}



.tx-content-general{
  text-align: var(--tx-align, left);
  font-family: 'Helvetica Neue Medium';
  font-size: 16px; 
  line-height: 1.4;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

@media (max-width: 1024px) {
  .tx-content-general {
    text-align: left;
    font-size: 15.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .tx-content-general {
    text-align: left;
    font-size: 15px;
    padding: 0 15px;
	    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .tx-content-general {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-general {
    font-size: 13px;
    padding: 0 8px;
	  text-align: center;
	   line-height: 1.2;
  }
}


.tx-content-general-02{
  text-align: var(--tx-align, left);
  font-family: 'Helvetica Neue Medium';
  font-size: 19px; 
  line-height: 1.4;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

@media (max-width: 1024px) {
  .tx-content-general-02 {
    text-align: left;
    font-size: 17.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .tx-content-general-02 {
    text-align: left;
    font-size: 17px;
    padding: 0 15px;
	    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .tx-content-general-02 {
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-general-02 {
    font-size: 15px;
    padding: 0 8px;
	  text-align: center;
	   line-height: 1.2;
  }
}




.tx-content-align-izq{
  text-align: left;
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  line-height: 1.4;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

@media (max-width: 1024px) {
  .tx-content-align-izq {
    text-align: left;
    font-size: 15.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .tx-content-align-izq {
    text-align: left;
    font-size: 15px;
    padding: 0 15px;
	    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .tx-content-align-izq {
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-align-izq {
    font-size: 13px;
    padding: 0 8px;
	  text-align: left;
	   line-height: 1.2;
  }
}

.tx-content-justified{
  text-align: justify;
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  line-height: 1.4;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}


@media (max-width: 1024px) {
  .tx-content-justified {
    text-align: justify;
    font-size: 15.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .tx-content-justified {
    text-align: justify;
    font-size: 15px;
    padding: 0 15px;
	    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .tx-content-justified {
    text-align: justify;
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-justified {
    font-size: 13px;
    padding: 0 8px;
	  text-align: justify;
	   line-height: 1.2;
  }
}


.tx-lista {
  text-align: left;
  list-style-type: disc;     
  padding-left: 20px;       
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  line-height: 1.4;
  color: #1a3768;
	  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

.tx-lista li {
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .tx-lista {
        text-align: left;
    font-size: 15.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  .tx-lista {
    text-align: left;
    font-size: 15px;
    padding: 0 15px;
	    line-height: 1.2;

  }
}

@media screen and (max-width: 480px) {
  .tx-lista {
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media screen and (max-width: 360px) {
  .tx-lista {
    text-align: left;
    font-size: 13px;
    padding: 0 8px;
	line-height: 1.2;
  }
}



.tx-content-afiliacion {
  text-align: center;
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  line-height: 1.4;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

@media (max-width: 1024px) {
  .tx-content-afiliacion {
    text-align: center;
    font-size: 15.5px;
    padding: 0 20px;
	    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .tx-content-afiliacion {
    text-align: center;
    font-size: 15px;
    padding: 0 15px;
	    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .tx-content-afiliacion {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-afiliacion {
    font-size: 13px;
    padding: 0 8px;
	  text-align: center;
	   line-height: 1.2;
  }
}



.tx-content-centro {
  text-align: center;
  font-family: 'Helvetica Neue Bold';
  font-size: 24px;
  line-height: 1.6;
  color: #1a3768;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

@media (max-width: 1024px) {
  .tx-content-centro {
    text-align: center;
    font-size: 15.5px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .tx-content-centro {
    text-align: center;
    font-size: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .tx-content-centro {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-centro {
    font-size: 13px;
    padding: 0 8px;
  }
}



.tx-content-valores{
  font-family: 'Helvetica Neue Medium';
  font-size: 16px;
  color: #1a3768;
  line-height: 1.4;
  text-align: left;
	 -webkit-font-smoothing: antialiased;
  letter-spacing: 0em
	
}

@media (max-width: 1024px) {
  .tx-content-valores {
    text-align: left;
    font-size: 15.5px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .tx-content-valores {
    text-align: left;
    font-size: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .tx-content-valores {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .tx-content-valores {
    font-size: 13px;
    padding: 0 8px;
	text-align: center;
  }
}

.content-01 {
  margin-left: 75px; 
  width: calc(100% - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-sizing: border-box;
  gap: 20px;
  flex-wrap: wrap; 
}


.texto-lateral-01 {
  max-width: 450px;
}
.texto-lateral-01 h2 {
  font-family: 'Helvetica Neue Medium';
  font-size: 25px;
  color: #1a3768;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase; 
}


.imagen-lateral-01 img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  width: 450px; 
}
@media screen and (max-width: 1024px) {
  .content-01 {
    margin-left: 60px;
       width: calc(100% - 60px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    gap: 18px;
  }

  .texto-lateral-01 {
    text-align: center;
  }

  .texto-lateral-01 h2 {
    font-size: 23px;
  }

  .imagen-lateral-01 img {
    width: 100%;
    max-width: 420px;
  }
}

@media screen and (max-width: 768px) {
  .content-01 {
    margin-left: 55px;
	  width: calc(100% - 55px);
    padding: 20px 15px;
    gap: 16px;
	  flex-direction: column;
  }
	 .texto-lateral-01 {
    text-align: center;
  }

  .texto-lateral-01 h2 {
    font-size: 20px;
  }

  .imagen-lateral-01 img {
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .content-01 {
    margin-left: 50px;
	  width: calc(100% - 50px);
    padding: 15px 10px;
    gap: 14px;
	  flex-direction: column;
  }

  .texto-lateral-01 {
    max-width: 100%;
    text-align: center;
  }

  .texto-lateral-01 h2 {
    font-size: 18px;
  }

  .imagen-lateral-01 img {
    max-width: 100%;
    width: auto;
  }
}

@media screen and (max-width: 360px) {
  .content-01 {
    margin-left: 45px;
	   width: calc(100% - 45px);
    padding: 10px 8px;
    gap: 12px;
	  flex-direction: column;
  }
	 .texto-lateral-01 {
    text-align: center;
  }

  .texto-lateral-01 h2 {
    font-size: 16px;
  }

  .imagen-lateral-01 img {
    max-width: 100%;
    width: auto;
  }
}

.contenedor-columnas {
  margin-left: 75px;
  width: 80%;
  width: calc(100% - 75px); 
  display: flex;
  justify-content: space-between; 
	align-items: center;
  gap: 10px; 
  flex-wrap: wrap; 
}

.columna {
  flex: 1 1 32%; 
  text-align: center;
}

.columna img {
  max-width: 100%;
  height: 150px;
  border-radius: 8px;
}

.columna .texto {
  margin-top: 10px;
  font-family: 'Helvetica Neue Roman';
  font-size: 16px;
  font-weight: 600;
  color: #1a3768;
  line-height: 1.4;
}


@media (max-width: 1024px) {
  .columna {
    flex: 1 1 45%;
  }

  .columna img {
    height: 140px;
  }

  .columna .texto {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contenedor-columnas {
    margin-left: 55px;
    width: calc(100% - 55px);
  }

  .columna {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .columna img {
    height: 130px;
  }

  .columna .texto {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contenedor-columnas {
    margin-left: 50px;
    width: calc(100% - 50px);
    gap: 8px;
  }

  .columna img {
    height: 120px;
  }

  .columna .texto {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .contenedor-columnas {
    margin-left: 45px;
    width: calc(100% - 45px);
    gap: 6px;
  }

  .columna img {
    height: 110px;
  }

  .columna .texto {
    font-size: 12px;
  }
}

	.content-noticias {
	  margin-left: 75px;
	  width: calc(100% - 75px);
	  display: flex;
	  justify-content: space-between;
	  gap: 20px;
	  flex-wrap: wrap;
	  box-sizing: border-box;
		padding: 0 95px;
	}

	.noticia {
	  flex: 1 1 30%;	
	  background-color: #f5f8fc;
	  border-radius: 10px;
	  padding: 15px 12px;
	  text-align: center;
	  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	}

	.noticia img {
	  width: auto;
	  height: 180px;
	  object-fit: cover;
	  border-radius: 8px;
	}

	.texto-noticia {
		margin-top: 10px;
		font-family: 'Helvetica Neue Medium';
		font-size: 14px;
		color: #1a3768;
		line-height: 1.2;
		font-weight: normal;
		padding: 0 30px;
		-webkit-font-smoothing: antialiased;
		letter-spacing: 0em;
	}

	.boton-noticia {
		display: inline-block;       
	  margin-top: 15px;
	  background-color: #1a3768;
	  color: white;
	  font-family: 'Helvetica Neue Roman';
	  font-size: 12px;
	  font-weight: 600;
	  padding: 10px 20px;
	  border: none;
	  border-radius: 6px;
	  cursor: pointer;
		text-decoration: none;  
	  transition: background-color 0.3s ease;
	}

	.boton-noticia:hover {
	  background-color: #2c4e9b;
		  color: white;
	  font-family: 'Helvetica Neue Roman';
	  font-size: 12px;
	  font-weight: 600;
	}


@media (max-width: 1024px) {
	.content-noticias {
  margin-left: 60px;
  width: calc(100% - 60px);
}
	
  .noticia {
    flex: 1 1 45%;
  }

  .texto-noticia {
    font-size: 13px;
  }

  .boton-noticia {
    font-size: 11px;
    padding: 9px 18px;
  }
}

@media (max-width: 768px) {
  .content-noticias {
    padding: 0 20px;
    justify-content: center;
  margin-left: 55px;
  width: calc(100% - 55px);
}

  .noticia {
    flex: 1 1 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .texto-noticia {
    font-size: 13px;
  }

  .boton-noticia {
    font-size: 11px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .content-noticias {
    padding: 0 10px;
	    margin-left: 50px;
  width: calc(100% - 50px);
  }

  .noticia {
    flex: 1 1 100%;
    padding: 10px;
  }

  .texto-noticia {
    font-size: 12px;
  }

  .boton-noticia {
    font-size: 10px;
    padding: 7px 14px;
  }
}

@media (max-width: 360px) {
	  .content-noticias {
	    margin-left: 45px;
  width: calc(100% - 45px);
  }
	
	
  .noticia {
    padding: 8px;
  }

  .texto-noticia {
    font-size: 11px;
  }

  .boton-noticia {
    font-size: 10px;
    padding: 6px 12px;
  }
}


.content-noticias-1 {
  margin-left: 75px;
  width: calc(100% - 75px);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
	padding: 0 95px;
}

.noticia-1 {
  width: 30%;
  background-color: #f5f8fc;
  border-radius: 10px;
  padding: 15px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.texto-noticia-1 {
    margin-top: 10px;
    font-family: 'Helvetica Neue Medium';
    font-size: 14px;
    color: #1a3768;
    line-height: 1.2;
    font-weight: normal;
    padding: 0 30px;
}

.boton-noticia {
	display: inline-block;  
  margin-top: 15px;
  background-color: #1a3768;
  color: white;
  font-family: 'Helvetica Neue Roman';
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
	text-decoration: none;  
  transition: background-color 0.3s ease;
}

.boton-noticia:hover {
  background-color: #2c4e9b;
	  color: white;
  font-family: 'Helvetica Neue Roman';
  font-size: 12px;
  font-weight: 600;
}


@media (max-width: 1024px) {
	.content-noticias-1 {
  margin-left: 60px;
  width: calc(100% - 60px);
}
	
  .noticia-1 {
    width: 50%;
  }

  .texto-noticia {
    font-size: 13px;
  }

  .boton-noticia {
    font-size: 11px;
    padding: 9px 18px;
  }
}

@media (max-width: 768px) {
  .content-noticias-1 {
    padding: 0 20px;
    justify-content: center;
  margin-left: 55px;
  width: calc(100% - 55px);
}

  .noticia-1 {
    width: 70%;
  }

  .texto-noticia {
    font-size: 13px;
  }

  .boton-noticia {
    font-size: 11px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .content-noticias-1 {
    padding: 0 10px;
	    margin-left: 50px;
  width: calc(100% - 50px);
  }

  .noticia-1 {
    width: 100%;
  }

  .texto-noticia {
    font-size: 12px;
  }

  .boton-noticia {
    font-size: 10px;
    padding: 7px 14px;
  }
}

@media (max-width: 360px) {
	  .content-noticias-1 {
	    margin-left: 45px;
  width: calc(100% - 45px);
  }
	
	
  .noticia-1 {
    padding: 8px;
  }

  .texto-noticia {
    font-size: 11px;
  }

  .boton-noticia {
    font-size: 10px;
    padding: 6px 12px;
  }
}



.content-noticias-2 {
  margin-left: 75px;
  width: calc(100% - 75px);
  display: flex;
  justify-content: center;     
  gap: 40px;                   
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 95px;
}

.noticia-2 {
  flex: 0 0 30%;               
  max-width: 30%;
  background-color: #f5f8fc;
  border-radius: 10px;
  padding: 15px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
	  .content-noticias-2 {
    padding: 0 10px;
	    margin-left: 60px;
  width: calc(100% - 60px);
  }
	
  .noticia-2 {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .content-noticias-2 {
    padding: 0 40px;
    gap: 30px;
  }
}

@media (max-width: 768px) {	
  .content-noticias-2 {
    padding: 0 10px;
	    margin-left: 55px;
  width: calc(100% - 55px);
  }	
  .noticia-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content-noticias-2 {
    padding: 0 30px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .content-noticias-2 {
	margin-left: 50px;
    width: calc(100% - 50px);  
    padding: 0 20px;
  }
  .noticia-2 {
    padding: 12px 10px;
  }
}

@media (max-width: 360px) {
  .content-noticias-2 {
	margin-left: 45px;
    width: calc(100% - 45px);	  
    padding: 0 10px;
    gap: 15px;
  }
  .noticia-2 {
    font-size: 14px;
    padding: 10px 8px;
  }
}

.content-galeria {
  margin-left: 75px;
  width: calc(100% - 75px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 95px;
}

.galeria {
  flex: 1 1 calc(25% - 20px); 
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 12px;
  text-align: center;
}

.galeria img {
  width: auto;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.texto-galeria {
  margin-top: 10px;
  font-family: 'Helvetica Neue Medium';
  font-size: 14px;
  color: #1a3768;
  line-height: 1.2;
  font-weight: normal;
  padding: 0 30px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0em;
}

.boton-galeria {
  display: inline-block;
  margin-top: 15px;
  background-color: #1a3768;
  color: white;
  font-family: 'Helvetica Neue Roman';
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.boton-galeria:hover {
  background-color: #2c4e9b;
  color: white;
  font-family: 'Helvetica Neue Roman';
  font-size: 12px;
  font-weight: 600;
}





.contenido-texto {
  margin-left: 75px; 
  width: calc(100% - 70px); 
  padding: 1px 1px;
  display: flex;
  justify-content: center;
}

.texto-contenido {
  max-width: 75%;
}
@media screen and (max-width: 1024px) {
  .contenido-texto {
    margin-left: 60px;
    width: calc(100% - 60px);
    padding: 10px;
  }

  .texto-contenido {
    max-width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .contenido-texto {
    margin-left: 55px;
    width: calc(100% - 55px);
    padding: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-contenido {
    max-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .contenido-texto {
    margin-left: 50px;
    width: calc(100% - 50px);
    padding: 10px 5px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-contenido {
    max-width: 95%;
  }
}

@media screen and (max-width: 360px) {
  .contenido-texto {
    margin-left: 45px;
    width: calc(100% - 45px);
    padding: 10px 5px;
    flex-direction: column;
    align-items: center;
  }

  .texto-contenido {
    max-width: 100%;
  }
}

.contenedor-imagen {
  margin-left: 75px; 
  width: calc(100% - 75px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 5px;
}
.imagen-contenedor img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1024px) {
  .contenedor-imagen {
    margin-left: 60px;
    width: calc(100% - 60px);
    padding: 10px 10px;
	  justify-content: center;
	   display: flex;
  }
}
@media screen and (max-width: 768px) {
  .contenedor-imagen {
    margin-left: 55px;
    width: calc(100% - 55px);
    padding: 10px 8px;
	  justify-content: center;
	   display: flex;
  }
}


@media screen and (max-width: 480px) {
  .contenedor-imagen {
    margin-left: 50px;
    width: calc(100% - 50px);
    padding: 8px 6px;
	  justify-content: center;
	   display: flex;
  }
}	


@media screen and (max-width: 360px) {
  .contenedor-imagen {
    margin-left: 45px;
    width: calc(100% - 45px);
    padding: 6px 4px;
	  justify-content: center;
	   display: flex;
  }
}

.contenedor-evento {
  margin-left: 75px;
  width: calc(100% - 75px);
  min-height: 100vh;
  display: flex;
  justify-content: center; 
  align-items: center;     
  box-sizing: border-box;
}

.div-imagen {
  width: 100%;
  background-color: #ffffff;
}

.div-imagen img {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sidebar {
    position: relative;
    width: 75px;
    height: auto;
  }

  .area-restante {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    padding: 0px;
  }

  .div-imagen img{
    width: 100%;
	  height: auto;
  }
}

.content-izq {
    margin-left: 75px; 
    width: calc(100% - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-sizing: border-box;
    gap: 20px;
    flex-wrap: wrap; 
}

.imagen-lateral img {
  max-width: 100%;
  height: 265px;
  display: block;
  border-radius: 6px;
  width: 500px; 
}

.texto-lateral {
  max-width: 450px;
}
.texto-lateral h2 {
  font-size: 20px;
  font-family: 'Helvetica Neue Bold';
  color: #1a3768;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .content-izq {
    margin-left: 60px;
	  width: calc(100% - 60px);
    width: 100%;
    flex-direction:column-reverse !important;
    justify-content: center;
    padding: 10px;
	   align-items: center;

  }

  .imagen-lateral img {
    width: 100%;
    height: auto;
    max-width: 450px;
  }
	.texto-lateral {
    text-align: center; 
  }
	.texto-lateral h2 {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .content-izq {
	margin-left: 55px;
	  width: calc(100% - 55px);
    flex-direction: column-reverse !important;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 10px 5px;
	  justify-content: center;
  }

  .texto-lateral {
	  text-align: center;
  }

  .imagen-lateral img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .texto-lateral h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .content-izq {
	  margin-left: 50px;
	  width: calc(100% - 50px);
	  flex-direction: column-reverse !important;
    max-width: 100%;
    padding: 0 5px;
	  text-align: center;
  }

.texto-lateral {
	  text-align: center;
  }	
	
  .imagen-lateral img {
    max-width: 100%;
    height: auto;
  }

  .texto-lateral h2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
  .content-izq {
	  margin-left: 45px;
	   width: calc(100% - 45px);
	  flex-direction: column-reverse !important;
    padding: 5px 1px;
    gap: 15px;
  }

	.texto-lateral {
	  text-align: center;
  }	
	
  .texto-lateral h2 {
    font-size: 15px;
  }

  .imagen-lateral img {
    max-width: 100%;
    height: auto;
  }
}

.content-der {
  margin-left: 75px; 
  width: calc(100% - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
  gap: 20px;
  flex-wrap: wrap; 
}

.texto-lateral {
  max-width: 450px;
}

.imagen-lateral img {
  max-width: 100%;
  height: 265px;
  display: block;
  border-radius: 6px;
  width: 500px; 
}

.texto-lateral h2 {
  font-size: 20px;
  font-family: 'Helvetica Neue Bold';
  color: #1a3768;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 1024px) {
  .content-der {
    margin-left: 60px;
	  width: calc(100% - 60px);
    width: 100%;
    flex-direction:column;
    justify-content: center;
    padding: 10px;
	   align-items: center;

  }

  .imagen-lateral img {
    width: 100%;
    height: auto;
    max-width: 450px;
  }
	.texto-lateral {
    text-align: center; 
  }
	.texto-lateral h2 {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .content-der {
	margin-left: 55px;
	  width: calc(100% - 55px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 10px 5px;
	  justify-content: center;
  }

  .texto-lateral {
	  text-align: center;
  }

  .imagen-lateral img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }

  .texto-lateral h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .content-der {
	  margin-left: 50px;
	  width: calc(100% - 50px);
	  flex-direction: column;
    max-width: 100%;
    padding: 0 5px;
	  text-align: center;
  }

.texto-lateral {
	  text-align: center;
  }	
	
  .imagen-lateral img {
    max-width: 100%;
    height: auto;
  }

  .texto-lateral h2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 360px) {
  .content-der {
	  margin-left: 45px;
	   width: calc(100% - 45px);
	  flex-direction: column;
    padding: 5px 1px;
    gap: 15px;
  }

	.texto-lateral {
	  text-align: center;
  }	
	
  .texto-lateral h2 {
    font-size: 15px;
  }

  .imagen-lateral img {
    max-width: 100%;
    height: auto;
  }
}


.content-images-app {
  margin-left: 75px;
  width: calc(100% - 75px);
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

.content-images-app img {
  width: 220px; 
  height: auto;
  object-fit: cover;
	justify-content: center;
} 


@media (max-width: 1024px) {
  .content-images-app {
    margin-left: 60px;
    width: calc(100% - 60px);
    gap: 20px;
  }

  .content-images-app img {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .content-images-app {
    margin-left: 55px;
    width: calc(100% - 55px);
    gap: 15px;
  }

  .content-images-app img {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .content-images-app {
    margin-left: 50px;
    width: calc(100% - 50px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .content-images-app img {
    width: 70%;
    max-width: 240px;
  }
}

@media (max-width: 360px) {
  .content-images-app {
    margin-left: 45px;
    width: calc(100% - 45px);
  }

  .content-images-app img {
    width: 80%;
    max-width: 220px;
  }
}



.contenedor-boton {
  margin-left: 75px;  
  width: calc(100% - 75px);
  display: flex;
  justify-content: center; 
  align-items: center;
  height: auto;
  box-sizing: border-box;
}

.contenedor-boton button {
  height: 50px;
  padding: 0 30px; 
  font-size: 16px; 
  font-family: 'Helvetica Neue Medium';
  font-weight: 500;	
  color: #ffffff;
  background-color: #1a3786;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.1px; 
}

.contenedor-boton button:hover {
  background-color: #fcb525;
  border: none;
  border-radius: 8px;	
}

@media (max-width: 1024px) {
  .contenedor-boton {
    margin-left: 60px;
    width: calc(100% - 60px);
  }

  .contenedor-boton button {
    font-size: 15px;
    padding: 0 25px;
  }
}


@media (max-width: 768px) {
  .contenedor-boton {
    margin-left: 55px;
    width: calc(100% - 55px);
  }

  .contenedor-boton button {
    font-size: 14px;
    padding: 0 20px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .contenedor-boton {
    margin-left: 50px;
    width: calc(100% - 50px);
  }

  .contenedor-boton button {
    font-size: 13px;
    padding: 0 15px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .contenedor-boton {
    margin-left: 45px;
    width: calc(100% - 45px);
  }

  .contenedor-boton button {
    font-size: 12px;
    padding: 0 10px;
    height: 38px;
  }
}



.activate-boton {
  margin-left: 75px;
  width: calc(100% - 75px);
  display: flex;
  justify-content: center; 
  align-items: center;
  height: auto;
  box-sizing: border-box;
}

.activate-boton button {
	width: auto;  
   height: auto;
  padding: 10px 30px; 
  font-size: 24px;
  font-family: 'Helvetica Neue';
  font-weight: 500;	
  color: #ffffff;
  background-color: #1a3786; 
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.1px; 
  text-align: center;   	
}

.activate-boton button:hover {
  background-color: #fcb525;
  border: none;
  border-radius: 8px;	
}

@media (max-width: 1024px) {
  .activate-boton {
    margin-left: 50px;
    width: calc(100% - 50px);
  }
  .activate-boton button {
    max-width: 90%;  
    font-size: 22px;
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {
  .activate-boton {
    margin-left: 50px;
    width: calc(100% - 50px);
  }
  .activate-boton button {
	max-width: 90%;  
    font-size: 20px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .activate-boton {
    margin-left: 50px;
    width: calc(100% - 50px);
  }
  .activate-boton button {
    max-width: 90%;  
    font-size: 18px;
    padding: 8px 16px;
    white-space: normal; 
  }
}

@media (max-width: 360px) {
  .activate-boton {
    margin-left: 50px;
    width: calc(100% - 50px);
  }
  .activate-boton button {
    max-width: 90%;  
    font-size: 16px;
    padding: 6px 12px;
    line-height: 1.3;
  }
}



.content-video {
  margin-left: 75px; 
  width: calc(100% - 75px);
  display: flex;
  justify-content: center; 
  align-items: center;
  height: auto; 
	margin-top: 0px;
	padding: 0px 10px;
	border-radius: 8px;
}

.content-video2 {
  margin-left: 75px; 
  width: calc(100% - 75px);
  display: flex;
  justify-content: center; 
  align-items: center;
  height: auto; 
	margin-top: 0px;
	padding: 0px 10px;
	border-radius: 8px;
}



.video-container {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
	padding: 0px 10px;
}

.video-container video {
  width: 60%;
  height: auto;
  display: block;
}

.video-container2 video {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .content-video {
  margin-left: 60px; 
  width: calc(100% - 60px);
  }
  .video-container {
    width: 60%;
  }
}

@media (max-width: 1024px) {
  .content-video2 {
  margin-left: 60px; 
  width: calc(100% - 60px);
  }
  .video-container2 {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .content-video {
  margin-left: 55; 
  width: calc(100% - 55px);
  }
  .video-container {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .content-video {
  margin-left: 50px; 
  width: calc(100% - 50px);
    height: auto;
    margin-top: 20px;
  }
  .video-container {
    width: 90%;
  }
}


@media (max-width: 360px) {
  .content-video {
  margin-left: 45px; 
  width: calc(100% - 45px);
    margin-top: 15px;
  }
  .video-container {
    width: 95%;
  }
}

.contenedor-dos-imagenes {
  margin-left: 75px; 
  width: calc(100% - 75px);
  display: flex;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
  padding: 20px 0; 
}

.bloque-imagen {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  width: 450px; 
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.bloque-imagen img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin-bottom: 10px;
}

.pie {
  font-size: 14px;
  color: #555;
  text-align: center;
}


@media (max-width: 1024px) {
  .contenedor-dos-imagenes {
    justify-content: space-around;
    gap: 16px;
	 margin-left: 60px; 
     width: calc(100% - 60px);
  }

  .bloque-imagen {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .contenedor-dos-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
	  margin-left: 55px; 
     width: calc(100% - 55px);
  }

  .bloque-imagen {
    width: 90%;
  }
}

@media (max-width: 480px) {
	.contenedor-dos-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
	  margin-left: 50px; 
     width: calc(100% - 50px);
  }
	
  .bloque-imagen {
    width: 95%;
  }

  .pie {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
	.contenedor-dos-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
	  margin-left: 45px; 
     width: calc(100% - 45px);
  }
	
  .bloque-imagen {
    width: 100%;
    padding: 8px;
  }

  .pie {
    font-size: 12px;
  }
}



.content-contacto{
  width: 80%;
  max-width: 1000px;
  height: auto;
     margin: 0 auto; 
     position: relative; 
     display: flex; 
     flex-direction: row; 
	 }

.contactdiv{
    width: 50%;
	  box-sizing: border-box;
        }
 .mano-mail{
    width: 100%;
        }

 .formdiv{
    width: 50%;
	text-align: left;
    }
   
    .conttel div {
    left: 32px;
}
 
  .titform{
     width: 50%;
     margin: 0px auto;
     position: relative;
     display: block;
        }

   h1{
    font-family: 'Helvetica Neue Bold';
    font-size: 28px;
    color: #1D3A38;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
   margin: 20px auto;

        }
    .formdiv input[type="submit"]{
        color: #ffffff;
		width: 25%;
	background-color: #005796;
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Helvetica Neue Medium';
		text-align: center;
    font-size: 15px;
    margin: 20px 30px;
    transition: background-color 0.3s ease;
}

.formdiv input[type="submit"]:hover {
    background-color: #1D3A68;
	font-family: 'Helvetica Neue Medium';
    font-weight: 600;
    text-align: center;
    font-size: 15px;
    transition: background-color 0.3s ease;

}	

 .formdiv input[type="submit"]:hover {
  background-color: #fcb525;
}
    
    .contenido input{
        width: 70% !important;
    }

    .iti--allow-dropdown{
        width: 80% !important;
    }
    #phone{
        margin-right:100px !important;
    }
    

   form label{
     display: block;
     margin: 10px 0px 3px 30px;
     color: #1a3768;
	 font-family: 'Helvetica Neue Medium';
	 font-weight: 600;
	 font-size: 16px;


        }
   form input{
     display: block;
     color: gray;
     margin: 5px 30px;
     padding: 6px 10px;
     border-radius: 10px;
	 border: 2px solid #ccc;
	 width: 60%;
        }

   form textarea{
     display: block;
     color: gray;
     margin: 5px 30px;
     width: 70%;
     height: 120px;			
     padding: 0 10px;
	 border: 2px solid #ccc;
       }

@media screen and (max-width: 1024px) {
  .content-contacto {
    flex-direction: column;
    align-items: center;
	    margin-left: 60px;
         width: calc(100% - 60px);
  }

  .contactdiv, .formdiv {
    width: 90%;
    float: none;
  }

  .formdiv input[type="submit"] {
    width: 50%;
    margin: 20px auto;
    display: block;
  }

  form input, form textarea {
    width: 80%;
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
	  .content-contacto {
	    margin-left: 55px;
         width: calc(100% - 55px);		  
  }
	  .contactdiv, .formdiv {
    width: 90%;
    float: none;
  }
	
  .formdiv input[type="submit"] {
    width: 60%;
  }

  form input, form textarea {
    width: 85%;
  }
}

@media screen and (max-width: 480px) {
  .content-contacto {
	    margin-left: 50px;
         width: calc(100% - 50px);
  }	
	  .contactdiv, .formdiv {
    width: 90%;
    float: none;
  }
	
  .titform {
    width: 80%;
  }
	

  .formdiv input[type="submit"] {
    width: 90%;
  }

  form input, form textarea {
    width: 90%;
    margin-left: 20px;
  }
}

@media screen and (max-width: 360px) {
   .content-contacto {
	    margin-left: 45px;
         width: calc(100% - 45px);
  }	
	
	  .contactdiv, .formdiv {
    width: 80%;
    float: none;
  }
	
  .formdiv input[type="submit"] {
    width: 80%;
  }

  form input, form textarea {
    width: 80%;
    margin-left: 15px;
  }
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;	
  align-items: center;
  gap: 8px;
  z-index: 1000;
}

.whatsapp-float{
  background-color: #33d951;	
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;

}

.whatsapp-float img {
	width: 70%;
	height: 70%;
	margin-left: 3px;
	margin-bottom: 2px;
	
}

.whatsapp-label {
  background-color: #33d951;
  color: #fff;
  font-family: 'Helvetica Neue Medium';
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	
}

.main-footer {
  height: 171px;
  width: 100%;
  padding-left: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 150px;
  background-color: #1a3768;
  box-sizing: border-box;
  gap: 20px;
   flex: 1;
}

.footer-left {
  width: 30%;
 }

.texto-footer-left{
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  text-align: left;
	font-family: 'Helvetica Neue Roman';
	line-height: 1.3; 
  letter-spacing: 0.05em; 
 -webkit-font-smoothing: antialiased;
     text-decoration: none;	
	
}

.footer-left-link{
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  text-align: left;
	font-family: 'Helvetica Neue Roman';
	line-height: 1.3; 
  letter-spacing: 0.05em;
 -webkit-font-smoothing: antialiased;
  text-decoration: none;	
		
}

.footer-left-link:hover{
   color: #fcb525;
     text-decoration: none;	
}

.footer-center {
  width: 40%;
  display: flex;
  justify-content: center;
	align-items: center;
}

.footer-center img {
  max-height: 120px;
  width: auto;
}

.footer-right {
  width: 30%;
}

.texto-footer-right {
  font-size: 16px;
  color: #ffffff;
  font-style: normal;
  text-align: center;
  font-family: 'Helvetica Neue Roman';
  font-weight: 500;
	line-height: 1.5; 
  letter-spacing: -0.01em; 
 -webkit-font-smoothing: antialiased;
  text-decoration: none;	
	 
}

.footer-right-link{
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
	font-family: 'Helvetica Neue Roman';
	line-height: 1.3; 
  letter-spacing: 0.05em; 
 -webkit-font-smoothing: antialiased;
  text-decoration: none;	
		
}

.footer-right-link:hover{
   color: #fcb525;
   text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: auto;
	  gap: 20px;
  }

  .footer-center,
  .footer-left,
  .footer-right {
    width: 100%;
    margin-bottom: 20px;
  }
	
  .footer-center {
    order: 1 !important;
  }

  .footer-left {
    order: 2 !important;
	  text-align: center;
	  font-size: 16px;
  }

  .footer-right {
    order: 3!important;
	  text-align: center;
	  font-size: 16px;
  }

  .texto-footer-left,
  .footer-left-link,
  .texto-footer-right,
  .footer-right-link {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: auto;
	  gap: 20px;
  }

  .footer-center,
  .footer-left,
  .footer-right {
    width: 100%;
    margin-bottom: 20px;
  }
	
  .footer-center {
    order: 1 !important;
  }

  .footer-left {
    order: 2 !important;
	  text-align: center;
	  font-size: 14px;
	      margin-left: 55px;
	    width: calc(100% - 55px);
  }

  .footer-right {
    order: 3!important;
	  text-align: center;
	  font-size: 14px;
  }


  .texto-footer-left,
  .footer-left-link,
  .texto-footer-right,
  .footer-right-link {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
    padding: 15px;
    height: auto;
	  gap: 15px;
  }

  .footer-center,
  .footer-left,
  .footer-right {
    width: 100%;
    margin-bottom: 15px;
  }

  .footer-center {
    order: 1 !important;
  }

  .footer-left {
    order: 2 !important;
	  text-align: center;
	  font-size: 13px;
	  	  margin-left: 50px;
	    width: calc(100% - 50px);
  }

  .footer-right {
    order: 3!important;
	  text-align: center;
	  font-size: 13px;
  }
	
	
  .texto-footer-left,
  .footer-left-link,
  .texto-footer-right,
  .footer-right-link {
    text-align: center;
  }
}

@media screen and (max-width: 360px) {
  .main-footer {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: auto;
	  gap: 10px;
  }

  .footer-center,
  .footer-left,
  .footer-right {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-center {
    order: 1 !important;
  }

  .footer-left {
    order: 2 !important;
	  text-align: center;
	  font-size: 13px;
	  	 margin-left: 45px;
	    width: calc(100% - 45px);
	  
  }

  .footer-right {
    order: 3!important;
	  text-align: center;
	  font-size: 13px;
  }
	
	
  .texto-footer-left,
  .footer-left-link,
  .texto-footer-right,
  .footer-right-link {
    text-align: center;
  }

  .contenedor-imagen2 {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente si tiene altura definida */
  }

  .imagen-contenedor69 img {
    width: 50%;
    height: auto;
  }


}

    .recuadro {
            background-color: rgba (201,201,201,0.3);
            color: white;
            padding: 20px;
            border-radius: 30px;
            max-width: 720px;
            margin: 20px auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
		

.recuadro {
            background-color: rgba (201,201,201,0.3);
            color: white;
            padding: 20px;
            border-radius: 30px;
            max-width: 720px;
            margin: 20px auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
		

.recuadro:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(52, 152, 219, 0.8),
                        0 0 40px rgba(227, 227, 227, 0.6),
                        0 8px 16px rgba(0, 0, 0, 0.2);
        }
		
.textoblog{
	 font-family: Arial, sans-serif;
            padding: 30px;
            background-color: #E3E3E3;
			color:#2ecc71
}