body {
  font-family: 'Ropa Sans', sans-serif;
  background-color: #FFFFFF;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  min-height: 100vh;  
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

/* FIXED CONTAINER LEFT */


.fixedContainer {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(14, 24, 94); 
  max-width: 100%;
  width: 250px;
  height: 100vh;
  color: #fff;
  padding: 0px 0px 0px 15px;
  margin-right: 50px;
  z-index: 2;
}

.fixedContainerMobile {
  display: none;
}

.fixedContainer a {
  text-decoration: none;
  color:#fff;
}

.blockLinks {  
  margin: 0 20px 20px; 
  font-size: 1.5rem;
  font-weight: 200; 
}

.blockLinks div {
  margin-top: 10px;
}

.myName {
  font-size: 2rem;
}

.phoneAndMail {
  font-size: 1rem;
  font-weight: 200;
}

.myCV p:hover {
  -moz-transform: translate(5%, 0);
  -webkit-transform: translate(5%, 0);
  transform: translate(5%, 0);
}

.logoLinkedIn img {
  margin: 15px auto;
  width: 25px; 
}

.logoLinkedIn img:hover {
  -moz-transform: translate(50%, 0); 
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

.portretMine {
  width: 100%;
  height: auto;
  margin: 30px 0 50px 
}

/* SQUARES */

.homePage { 
  display: -webkit-flex;   
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;  
  margin: 20px -10px 20px 310px;  
  padding-right: 50px;
  -webkit-justify-content: left;  
  justify-content: left;
}

.homePageContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 900px;
  max-width: 100%;
  height: auto;  
  -webkit-justify-content: left;    
  justify-content: left;  
  position: relative;
} 

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.cell {
  -webkit-flex-basis: 180px;
  flex-basis: 180px;
  -webkit-text-align: center;
  text-align: center;  
  color: #fff;
  width: 100%;
  height: 180px;
  padding: 0px;  
  overflow: hidden;
  --angle: 0deg;
  border: 1px solid;
  -moz-border-image: linear-gradient(var(--angle), rgba(153, 149, 148, 1), rgba(99, 96, 95, 0.1) ) 1;
  -webkit-border-image: linear-gradient(var(--angle), rgba(153, 149, 148, 1), rgba(99, 96, 95, 0.1) ) 1;
  border-image: linear-gradient(var(--angle), rgba(153, 149, 148, 1), rgba(99, 96, 95, 0.1) ) 1;
  -moz-animation: 5s borderRotate linear infinite;
  -webkit-animation: 5s borderRotate linear infinite;
  animation: 5 borderRotate linear infinite;
}

@-moz-keyframes borderRotate {
  to {
    --angle: 360deg;
  }
}

@-webkit-keyframes borderRotate {
  to {
    --angle: 360deg;
  }
}

@keyframes borderRotate {
  to {
    --angle: 360deg;
  }
}

.cell img {
  width: 100%;
  height: auto;
}

.lifeStyle {
  background-color: rgb(14, 24, 94);
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  text-align: center; 
  padding-top: 10px;
}

.lifeStyle:before {
  display: block;
  content: "";
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: 1;   
}

.lifeStyle:after {
  font-size: 18px;
  color: #fff; 
  content: attr(alt);
  display: block;
  opacity: 1;
  text-transform: none;
  -moz-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -moz-transform: scale(1.3) translateY(-90%);
  -webkit-transform: scale(1.3) translateY(-90%);
  transform: scale(1.3) translateY(-90%);
  width: 100%;
  height: 150%; 
  position: absolute;
  padding-top: 5px;
}

.lifeStyle:after {
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
 }
 
.lifeStyle:hover:before {
 opacity: 0;
}

.lifeStyle:hover:after,
.lifeStyle:focus:after {
  opacity: 1; 
  -moz-transform: scale(1) translateY(-50%);
  -webkit-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
  color:rgb(14, 24, 94);
  background-color: rgb(255, 255, 255);
}

.mobileEmail {
  display: none;
}

.contactme {
  background-color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color:rgb(14, 24, 94);
  text-align: center;   
  opacity: 1;
  text-transform: none;
  height: auto; 
  line-height: 25px;
  font-size: 1em;
  padding-top: 30px;
}

.contactme p {
  font-size: 1em;
  margin: 0;
}

.contactme:after {
  content: '';
  position: absolute;
  filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;   
  margin: 0;
  mix-blend-mode: screen;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 1em, #BFE2FF 1em, rgb(14, 24, 94) 90%), repeating-linear-gradient(45deg, rgb(14, 24, 94), rgb(18, 20, 34), #FFF 0.5em, #414346 10%);
  background-size: 50%;
  -moz-animation: spanContactMeChanges 1s linear infinite alternate;
  -webkit-animation: spanContactMeChanges 1s linear infinite alternate;
  animation: spanContactMeChanges 1s linear infinite alternate;
}

@-moz-keyframes spanContactMeChanges {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 100% 0;
  }
}


