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

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&display=swap');


body{
	font-family: 'Comfortaa', cursive;
	overflow-x: hidden;
	min-height: 100%;	
	font-size: 1.1em !important;
}




/* ------ SMOOTH SCROLLING ------ */
html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* ------ UP ARROW ------ */
.ir-arriba {
	padding:10px;
	display:inline-block;
	background-color: rgba(18, 76, 184, 1);
	color:#fff;
	position: fixed;
	font-size:20px;
	bottom:20px;
	left:20px;
	display:none;
	cursor:pointer;
	 border-radius: 50%;
	z-index:99999999;
}


/* ------ MISC ------ */
.img-100{
	width: 100%;
	height: auto;
}

.link-btn{
	padding: 10px 20px;
    color: #fff;
    background: #F2161D;
    border-radius: 5px;
    border: 1px solid #F2161D;
    display: inline-block;
    text-decoration: none;
}

.link-btn:hover {
    background-color: #fff;
    color: #F2161D;
	transition: 1s;
}





/* ------ TOPBAR ------ */
.topbar{
	background-color: #fff;
}

.topbar .navbar-brand img{
	width: 200px;
	height: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ;
	padding: 10px;
}

.scrolled.topbar .navbar-brand img{
	width: 80px;
	height: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}


/* ------ NAVBAR ------ */
.navbar {
	z-index: 99999 !important;
	background-color: #74AEBE ;
}

.navbar .navbar-brand{
	float: none !important;
}

.scrolled{
	background-color: #c8e6ee ;
  	transition: 0.5s;
	-webkit-box-shadow: 0px 10px 5px -8px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 10px 5px -8px rgba(0,0,0,0.75);
	box-shadow: 0px 10px 5px -8px rgba(0,0,0,0.75);
	
}



.nav-link {
    display:inline !important; 
	color: #ffffff !important ;
	font-weight: 700 !important;
    
}

.nav-link:hover {
	color: #1E3E45 !important;
    
}


.navbar-toggle .icon-bar{
	border-color: #ffffff;
	background-color: #ffffff;
}

.dropdown-item {
    color: #ffffff !important ;
}


.dropdown-item:focus, .dropdown-item:hover {
    color: #124CB8 !important;
    background-color: #ffffff !important ;
}

.navbar-nav .dropdown-menu {
    background-color: #124CB8 !important;
}

.dropdown-menu .product-link{
	color: #1E3E45 !important;
	font-weight: 700 !important;
}


@media (max-width: 767px) {
	.navbar{
	 	background: rgba(33,41,99,0.8);
	}
	
	.navbar .navbar-brand img{
		width: 80px;
		height: auto;
		padding-left: 20px;
	}
	
	.scrolled.navbar .navbar-brand img{
		width: 80px;
		height: auto;
		padding-left: 20px;
	}
}

/* ------ CONTENT ------ */

.banner-inicio{
	width: 100%;
	height: auto;
	margin-top: 250px;
}

.content{
	padding: 40px 10px;
}

.content h1{
	color: #1E3E45;
	font-weight: 700;
	text-align: center;
	font-size: 1.8em !important;
}

.content h2{
	color: #74AEBE;
	font-weight: 700;
	text-align: center;
	font-size: 1.3em !important;
}


.content p{
	text-align: justify;
}

/* ------ QUIENES SOMOS ------ */
.quienes-somos{
	padding: 40px 10px;
	background-color: #74AEBE ;
	color: #ffffff;
	text-align: center;
}

.column-container {
	display: flex;
	flex-wrap: wrap;
}
  
.column {
	flex: 1;
	margin-right: 10px;
	margin-bottom: 10px;
}
  
.column:last-child {
	margin-right: 0;
}

.icon-size{
	width: 70% !important;
	height: auto;
	padding: 20px;
	margin: 0 auto;
	display: block;
}
  
@media (max-width: 767px) {
	.container {
	  display: block;
	}
  
	.column {
	  flex: none;
	  width: 100%;
	}
  }
  
  /* ------ MISION VISION VALORES -----*/

.parent {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	color: #ffffff;
	width: 100%;
	}
	
.parent h2{
	font-weight: 700 !important;
	margin-bottom: 20px;
}

