/*RESPONSIVE NAVBAR MENU STARTS*/
@media screen and (max-width : 880px) {
  .navBar {
    padding: 0;
  }

  .navBar .logo {
    position: absolute;
    top: 50px;
    left: 50px;
  }

  .navBar .menu-hamburger {
    display: block;
  }

  .nav-links {
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgb(255, 255, 255, 0, 20);
    backdrop-filter: blur(3px);
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -100%;
    transition: all 0.5s ease;
  }

  .nav-links.mobile-menu {
    margin-left: 0;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navBar .nav-links ul li {
    margin: 25px 0px;
    font-size: 1.2rem;
  }
}


/**************************** Section Profil RESPONSIVE*****************************/


@media (max-width: 956px) {

  .content {
    display: none;
  }

  .section-profil {
    max-width: 100%;
    max-height: 180vh;
    display: block;

  }

  .section-inside {
    display: flex;
    flex-direction: column;

  }

  .section-left {
    align-items: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section-right {
    display: flex;
    flex-direction: column;
  }

  .section-right h3 {
    text-align: center;
  }

  .section-right p {
    font-size: 24px;
    text-align: center;
  }


  .btn {
    width: 200px;
    margin-left: 9rem;
  }


  .title {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
  }

  .barre {
    display: block;
  }

}

@media (max-width: 415px) {

  .section-profil {
    max-width: 100%;
    max-height: 180vh;
    display: block;

  }

  .section-inside {
    display: flex;
    flex-direction: column;

  }

  .section-left {
    align-items: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .section-right {
    display: flex;
    flex-direction: column;
  }

  .section-right h3 {
    text-align: center;
  }

  .section-right p {
    font-size: 17px;
    text-align: center;
  }



  .btn {
    width: 200px;
    margin-top: 50px;
    height: 40px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 25%;
  }


  .title {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
  }

}


/*************************** Section Compétences RESPONSIVE *************************/

@media (max-width: 956px) {
  .section-inside-skill {
    display: block;
  }

  .skill .subtitle {
    font-size: 1.8rem;
  }

  .skill-titile {
    font-size: 27px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    color: white;
  }

  .list img {
    max-height: 75px;
    max-width: 75px;
  }

  .ligne {
    display: none;
  }

  .frontend {
    width: auto;
    padding-bottom: 25px;
  }

  .backend {
    width: auto;
    padding-bottom: 25px;
  }

}

@media (max-width: 415px) {
  .section-inside-skill {
    display: block;
  }

  .skill-titile {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    color: white;
  }

  .skill .subtitle {
    font-size: 1.2rem;
  }

  .list img {
    max-height: 50px;
    max-width: 50px;
  }

  .ligne {
    display: none;
  }

  .frontend {
    width: auto;
    padding-bottom: 25px;
  }

  .backend {
    width: auto;
    padding-bottom: 25px;
  }

}


/*************************** Section Contact RESPONSIVE ****************************/


@media (max-width: 900px) {
  .mail {
    flex-direction: column;
    font-size: 20px;
    cursor: pointer;

  }

  .mail p {
    color: white;
    font-size: 20px;
    cursor: pointer;
  }

  .contact {
    flex-direction: column;
    font-size: 20px;
  }

  .contact a {
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform ease-in-out 1s;
  }

  .contact .fa-github {
    font-size: 7rem;
  }

  .contact .fa-linkedin {
    font-size: 7rem;
  }


  .mail .fa-envelope {
    font-size: 7rem;
  }

}



@media (max-width: 415px) {


  .mail {
    flex-direction: column;
    font-size: 25px;
    cursor: pointer;

  }

  .mail p {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .contact {
    flex-direction: column;
    font-size: 20px;
  }

  .contact a {
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform ease-in-out 1s;
  }

  .contact .fa-github {
    font-size: 4rem;
  }

  .contact .fa-linkedin {
    font-size: 4rem;
  }

  .mail .fa-envelope {
    font-size: 4rem;
  }

}