@-webkit-keyframes spanContactMeChanges {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 100% 0;
  }
}


@keyframes spanContactMeChanges {
  from {
      background-position: 0 0;
  }
  to {
      background-position: 100% 0;
  }
}


.cat {
  background-color: rgb(255, 255, 255);
  display: block;
  position: relative;
  opacity: 1;  
}

.catImg {
  width: 90%;
}

.cat:before {
  display: block;
  content: "";
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: 1;    
}

.cat:after {
  content: "";
  display: block;
  opacity: 1;
  -moz-transform-origin: 0% 10%;
  -webkit-transform-origin: 0% 10%;
  transform-origin: 0% 10%;
  -moz-transform: scale(1.3) translateY(-90%);
  -webkit-transform: scale(1.3) translateY(-90%);
  transform: scale(1.3) translateY(-90%);
  width: 100%;
  height: 100%; 
  position: absolute;
  background-color: rgb(201, 198, 197);  
}

.cat:after {
  -moz-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
 }
 
.cat:hover:before {
 opacity: 0; 
}

.cat:hover:after,
.cat:focus:after {
 opacity: 1; 
 -moz-transform: scale(4) translate(150px, 0px);
 -webkit-transform: scale(4) translate(150px, 0px);
 transform: scale(4) translate(150px, 0px);
}

.myHobby {
  background-color: rgb(255, 255, 255);
  display: block;
  overflow: hidden;
  position: relative;
  opacity: 1;
  width: 100%;
  height: 100%;
  color:rgb(14, 24, 94);
  z-index: 0;
  font-size: 1em;
  text-decoration: none;
  text-align: center; 
  margin: 0 auto;
}

.myHobby img {
  width: 100%;
}

.myHobby:before {
  display: block;
  content: "";
  opacity: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;  
  padding: 5px;
}

.myHobby:after {
  font-size: 16px;
  content: attr(alt);
  display: block;
  opacity: 1;
  -moz-transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -moz-transform: scale(1.1) translateY(-70%);
  -webkit-transform: scale(1.1) translateY(-70%);
  transform: scale(1.1) translateY(-70%);
  width: 100%;
  height: 140%; 
  position: absolute;
  padding: 60px 0px 0 0px;
  background-color:rgb(255, 255, 255);
}

.myHobby:after {
  -moz-transition: all 2s linear infinite;
  -webkit-transition: all 2s linear infinite;
  transition: all 2s linear infinite;
 }
 
.myHobby:hover:before {
 opacity: 0; 
}

.myHobby:hover:after,
.myHobby:focus:after {
 opacity: 1; 
 -moz-transform: scale(1) translate(100px, 50px);
 -webkit-transform: scale(1) translate(100px, 50px);
 transform: scale(1) translate(100px, 50px);
}

.contentScroll {
  background-color: rgb(255, 255, 255);
  display: block;
  position: relative;
  opacity: 1;
  text-align: center;
  -moz-animation: animationContentScroll 3s ease 3ms 3;
  -webkit-animation: animationContentScroll 3s ease 3ms 3;
  animation: animationContentScroll 3s ease 3ms 3;
}

a.contentScroll {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  padding-top: 20px; 
}

