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

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
	font-family: 'Roboto', sans-serif;
}

header{
	height: 10%;
}

.logo-image{
	height: 60px;
}

section{
	height: 90%;
}
.row, .container-fluid, .container, .logo-image, .navbar, .navbar-brand {
	height: 100%;
}

.wrapper{
    padding: 5%;
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: #cd003a;
}

.itemc {
    position: relative;
     padding: 0.2%; 
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.itemc-img {
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all 0.3s ease-in-out 0s;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    z-index: 0;
    transform-origin: center center;
    object-position: center center;
    height: 100%;
    width: 100%;
    filter: saturate(0%);
    transform: scale(1.3);
    opacity: 15%;
}


/*.itemc:hover  .itemc-img{
	transform: scale(1.1);
    filter: saturate(100%);
    z-index: 100;
    opacity: 100%;
}
*/
.itemc-img_h{
	transform: scale(1.5);
    filter: saturate(100%);
    z-index: 100;
    opacity: 100%;
}


.textb{
    position: absolute;
    right: 0%;
    top: 40%;
    z-index: 5000;
    color: white;
    font-size: 2.5rem;
    transition: all 0.2s ease-in-out 0s;
    padding: 1em 2em;
    background: transparent; 
    background: linear-gradient(to right, transparent 50%, #cd003aEE 50%) left;
    background-size: 200%;
    
}


/*.itemc:hover  .textb{
	background-position: right;
}*/

.itemc_h{
	background-position: right;
}



.textb_r{
    position: absolute;
    left: 0%;
    top: 40%;
    z-index: 5000;
    color: white;
    font-size: 2.5rem;
    transition: all 0.2s ease-in-out 0s;
    /*display: inline-block;*/
    padding: 1em 2em;
    background: transparent; /* default color */
    /* "to left" / "to right" - affects initial color */
    background: linear-gradient(to left, transparent 50%, #cd003aEE 50%) right;
    background-size: 200%;
}

/*.itemc:hover  .textb_r{
	background-position: left;
}*/

.itemc_hri{
	background-position: left;
}


.nav-link {
    color: #000000;
}

.nav-link:focus, .nav-link:hover {
    color: #cd003a;
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgba(0,0,0,.1);
}



@media only screen and (max-width: 768px) {
  .itemc {
	    height: 50%;

	}

	header{
	height: initial;
	position: fixed;
	top: 0;
	background-color: white;
	width: 100%;
	z-index: 10000000;
	}



	section{
		height: 100%;
		padding-top: 15%;
	}
}