
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-galeria {
    display: flex;
    max-width: 100vw;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.gallery__img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    object-position: center;
    padding: 6px;
    box-shadow: 3px 3px 4px #8db6f3;
}


/* gallery
---------------------------------*/

/*
section {
    display: flex;
    width: 900px;
    height: 430px;
    
}

section img {
    width: 0px;
    flex-grow: 1;
    object-fit: cover;
    box-shadow: 3px 3px 4px #8db6f3;
    opacity: .9;
    transition: .5s ease;
}

section img:hover {
    cursor: -webkit-zoom-in;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
}
*/

.gallery__img {
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.5s;
}

.gallery__img:hover {
    transform: scale(1.05);
}

.gallery__img--big {
    height: 400px;
}

.gallery__img--small {
    height: 200px;
}

.modal {
    width: 100%;
    min-height: 100vh;
    background: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
}

.modal__content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.modal__img {
    width: 100%;
}

.modal__boton {
    position: absolute;
    top: 10px;
    right: 10px;
    color:#5193c9e7;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size:20px;
    text-align: center;

}

.modal__boton:hover {
	text-decoration: none;
	color: #2413c0ce;
}

.modal--open {
    display: block;
}







/* CV
---------------------------------*/

#content {
    position: relative;
    width: 100%;
    height: 100%;
}

#content_page {
    line-height: 150%;
}

.content_wrapper {
    margin: 0 auto;
}

/* Header 
----------------------------------------------*/
.header {
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, 0.574);
	z-index: 50;
	border-radius: 0;
	top: 0px;
    padding: 15px 0px;
    border-bottom: 1px solid transparent
}
.navbar-inverse .navbar-toggle {
	border-color: #611081;
	background-color: #611081;
}
.header .navbar {
	margin: 0;
	background: transparent !important;
}
.navbar-inverse .navbar-toggle .icon-bar {
/*background-color: #5887FF;*/
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
	background: #611081;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	color: #fff;
}
.navbar-inverse .navbar-toggle:hover .icon-bar {
	background: #fff;
}

.navbar-inverse .navbar-nav > li > a {
	color: #fff;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	color: #FFFFFF;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
	color: #611081;
	background: none;
}
.navbar-toggle {
}



/* Header Styles
---------------------------------*/
/*
#header_wrapper {
    background: transparent;
    padding: 15px 0px;
    border-bottom: 1px solid transparent;
}

.header_box {
    position: relative;
}

.logo {
    float: left;
    margin-top: 8px;
	position: relative;
	z-index: 2;
}

.res-nav_click {
    display: none;
}
*/	


/* Nav Styles
---------------------------------*/

#main-nav {
    width: 100%;
    text-align: center;
    border-color: #EAEAEA;
}
.navbar-inverse {
    background-color: transparent;
    border-color: transparent;
}

.navbar {
    min-height: 40px;
    margin-bottom: 0px;
    text-align: center;
}

.navbar-inverse .navbar-nav > li > a {
    color: #777777;
}



.navStyle {
    float: right;
}

.navStyle ul {
    list-style: none;
    padding: 0px;
    float: initial;
    text-align: center;
    margin: 0 auto;
}

.navStyle ul li {
    display: inline-block;
    margin: 0 5px;
    float: initial;
}


.navStyle ul li:last-child {
    margin: 0 0 0 23px;
}

.navStyle ul li a {
    display: block;
    font-size: 14px;
    color: #222222;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.navStyle ul li a:hover {
    color: #ED5441;
}

.navStyle > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    color: #ED5441;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #ca1efe;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #CA1EFE;
    background-color: transparent;
}

.navStyle > li.active > a,
.navStyle > li.active > a:hover {
    text-decoration: none;
    color: #ED5441;
    background-color: transparent;
}