.contentScroll p {
  font-size: 18px;
  color: #ee786e 
}

.contentScroll img {
  width: 40%;
  height: auto;
}

@-moz-keyframes animationContentScroll {
  0% { 
    display: block;
    opacity: 1;
    -webkit-transform-origin: 90% 0%;
    transform-origin: 90% 0%;
    -webkit-transform: scale(1.5) translateY(-90%);
    transform: scale(1.5) translateY(-90%);
    width: 100%;
    height: 100%;
    background-color: #ee786e;
     
  }  

  50% {
    content: "";
    display: block;
    opacity: 1;
    -webkit-transform-origin: 90% 0%;
    transform-origin: 90% 0%;
    -webkit-transform: scale(1.5) translateY(-50%);
    transform: scale(1.5) translateY(-50%);
    width: 100%;
    height: 200%;   
    background-color: #ee786e ;
  }
}



@-webkit-keyframes animationContentScroll {
  0% { 
    display: block;
    opacity: 1;
    -webkit-transform-origin: 90% 0%;
    transform-origin: 90% 0%;
    -webkit-transform: scale(1.5) translateY(-90%);
    transform: scale(1.5) translateY(-90%);
    width: 100%;
    height: 100%;
    background-color: #ee786e;
     
  }  

  50% {
    content: "";
    display: block;
    opacity: 1;
    -webkit-transform-origin: 90% 0%;
    transform-origin: 90% 0%;
    -webkit-transform: scale(1.5) translateY(-50%);
    transform: scale(1.5) translateY(-50%);
    width: 100%;
    height: 200%;   
    background-color: #ee786e ;
  }
}

@keyframes animationContentScroll {
  0% { 
    display: block;
    opacity: 1;
    transform-origin: 90% 0%;
    transform: scale(1.5) translateY(-90%);
    width: 100%;
    height: 100%;
    background-color: #ee786e;
     
  }  

  50% {
    content: "";
    display: block;
    opacity: 1;
    transform-origin: 90% 0%;
    transform: scale(1.5) translateY(-50%);
    width: 100%;
    height: 200%;   
    background-color: #ee786e; 
  }
}


/* CV */

.containerAboutMe {
  display: block;
  position: relative;   
  margin-top: 5%;
  margin-right: 30%;   
  color: #000;
  margin-bottom: 30px;
}

.active {
  display: block;
  color: white;
}

.aboutme img {
  width: 90%;
  margin-right: 20%;
  left: 20%
}

.containerEducation {
  display: -webkit-flex;
  display: flex;
  position: relative;  
  margin-right: 25%; 
  -webkit-flex-flow: column;
  flex-flow: column;
  color: #000;
  margin-bottom: 0;
  margin-block-end: 0;  
  margin-top: 0;
}

.containerEducation td {
  padding: 10px 0 10px 20px;
}

.containerEducation p {
  margin-top: 15px;
}

.containerEducation p:first-child {
  padding-top: 5px;
}

.redLine img {
  width: 60%;
  height: auto;
  margin-right: 20%;
  left: 20%;
  padding: 20px;
}