.div1 { 
	grid-area: 1 / 1 / 2 / 2; 
	background-color: #33627E;
	padding: 50px;
}

.div2 { 
	grid-area: 2 / 1 / 3 / 2;
	background-color: #507D8A;
	padding: 50px;
}

.div3 { 
	grid-area: 1 / 2 / 3 / 3; 
	background-color: #1E3E45;
	padding: 50px;
}


/* ------ EJES ESTRATEGICOS ------ */
.ejes-estrategicos{
	padding: 40px 10px;
}

.ejes-estrategicos h2{
	color: #1E3E45;
	font-weight: 700;
	text-align: center;
	font-size: 1.8em !important;
	margin-bottom: 40px;
}

.icon-img{
	width: 70% !important;
	height: auto;
	padding: 20px;
	margin: 0 auto;
	display: block;
}

.card-title{
	color: #74AEBE;
	font-weight: 700;
	text-align: center;
	font-size: 1.3em !important;
}


.card-text{
	text-align: justify;
	color: #1E3E45;
}

.card {
    border: 1px solid #74AEBE !important;
}

/* ------ COMPLIANCE SINDICAL ------ */
.compliance{
	padding: 40px 10px;
}



.compliance h2{
	color: #1E3E45;
	font-weight: 700;
	text-align: center;
	font-size: 1.8em !important;
	margin-bottom: 40px;
}

.compliance p{
	text-align: justify;
	color: #1E3E45;
}




/* ------ RESPONSABILIDAD SOCIAL ------ */
.responsabilidad-social{
    padding: 150px 10px;
    color: #EFEEF0;
    text-align: center;
    background-image: url(../../imagenes/background-responsabilidad-social.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.color-box{
	padding: 40px;
	background: rgba(30, 62, 69, 0.9);
}

.color-box .icon-size{
	width: 100px !important;
	height: auto;
}


/* ------ AFILIATE ------ */
.afiliate{
	padding: 80px 10px;
	background-color: #74AEBE ;
	color: #EFEEF0;
	text-align: center;
}

.afiliate h6{
	font-size: 1.8em !important;
}


/* ------ CONTACT FORM ------ */


.contact-content a{
	display:inline-block;
	cursor:pointer;
	color:#000000;
	font-size:24px;
	padding:10px;
	text-align: center;
	font-weight: 400;
}

.contact-content a:hover{
	color: #ff9f00;
}

.contact-form form ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-form form li{
	font-weight: normal !important;
	font-size: 14px;
}


.contact-form form input, form textarea{
    display: inline-block;
    background: none;
    border: none;
    border-bottom: 1px solid #ffffff;
    width: 100%;
    outline: none;
    padding: 8px 15px 8px 0px;
    color: #ffffff;
    margin-bottom: .5em;
}

.contact-form form select{
    border-bottom: 1px solid #ffffff !important;
    outline: none;
    padding: 8px 15px 8px 0px;
    color: #ffffff;
    margin-bottom: .5em;
}


.contact-form form .asterisk{
	color: #ffffff !important;
}

.contact-form form .required-text{
	font-size: 9px !important;
}

.contact-form form .form-button{
	border: 1px solid #1E3E45;
	background-color:#1E3E45 !important;
	color: white;
	padding: 10px 40px;
	text-decoration: none;
	margin-top: 30px;
}



.contact-form form .form-button:hover{
	background-color: #fff;
    color: #74AEBE;
	transition: 1s;
}




/* ------ FOOTER ------ */
.footer{
	padding: 40px 10px;
	background-color: #1E3E45;
	border-top: #74AEBE solid 5px;
}

.footer a{
	color: #ffffff;
	text-decoration: none;
	
}

.footer .info .slogan{
	color: #ffffff;
	font-size: 0.8em;
}

.footer .info .copyright{
	color: #ffffff;
	font-size: 0.6em;
}

.footer .footer-logo{
	width: 150px;
	margin-bottom: 20px;
}

.footer .links .subtittles{
	color: #ffffff;
}

.footer .footer-links li{
	color: #ffffff;
	font-size: 0.8em;
}




.footer .adress-subtittles{
	text-align: right;
	color: #ffffff;
}

.footer .footer-address{
	text-align: right;
	color: #ffffff;
}


