/* INICIO DEL HEADER */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
}

header {
    width: 100%;
    height: 60px;
    margin-top: 20px;
    position: absolute;
    z-index: 1;
}

.container__menu {
    max-width: 1200px;
    height: 60px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
}

.menu {
    display: flex;
    justify-content: space-around;
}

.menu ul {
    display: flex;
    margin-left: 12%;
}

.menu ul li {
    list-style: none;
    margin-left: 16px;
}

.menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #000000;
    background: #a5b0e6;
    padding: 6px 20px;
    border-radius: 10px;
    border: 4px solid rgb(39, 28, 112);
    cursor: pointer;
    box-shadow: 1px 1px 30px -12px #21108d;
    transition: all 300ms;
    text-transform: uppercase;
    
}
.menu ul li a:hover{
    background-color: rgb(6, 9, 50);
    color: white;
}
/* FIN DEL HEADER */

/* INICIO DEL MAIN */

/*Cards*/
.container-card{
	width: 100%;
	display: flex;
	max-width: 1200px;
	margin: auto;
}
.title-cards{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	color: #585858;
	border-bottom: 2px solid #040431;
}
.card{
	width: 100%;
	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#fff;
	box-shadow: 1px 5px 10px rgba(0,0,0,0.4);
	transition: all 400ms ease-out;
	cursor: default;
}
.card:hover{
	box-shadow: 10px 15px 30px rgba(0,0,0,0.8);
	transform: translateY(-3%);
}
.card img{
	width: 360px;
	height: 300px;
}
.card .contenido-card{
	padding: 15px;
	text-align: center;
}
.card .contenido-card h3{
	margin-bottom: 15px;
	color: #040431;
}
.card .contenido-card p{
	line-height: 2.8;
	color: #292828;
	font-size: 14px;
	margin-bottom: 5px;
}
.card .contenido-card a{
	display: inline-block;
	padding: 10px;
	margin-top: 10px;
	text-decoration: none;
	color: #092d56;
	border: 1px solid #092d56;
	border-radius: 4px;
	transition: all 400ms ease;
	margin-bottom: 5px;
}
.card .contenido-card a:hover{
	background: #092d56;
	color: #fff;
}
@media only screen and (min-width:320px) and (max-width:768px){
	.container-card{
		flex-wrap: wrap;
	}
	.card{
		margin: 15px;
	}
}
/*Fin-Cards*/
