body{
	margin: 40px;
	background: url(../img/pcb.svg);
	font-family: Sans-Serif;
  animation: animatedBackground 100s linear infinite;
  cursor:url(../img/logomouse.cur), auto;
}
@keyframes animatedBackground 
{
  from { background-position: 0 0%; }
  to { background-position: 100% 100%; }
}

.wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    cursor:url(../img/logomouse.cur),auto;
    }

aside{
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
    background: #d7d7d7;
    padding: 40px;
    max-width: 300px;
    min-width: 300px;
    overflow: hidden;
    }

main{
    order: 0;
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    background: white;
    padding-bottom: 40px;
    overflow: hidden;
    }

header {
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
    padding: 40px;
	background: #a91f23;
    }

section{
    order: 0;
    flex: 1 1 auto;
    align-self: stretch;
    padding-left: 40px;
	padding-right: 40px;
    }
h3{
	text-transform: uppercase;
}
h2, h4 {
	text-transform: capitalize;
}
h1{
	font-size: 268%;
  transform: rotate(-20deg);
}
h1 span{
  display: block;
}
h4 {
	font-size: 1.5em;
}
.famillyName{
	padding-left: 30%;
}
header{
	text-align: right;
}
aside ul{
	list-style-type: none;
	padding-left: 0px;
}
.brand{
	width: 100%
}
.Skill-rate li{
	background: url(../img/dot.svg);
	background-size: contain;
}
.Skill-rate li span{
	background: #d7d7d7;
}

ul.Skill-rate span+span {
  float: right;

}
ul.Skill-rate span+span svg{
	/*filter: drop-shadow( 5px -5px 5px #000 );*/
}

.paper-shadow{
  box-shadow:0 2px 9px 5px rgba(0, 0, 0, 0.26);
}

.underline {
  border: 2px solid transparent;
}

.underline::after {
  width: 0%;
  height: 2px;
  display: block;
  background-color: #fff;
  content: " ";
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.underline:hover::after,.underline:active::after {
	width: 100%;
	height: 2px;
	display: block;
	background-color: #fff;
	content: " ";
	position: absolute;
	top: 15px;
	left: -3px;
}
.link {
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.1em;
  position: relative;
}
article{
	padding-left: 15px;
	margin-bottom: 55px;
  border-left: solid 5px red;
}
main ul     	     {
		list-style: none;
	     }
main ul li{
		margin: 20px;
}
main ul li:before {
		content: "\2B22";
		position: absolute;
		transform: translate(-30px, -2px);
		color: #a91f23;
	     }

main .ex ul li ul li:before {
    content: "\2B22";
    position: absolute;
    transform: translate(-16px, 1px);
    color: black;
    font-size: 10px;
       }
main ul li ul li{
	margin: 0px;
}
main ul li ul li:before {
		content: "";
	     }
abbr{
  border-bottom: none;
  text-decoration: none;
}
.imf{
  font-style: italic;
}
.red{
  color: #a91f23;
}
.white{
  color: white;
}
.img-shadow
{
  animation: glow 5s linear 2s infinite alternate;
  overflow: hidden;
  filter: drop-shadow(0 0 0px #000);
}
@keyframes glow {
    0%   {filter: drop-shadow(0 0 0px #000);}
    25%  {filter: drop-shadow(0 0 4px #fff);}
    50%  {filter: drop-shadow(0 0 6px #fff);}
    75%  {filter: drop-shadow(0 0 8px #fff);}
    100% {filter: drop-shadow(0 0 10px #fff);}
}

.img-shadow:hover
{
transform:scale(1);


}

.img-shadow
{
transform:scale(1.1);
transition:all .6s ease-in-out;

}

.img-shadow:hover
{
transition:all .6s ease-in-out;

}
[data-anim="ripple"] {
  position: relative;
  overflow: hidden;
}
[data-anim="ripple"]:before {
  content: '';
  position: absolute;
  display: block;
  background: var(--ripple-background, white);
  border-radius: 50%;
  pointer-events: none;
  top: calc(var(--y) * 1px);
  left: calc(var(--x) * 1px);
  width: calc(var(--d) * 1px);
  height: calc(var(--d) * 1px);
  opacity: calc(var(--o, 1) * var(--ripple-opacity, 0.3));
  transition: calc(var(--t, 0) * var(--ripple-duration, 600ms)) var(--ripple-easing, linear);
  -webkit-transform: translate(-50%, -50%) scale(var(--s, 1));
          transform: translate(-50%, -50%) scale(var(--s, 1));
  -webkit-transform-origin: center;
          transform-origin: center;

}
.linkalt {
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
}
.underlinealt {
  border: 2px solid transparent;
}

.underlinealt::after {
  width: 0%;
  height: 2px;
  display: block;
  background-color: #a91f23;
  content: " ";
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.underlinealt:hover::after,.underlinealt:active::after {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #a91f23;
  content: " ";
  position: absolute;
  top: 15px;
  left: -3px;
}
@media only screen and (min-device-width: 2559px) {
  body {
    background-color: ;
  }
}

@media only screen and (max-device-width: 2559px) and (min-device-width: 1439px) {
  body {
    background-color: ;
  }
}

@media only screen and (max-device-width: 1439px) and (min-device-width: 1023px) {
  body {
    background-color: ;
  }

}

@media only screen and (max-device-width: 1023px) and (min-device-width: 767px) {
  body {
    background-color: ;
  }

}

@media only screen and (max-device-width: 767px) and (min-device-width: 0px) {
  body {
    background-color: white;
    margin: 0px;
    background-size: 30%;
  }
  h1{
    text-align: center;
    transform: translate(-58px, -15px) rotate(-20deg);
    font-size: 7em;
  }

  .wrap  {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    }

  aside {
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
    max-width: unset;
    padding: 80px;
    }

  main {
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
    padding-bottom: 0px;
    background: transparent;
    }
  header {
  order: 5;
  flex: 0 1 auto;
  align-self: stretch;
  }
  section{
  padding-left: 80px;
  padding-right: 80px
  order: 0;
  flex: 0 1 auto;
  align-self: stretch;
  }
  main section:last-of-type{
    padding-bottom: 80px;
  }
  main section:first-of-type{
    padding-top: 80px;
  }
ul.Skill-rate span+span {
    font-size: 35px;
}
main ul li:before {
    transform: translate(-58px, -15px);
    font-size: 49px;
    display: none;
}
main ul{
    list-style: disc;
}
main ul li ul{
  list-style: none;
} 
 
}

@media only screen and (max-device-width: 424px) and (min-device-width: 374px) {
  body {
    

  }
}

@media only screen and (max-device-width: 374px) and (min-device-width: 319px) {
  body {
    

  }
}

@media only screen and (max-device-width: 319px) and (min-device-width: 0px) {
  body {
    
    
  }
}