figure {
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.linkProjects img {
  width: 230px;
  position: relative;
  margin: 0;
  padding: 0;
}

.linkProjects {
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  position: relative;
  height: auto;
  -webkit-align-self: baseline;
  align-self: baseline;
  opacity: 1; 
}

*:after, *:before { 
	box-sizing: border-box; 
}
.clearfix:before, .clearfix:after { 
	content: ''; 
	display: table; 
}
.clearfix:after { 
	clear: both; 
}

.boxProjects {
	overflow: hidden;
	list-style: none;
	text-align: center;
  display: -webkit-flex;
  display: flex;
  position: relative;
  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: baseline;
  align-items: baseline;
  height: auto;
  width: 100%;  
  padding: 0; 
  margin: 0;
  font-size: 1em;
}

.boxProjects figure {
	position: relative;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	cursor: pointer;
}

.boxProjects figure img {
	position: relative;
	display: block;
	min-height: 100%;
}

.boxProjects figure figcaption {	
	color:rgb(14, 24, 94);
	font-size: 1em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.boxProjects figure figcaption::before,
.boxProjects figure figcaption::after {
	pointer-events: none;
}
.hover-text-one figure figcaption{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  color:rgb(255, 255, 255);
}

.boxProjects figure p {
	margin: 0;
	letter-spacing: 1px;
	font-size: 70%;
}

figure.hoverProjects {
	background: #fff;
}

figure.hoverProjects img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
figure.hoverProjects:hover img {
	opacity: 0.4;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
figure.hoverProjects figcaption {
	text-align: left;
  width: 40%;
}

figure.hoverProjects p {
	padding: 1em 0;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}
figure.hoverProjects:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* FOOTER */

.footer {
  width: 100%;
  height: 250px;
  margin: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blockFooter { 
  display: -webkit-flex;
  display: flex;  
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: center;
  align-content: center;
  background-color: rgb(14, 24, 94);
  color: #fff;  
  height: auto;
}

.blockQuotes {
  padding-top: 30px;
  padding-bottom: 0;
  width: 50%;
  color: #fff;
  font-size: 16px;
}

.picBrainFrame {
  display: block;
  order: 2;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}

.picBrainFrame img{
  width: 65%;
  height: auto;
  margin-bottom: 20px;
}

.randomQuotes{ 
  position: relative;
  top: -40%;
  right: -15%;
  text-align: center;
  font-size: 16px;
  padding: 15px;
  white-space: wrap;
  overflow: hidden;
  width: 13em;  
}

.animationCat {
  order: 1;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: fit-content;
  overflow: hidden;
  position: relative;  
  margin-bottom: 20px;
  left: 10%;
}

.animationCat img {
  width: 30%;
  margin: 0;
}

.catDown {
  top: -100%;
  -moz-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-animation: fromtop 3s ease-out 50ms infinite;
  -webkit-animation: fromtop 3s ease-out 50ms infinite;
  animation: fromtop 3s ease-out 50ms infinite;
}

.catValt  {  
  display: none;
}

.catValt.active {
  display: block;
}

@-moz-keyframes fromtop {
  0% {
      transform: translate(0, -15%);
  }
  35% {
      transform: translate(0, -5%);
  }
  50% {
    transform:  rotate(1turn);
    opacity: 1;
  }
  80% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  90% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  100% {
    transform: translate(0, -100%);
    opacity:1;
  } 
}


@-webkit-keyframes fromtop {
  0% {
      transform: translate(0, -15%);
  }
  35% {
      transform: translate(0, -5%);
  }
  50% {
    transform:  rotate(1turn);
    opacity: 1;
  }
  80% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  90% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  100% {
    transform: translate(0, -100%);
    opacity:1;
  } 
}

@keyframes fromtop {
  0% {
      transform: translate(0, -15%);
  }
  35% {
      transform: translate(0, -5%);
  }
  50% {
    transform:  rotate(1turn);
    opacity: 1;
  }
  80% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  90% {
    transform: translate(0, -100%);
    opacity:1;
  } 
  100% {
    transform: translate(0, -100%);
    opacity:1;
  } 
}

.contactMe {
  display: none;
  position: relative;
  color: #fff;
  font-size: 16px;
}

.linkContactMe:hover .contactMe {
  display: block;
  position: absolute;
}



@media only screen and (min-device-width : 320px) and (max-device-width : 559px) {

  .fixedContainer {  
    display: none;   
  }

.fixedContainerMobile {
  display: -webkit-flex;
  display: flex;   
  position: absolute; 
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;  
  left: 0;
  right: 0;
  top: 0;  
  width: 100%; 
  color: #fff;
  background-color: rgb(14, 24, 94);
  margin: 0; 
}

.portretMine {
  width: 70px;
  height: auto;
  padding: 5px; 
  margin: 10px;
}

.navItem {
  margin-right: 20px;
  padding-top: 5px;  
}

.navItem a {
  color: #fff;
}

.navItem:nth-child(1) {
  width: 20%;
  margin-top: 0px;  
}

.navItem:nth-child(2) {
  width: 50%;
  padding-left: 5px;
  margin: 10px;  
}

.navItem:nth-child(3) {
  width: 30%;
  margin-top: 0px; 
}

.navItemContact a {
  color: #fff;
  font-size: 0.5rem;
}

.myName {
  font-size: 1.1rem;
}

.phoneAndMail {
  font-size: 0.5rem;
  font-weight: 300;
}

.myCV p {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 300;
}

.myCV p:hover {
  -moz-transform: translate(10%, 0);
  -webkit-transform: translate(10%, 0);
  transform: translate(10%, 0);
}

.logoLinkedIn img {
  width: 10%;
}

.logoLinkedIn img:hover {
  -moz-transform: translate(60%, 0);
  -webkit-transform: translate(60%, 0);
  transform: translate(60%, 0);
}

.homePage {
  width: 100%;
  margin: 180px 0 0 0;
  -webkit-justify-content: center;
  justify-content: center;   
}

.homePageContainer {  
  display: -webkit-flex;
  display: flex;
  position: relative;
  height: auto;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 300px; 
  max-width: 80%;
  margin: 0 auto;
 
} 

.cell {
  -webkit-flex-basis: 90px;
  flex-basis: 90px;
  max-width: 100%;
  width: 50%;
  height: auto;
  padding: 0px;  
  overflow: hidden; 
}

.cell img {
  width: 100%;
  height: 100%;
}

.cell p {
  width: 100%;
  height: 100%;
}

a.contentScroll img { 
  width: 40%;
  height: auto;
  padding-top: 0%;
}

a.contentScroll { 
width: 100%;
height: auto;
padding-top: 20%;
font-size: 0.6em;
}

.contentScroll img {
  width: 30%; 
  padding-top: 15%;
}

.contentScroll p {
  font-size: 0.6em;
}

.contentScroll:before {
  font-size: 0.6em;  
  }

.lifeStyle {
  -webkit-flex-basis: 90px;
  flex-basis: 90px;
  max-width: 100%;
  font-size: 0.5em;
} 

.lifeStyle:after {
  font-size: 0.4em;
  } 

  .mobileEmail {
    display: block;
  }

.screenEmail {
  display: none;
}

  .contactme {
    font-size: 0.6em;    
  }

  .myHobby::before {
    font-size: 0.25em;
    padding: 0;
  }

  .myHobby:after {
    font-size: 0.25em;
    padding-top: 65px;
    margin: 0;
    width: 100%;
    height: 180%;
}

.containerAboutMe {  
  margin: 20px 20px 0 20px;
  padding: 0;
  font-size: 0.5em;
}

.containerEducation td {
  padding: 20px 0 20px 10px;
}

.containerEducation {
  margin: 30px 20px 0 20px;
  padding: 0;
  font-size: 0.5em;
}

.containerProjects {  
  height: auto;
  width: 100%;
  padding: 0;
  margin: 0 0px 0 20px;
  font-size: 0.5em;  
}

.containerProjects img{  
  margin: 0 10px 0 10px;
}

.boxProjects {
  -webkit-justify-content: center;
  justify-content: center;
  margin: 10px 0px 10px 0;
}

.blockQuotes {
  font-size: 0.4em;
}

.randomQuotes{ 
  right: -10%;
  font-size: 5px;
  top: -43%;
}

.picBrainFrame img {
    width: 85%;
    height: auto;
    margin-bottom: 20px;
}

.redLine img {
  width: 90%;
  padding: 20px;
}

.footer { 
  margin: 20px 0 0 0;
  left: 0;
  width: 100%;
  position: relative;
  height: auto;
}

.blockFooter { 
  position: absolute;
  margin: 0;
  left: 0;
  right: 0;
}

figure.hoverProjects figcaption {
  width: 60%;
  padding: 1em 2em;
}

.boxProjects figure p {
  font-size: 100%;
}
}

@media only screen and (min-device-width: 560px) and (max-device-width: 767px) {  

.fixedContainerMobile {
    display: none;
}

.fixedContainer {    
  max-width: 125px; 
  width: 100%;
  bottom: 0;
  padding-left: 0; 
}

.blockLinks div {
  margin-top: 10px;
}

.myName {
  font-size: 1.2rem;
}

.phoneAndMail {
  font-size: 0.6rem;
  font-weight: 200;
}

.myCV p:hover {
  -moz-transform: translate(5%, 0);
  -webkit-transform: translate(5%, 0);
  transform: translate(5%, 0);
}

.logoLinkedIn img {
  margin: 15px auto;
  width: 15px; 
}

.logoLinkedIn img:hover {
  -moz-transform: translate(60%, 0);
  -webkit-transform: translate(60%, 0);
  transform: translate(60%, 0);
}

.homePage { 
  display: -webkit-flex;  
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column; 
  -webkit-justify-content: left;   
  justify-content: left;
  width: 60%; 
  margin-left: 30%;
  margin: 20px -10px 20px 170px;  
}

.homePageContainer {
  width: 500px;
  max-width: 100%;
  height: auto;     
  margin-top: 2%;
} 

.cell {
  -webkit-flex-basis: 90px;
  flex-basis: 90px;
  max-width: 100%;
  width: 50%;
  height: auto;
  padding: 0px;  
  overflow: hidden; 
}

.cell img {
  width: 100%;
  height: 100%;
}

.cell p {
  width: 100%;
  height: 100%;
}

.lifeStyle {
  max-width: 100%;
  font-size: 0.7em;
  }
  
.lifeStyle:after {
  font-size: 0.6em;
} 


.mobileEmail {
  display: block;
}

.screenEmail {
  display: none;
}

.contactme {
  max-width: 100%;
  font-size: 0.6em;
  padding-top: 25px;
}

.myHobby:after {
font-size: 0.6em;
padding-top: 65px;
height: 180%;
}

.contentScroll p {
font-size: 0.6em;
}

.contentScroll:before {
font-size: 0.6em;  
}

a.contentScroll img { 
  width: 40%;
  height: auto;
 padding-top: 0%;
}

a.contentScroll { 
width: 100%;
height: auto;
padding-top: 15%;
}

.containerAboutMe {    
  margin-top: 50px;
  margin-bottom: 20px;
  margin-right: 10%;  
}

.containerEducation { 
  margin-right: 10%;  
}

.containerEducation table {
  margin-left: -10px;
}


.blockQuotes {
  font-size: 0.6em;
}

.randomQuotes{ 
  right: -9%;
  font-size: 0.4em;
}

.animationCat {
  left: 30%;
}

.redLine img {
  width: 70%;
}

.containerProjects {  
  height: auto;
  width: 100%;
}

.boxProjects {
  margin: 20px;
}

.footer {
  width: 100%;
  position: relative;
  height: auto;
}

.blockFooter { 
 position: absolute;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;  
}
  
}


@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {  

.fixedContainerMobile {
  display: none;
}

.fixedContainer {    
  max-width: 175px; 
  width: 100%;
 
}

.blockLinks {    
  font-size: 1.2rem;
  font-weight: 200; 
}

.blockLinks div {
  margin-top: 10px;
}

.myName {
  font-size: 1.6rem;
}

.phoneAndMail {
  font-size: 0.7rem;
  font-weight: 200;
}

.myCV p:hover {
  -moz-transform: translate(5%, 0);
  -webkit-transform: translate(5%, 0);
  transform: translate(5%, 0);
}

.logoLinkedIn img {
  margin: 15px auto;
  width: 18px; 
}

.logoLinkedIn img:hover {
  -moz-transform: translate(40%, 0);
  -webkit-transform: translate(40%, 0);
  transform: translate(40%, 0);
}

.homePage {
  display: -webkit-flex;   
  display: flex;
  -webkit-flex-flow: column;
  flex-flow: column;
  margin: 20px -10px 20px 270px;  
  padding-right: 50px;   
  -webkit-justify-content: left;
  justify-content: left;
  
}

.homePageContainer {
  width: 600px;
  max-width: 100%;
  height: auto;     
  margin-top: 2%;
} 

.cell {
  -webkit-flex-basis: 150px;
  flex-basis: 150px;
  height: 150px;
  width: 50%;
  padding: 0px;  
  overflow: hidden; 
}

.cell p {
  width: 100%;
}

.cell img {
  width: 100%;  
  height: 100%; 
}

.cell p {
  width: 100%;
}

a.contentScroll img { 
  width: 40%;
  height: auto;
 padding-top: 0%;
}

a.contentScroll { 
width: 100%;
height: auto;
padding-top: 15%;
}

.contentScroll p {
  font-size: 0.9em;
}

.contentScroll:before {
  font-size: 0.9em;    
}
 
.lifeStyle {
  max-width: 100%;
  font-size: 0.9em;
}

.lifeStyle:after {
  font-size: 0.9em;
}


.mobileEmail {
  display: none;
}

.contactme {
  max-width: 100%;
  font-size: 0.7em;
}

.myHobby:after {
  font-size: 0.8em;
  height: 140%;
}

.blockQuotes {
  font-size: 0.9em;
}

.randomQuotes{ 
  right: -11%;
  font-size: 0.6em;
}

.animationCat {
  left: 30%;
}

.redLine img {
  width: 70%;
}

.containerProjects {  
  height: auto;
  width: 90%;
}

.boxProjects {
  margin: 10px;
}

.footer {
  width: 100%;
  height: auto;
  position: relative;
}

.blockFooter { 
 position: absolute;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;  
}
}



@media only screen and (min-device-width: 1024px) and (max-device-width: 1440px) {  

.fixedContainerMobile {
  display: none;
}

.fixedContainer {    
  max-width: 175px; 
  width: 100%;
}

.blockLinks {    
  font-size: 1.2rem;
  font-weight: 200; 
}

.blockLinks div {
  margin-top: 10px;
}

.myName {
  font-size: 1.8rem;
}

.phoneAndMail {
  font-size: 0.8rem;
  font-weight: 200;
}

.myCV p:hover {
  -moz-transform: translate(5%, 0);
  -webkit-transform: translate(5%, 0);
  transform: translate(5%, 0);
}

.logoLinkedIn img {
  margin: 15px auto;
  width: 18px;
}

.logoLinkedIn img:hover {
  -moz-transform: translate(40%, 0);
  -webkit-transform: translate(40%, 0);
  transform: translate(40%, 0);
}

.homePage {  
  margin-right: 0;
  width: 70%;
  padding-right: 50px;
  margin: 20px -10px 20px 260px;  
} 

.homePageContainer {  
  width: 750px;
  margin-top: 0;
}  

.cell {
  -webkit-flex-basis: 150px;
  flex-basis: 150px;
  max-width: 100%;
  width: 100%;
  height: auto;
  padding: 0px;  
}

.cell img {
  width: 100%;
  height: 100%;  
}

.cell p {
  width: 100%;
  height: auto;
}

.contentScroll img {
  width: 40%;
  height: auto;   
}

.contentScroll p {
  font-size: 1em;
}
 
.lifeStyle {
  max-width: 100%;
  font-size: 0.9em;
}

.lifeStyle:after {
  font-size: 0.9em;
}

.mobileEmail {
  display: none;
}

.contactme {
  max-width: 100%;
  font-size: 0.8em;
}

.contactme:after {
  font-size: 0.9em;
}

.myHobby:after {
  font-size: 0.8em;
  height: 140%;
}

.contentScroll p {
  font-size: 0.9em;
}

.contentScroll:before {
  font-size: 0.9em;     
}

a.contentScroll {
  width: 100%;
  height: auto;   
  padding-top: 15px;
}

.blockQuotes {
  font-size: 1em;
}

.randomQuotes{ 
  right: -13%;
  font-size: 0.7em;
}

.containerProjects {  
  height: auto;
  width: 90%;
  margin: 0px 0 20px 20px;
}


.boxProjects {
  margin: 20px 0px 20px 0;
}

.footer {
  width: 100%;
  height: 250px;  
}

.blockFooter { 
  position: absolute;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;  
}
    
}