:root {
  --primaryColor: #ff002b;
  --secondaryColor: #e4343c;
  --lightColor: #ffffff;
  --bgColor-1: #000000;
  --bgColor-2: #888787;
  --padding: 6%
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-family: 'josefin sans', sans-serif;
font-size: 13px;
color: var(--lightColor)
}

.Photo{
  width: 100%;
  height: 11vh;
  background-color:var(--bgColor-1);
  display: flex;
  flex-direction: column;
}

span{
  color: #2600ff;
}

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: #fcfcfc;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.4s;
}

nav ul li a:hover{
  color: rgb(0, 0, 255);
}

.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;
}

/*-----------------------------------
*------------------ 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%;
}

.Photo { 
  width: 1%;
    height: 1vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.top-fixed .rk-main {
  padding-top: -55.5rem;
}


}

@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%;
}

.Photo { 
  width: 1%;
    height: 1vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}


}