:root {
  --primaryColor: #ff002b;
  --secondaryColor: #e4343c;
  --lightColor: #ffffff;
  --bgColor-1: #1c1c1d;
  --bgColor-2: #2b2d2e;
  --padding: 8%
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: 'josefin sans', sans-serif;
font-size: 13px;
color: var(--lightColor)
}

.FIL{
  width: 100%;
  height: 12vh;
  background-color:var(--bgColor-1);
  display: flex;
  flex-direction: column;
}

span{
  color: #ff002b;
}

h2{
  font-size: 2.2rem;
  letter-spacing: 0.12rem;
  cursor: pointer;
}

nav{
  padding-top: 1.0rem;
  padding-left: var(--padding);
  padding-right: var(--padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0.8rem 1.0rem;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.4s;
}

nav ul li a:hover{
  color: var(--primaryColor);
}

.btn{
  background-color: var(--primaryColor);
  color: var(--lightColor);
  text-decoration: none;
  font-weight: bold;
  padding: 0.81rem 1.87rem;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.btn:hover {
  background-color: transparent;
  border: 2px solid var(--primaryColor);
}

.content{
  flex-grow: 1;
  padding: 0 var(--padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container-texts{
  position: relative;
  bottom: 70px;
}

h1{
  font-size: 4.65rem;
  margin: 1.7rem;
}

h3{
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
}

h4{
  font-size: 1.25rem;
  letter-spacing: 0.12rem;
  color: var(--secondaryColor);
}

h5{
  font-size: 1.37rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
p {
  color: var(--secondaryColor);
  letter-spacing: 1px;
  line-height: 1.8rem;
  font-size: 1rem;
}
.social {
  margin: 3.5rem;
}

.social img {
  margin-right: 2rem;
  width: 2.5rem;
  transition: 0.4s;
}

.social img:hover {
  transform: scale(1.2);
}

.Home .container-images {
  width: 45%;
  height: 90%;
  position: relative;
  align-self: flex-end;
}

.Home .container-images img {
  position: absolute;
  bottom: 0;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 1s, left 1s;
}

.Home .container-images:hover .pic{
left: 45%;
}


.about{
  background-color: #171a1c;
  padding: 3rem var(--padding);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about .container-images {
  width: 45%;
}

.about .container-images img {
  width: 90%;
}

.about .container-texts {
  width: 35%;
}

.services {
background-color: var(--bgColor-1);
padding: 2rem var(--padding);
}

.text-center {
  text-align: center;
}

.skille {
  background-color: #171a1c;
  padding: 2rem var(--padding);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.skille .container-images {
  width: 35%;
}

.skille .container-images img {
  width: 90%;
}

.skille .container-skille {
  width: 35%;
}
.content-skille {
  display: flex;
  flex-wrap: wrap;
}



/*-----------------------------------
*------------------ HUMBERGER MENU 
------------------------------------*/

#menu {
  display: none;
  position: relative;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  user-select: none;
}

#menu span {
  display: block;
  width: 33px;
  height: 4px;
  background-color: var(--lightColor);
  border-radius: 6px;
  transform-origin: 0 0;
  transition: 0.4s;
  margin-bottom: 5px;
}

#menu.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

#menu.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}

#menu.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}

#menu.is-active span {
  background-color: var(--primaryColor);
}



/*-----------------------------------
*------------------ MEDIA QUERIES 
------------------------------------*/


@media screen and (max-width:575px) {
:root {
--padding:1.5rem;
} 

html {
  font-size: 12px;
}

.Home .container-images img {
  display: none;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding-top: 0;
  background-color: var(--bgColor-1);
  border-bottom: 1px solid var(--bgColor-2);
  z-index: 100;
}

nav > a {
  display: none;
}

nav ul {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bgColor-2);
}

nav ul.is-active{
  display: block;
}




nav ul li {
  display: block;
  text-align: center;
  margin: 60px;
}

.container-texts {
  bottom: 0em;
}

.social {
  margin-top: 70px;
}

h3 {
  margin-bottom: 50px;
}
 
#menu {
  display: block;
}

.about .container-images {
  display: none;
}

.about .container-texts {
  width: 100%;
}

footer .content-footer p {
  width: 100%;
}



}


@media screen and (min-width:576px) and (max-width:767px){
  :root {
--padding:1.5rem;
  } 

  html {
    font-size: 12px;
  }






  .Home .container-images img {
    display: none;
  }

.content {
  padding-top: 82px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    padding-top: 0;
    background-color: var(--bgColor-1);
    border-bottom: 1px solid var(--bgColor-2);
    z-index: 100;
}

  nav > a {
    display: none;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bgColor-2);
  }

nav ul.is-active{
    display: block;
}


nav ul li {
    display: block;
    text-align: center;
    margin: 60px;
}

  .container-texts {
    bottom: 0em;
  }

  .social {
    margin-top: 30px;
  }
  
  h3 {
    margin-bottom: 30px;
  }
   
  #menu {
    display: block;
  }
  
.about .container-images {
    display: none;
}

.about .container-texts {
    width: 100%;
}

footer .content-footer p {
    width: 100%;
}

}