@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: black transparent;
  /* Chrome, Edge, and Safari scroll bar */
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 20px;
  border: none;
}

body {
  background-color: #F8F7F3;
  background-image: radial-gradient(lightgray 5.5%, transparent 0);
  background-size: 30px 30px;
  overflow-y: scroll;
}
body .blackline {
  width: 350px;
  height: 1px;
  border-radius: 10px;
  background-color: black;
  margin-top: 80px;
}
@media (max-width: 750px) {
  body .blackline {
    width: 250px;
    margin-top: 50px;
  }
}

.psa {
  position: absolute;
}

.psr {
  position: relative;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

.sticky {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  z-index: 3;
}

.sticky-padding {
  padding-top: 80px;
}

.burger-menu {
  display: flex;
  justify-content: center !important;
  flex-direction: column !important;
  align-items: center !important;
  height: auto !important;
  width: 100% !important;
}

.display-none {
  display: none !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  background-color: #F8F7F3;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.header-container .left-elements {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.header-container .left-elements img {
  width: 40px;
}
.header-container .left-elements img:hover {
  transform: scale(1.1);
}
.header-container .left-elements span {
  margin: 0 20px;
  font-weight: bold;
}
.header-container .left-elements a {
  margin-top: 3px;
}
.header-container .middle-elements {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.header-container .middle-elements a {
  text-decoration: none;
  color: black;
}
.header-container .middle-elements span {
  margin: 0 20px 0 20px;
  font-weight: bold;
}
.header-container .middle-elements .icon {
  display: none;
}
.header-container .right-elements {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header-container .right-elements img {
  width: 30px;
  margin-right: 10px;
}
.header-container .right-elements img:hover {
  transform: scale(1.1);
}
.header-container .right-elements a {
  text-decoration: none;
  color: black;
}
.header-container .right-elements a button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: black;
  border: 1px solid black;
  width: 110px;
  height: 30px;
  margin: 0 3px 2px 0;
  padding: 0 7px;
  background: #F8F7F3;
  border-radius: 8px;
  cursor: pointer;
}
.header-container .right-elements a button:hover {
  background-color: black;
  color: white;
}
.header-container .right-elements a button span {
  font-size: 18px;
}
.header-container .right-elements a button p {
  font-size: 15px;
}

@media (max-width: 880px) {
  .header-container .middle-elements .menu-titles {
    display: none;
    margin-right: 30px;
    transform: translateY(-2%);
  }
  .header-container .middle-elements .menu-titles span {
    margin: 0 10px;
    font-size: 17px;
  }
  .header-container .middle-elements .icon {
    display: block;
    transform: scale(1.2);
  }
  .header-container .middle-elements .responsive {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .header-container .middle-elements .display-burger {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .header-container .left-elements {
    margin-left: 20px;
  }
  .header-container .left-elements .welcome {
    display: none;
  }
  .header-container .left-elements img {
    margin-right: 5px;
  }
  .header-container .left-elements a {
    margin-left: 10px;
  }
}
@media (max-width: 375px) {
  .header-container {
    justify-content: center;
  }
  .header-container .left-elements {
    margin-left: 0;
  }
  .header-container .left-elements span {
    display: none;
  }
  .header-container .left-elements img {
    transform: scale(0.8);
  }
  .header-container .left-elements a {
    margin-left: 0;
  }
  .header-container .middle-elements {
    margin: 0 20px 0 10px;
  }
  .header-container .right-elements {
    margin-right: 5px;
  }
  .header-container .right-elements img {
    margin-right: 5px;
    width: 25px;
  }
}
.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-container img {
  margin-top: 50px;
}
.profile-container h1 {
  margin-top: 30px;
  font-size: 45px;
  font-weight: 400;
}
.profile-container .subtitle {
  font-size: 35px;
  font-weight: 100;
  margin-top: 0;
}
.profile-container .bio {
  width: 870px;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  font-weight: 100;
}
.profile-container a {
  text-decoration: none;
  color: black;
}
.profile-container a button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: black;
  border: 1px solid black;
  width: 180px;
  height: 40px;
  background: #F8F7F3;
  border-radius: 10px;
  margin-top: 40px;
  padding: 0 10px;
  cursor: pointer;
}
.profile-container a button:hover {
  background-color: black;
  color: white;
}
.profile-container a button span {
  font-size: 24px;
}
.profile-container a button p {
  font-size: 18px;
}

@media (max-width: 980px) {
  .profile-container h1 {
    font-size: 40px;
  }
  .profile-container .subtitle {
    font-size: 30px;
  }
  .profile-container .bio {
    width: 600px;
  }
}
@media (max-width: 750px) {
  .profile-container h1 {
    font-size: 30px;
  }
  .profile-container .subtitle {
    font-size: 25px;
  }
  .profile-container .bio {
    width: 500px;
    font-size: 14px;
    line-height: 20px;
  }
  .profile-container button {
    width: 130px;
    height: 30px;
    background: #F8F7F3;
    border-radius: 8px;
    margin-top: 30px;
  }
  .profile-container button span {
    font-size: 18px;
  }
  .profile-container button p {
    font-size: 13px;
  }
}
@media (max-width: 620px) {
  .profile-container img {
    width: 250px;
    margin-top: 20px;
  }
  .profile-container h1 {
    font-size: 24px;
    font-weight: 500;
  }
  .profile-container .subtitle {
    font-size: 20px;
  }
  .profile-container .bio {
    width: 420px;
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 500px) {
  .profile-container img {
    width: 230px;
  }
  .profile-container h1 {
    font-size: 25px;
    font-weight: 700;
  }
  .profile-container .subtitle {
    font-size: 22px;
    text-align: center;
    width: 350px;
    line-height: 25px;
    margin-top: 10px;
  }
  .profile-container .bio {
    width: 370px;
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 400px) {
  .profile-container img {
    width: 200px;
  }
  .profile-container h1 {
    font-size: 22px;
    font-weight: 600;
  }
  .profile-container .subtitle {
    font-size: 20px;
    width: 280px;
    line-height: 25px;
    margin-top: 10px;
  }
  .profile-container .bio {
    width: 290px;
    font-size: 15px;
    line-height: 23px;
  }
}
.projects-section h3 {
  text-align: center;
  font-size: 40px;
  margin-top: 40px;
}
.projects-section h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 200;
  width: 600px;
  margin: 20px auto auto auto;
}
.projects-section .projects-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 50px;
  padding: 0 50px 0 50px;
}
.projects-section .projects-container .project-box {
  height: 530px;
  width: 450px;
  background-color: white;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin: 50px 30px 30px 30px;
}
.projects-section .projects-container .project-box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: translateY(-0.5%);
}
.projects-section .projects-container .project-box video {
  width: 450px;
  border-radius: 12px 12px 0 0;
}
.projects-section .projects-container .project-box h5 {
  text-align: center;
  font-weight: 400;
  font-size: 25px;
  margin-top: 40px;
}
.projects-section .projects-container .project-box p {
  font-size: 15px;
  text-align: center;
  margin: 20px auto auto auto;
  width: 350px;
}
.projects-section .projects-container .project-box .logos-container {
  display: flex;
  justify-content: center;
  margin: 20px auto auto auto;
  gap: 5px;
}
.projects-section .projects-container .project-box .logos-container .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.projects-section .projects-container .project-box .logos-container .logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.projects-section .projects-container .project-box .button-container {
  display: flex;
  justify-content: space-evenly;
  margin-top: 25px;
  padding: 0 40px 0 40px;
}
.projects-section .projects-container .project-box .button-container .visitbutton-french {
  padding: 0 10px !important;
}
.projects-section .projects-container .project-box .button-container a {
  text-decoration: none;
  color: black;
}
.projects-section .projects-container .project-box .button-container a button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: black;
  border: 1px solid black;
  width: 130px;
  height: 35px;
  padding: 0 5px;
  background: white;
  border-radius: 10px;
}
.projects-section .projects-container .project-box .button-container a button img {
  width: 18px;
}
.projects-section .projects-container .project-box .button-container a button .material-icons-outlined {
  font-size: 18px;
}
.projects-section .projects-container .project-box .button-container a button:hover {
  background-color: black;
  color: white;
}

@media (max-width: 750px) {
  .projects-section h3 {
    font-size: 30px;
    margin-top: 20px;
  }
  .projects-section h4 {
    width: 430px;
    font-size: 15px;
  }
  .projects-section .projects-container {
    margin-top: 30px;
  }
}
@media (max-width: 620px) {
  .projects-section h3 {
    font-size: 25px;
  }
  .projects-section h4 {
    width: 350px;
    font-size: 14px;
  }
  .projects-section .projects-container {
    margin-top: 30px;
    padding: 0 20px 0 20px;
  }
  .projects-section .projects-container .project-box {
    height: 420px;
    width: 330px;
    margin-top: 30px;
  }
  .projects-section .projects-container .project-box video {
    width: 330px;
    border-radius: 15px 15px 0 0;
  }
  .projects-section .projects-container .project-box h5 {
    font-size: 20px;
    margin-top: 20px;
  }
  .projects-section .projects-container .project-box p {
    font-size: 12px;
    margin: 20px auto auto auto;
    width: 280px;
  }
  .projects-section .projects-container .project-box .button-container a button {
    width: 110px;
    height: 30px;
    font-size: 11px;
  }
  .projects-section .projects-container .project-box .button-container a button .material-icons-outlined {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .projects-section h3 {
    font-size: 22px;
    margin-top: 15px;
  }
  .projects-section h4 {
    width: 280px;
    font-size: 14px;
  }
  .projects-section .projects-container .project-box {
    height: 380px;
    width: 280px;
  }
  .projects-section .projects-container .project-box video {
    width: 280px;
  }
  .projects-section .projects-container .project-box p {
    font-size: 10px;
    margin: 20px auto auto auto;
    width: 250px;
  }
  .projects-section .projects-container .project-box .button-container a button {
    width: 90px;
    font-size: 9px;
  }
  .projects-section .projects-container .project-box .button-container a button .material-icons-outlined {
    font-size: 14px;
  }
}
.skills-section h3 {
  text-align: center;
  font-size: 40px;
  margin-top: 80px;
}
.skills-section .skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 80px;
}
.skills-section .skills-container .skills-box {
  padding: 30px;
  width: 550px;
  height: auto;
  text-align: center;
  margin: 0 20px;
}
.skills-section .skills-container .skills-box .skill-title {
  margin-bottom: 30px;
}
.skills-section .skills-container .skills-box .skill-title h5 {
  font-size: 30px;
  font-weight: 500;
}
.skills-section .skills-container .skills-box .skill-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
.skills-section .skills-container .skills-box .skill-logos img {
  transform: scale(0.8);
}
.skills-section .skills-container .skills-box .skill-logos img:hover {
  transform: scale(0.9);
}
.skills-section .skills-container .skills-box .skill-text {
  margin: 50px auto;
}
.skills-section .skills-container .skills-box .skill-text p {
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 750px) {
  .skills-section h3 {
    font-size: 30px;
    margin-top: 20px;
  }
  .skills-section .skills-container {
    margin-top: 60px;
  }
  .skills-section .skills-container .skills-box {
    width: 500px;
  }
  .skills-section .skills-container .skills-box .skill-title h5 {
    font-size: 20px;
  }
  .skills-section .skills-container .skills-box .skill-logos img {
    transform: scale(0.7);
  }
  .skills-section .skills-container .skills-box .skill-logos img:hover {
    transform: scale(0.7);
  }
  .skills-section .skills-container .skills-box .skill-text {
    margin: 30px auto;
  }
  .skills-section .skills-container .skills-box .skill-text p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 620px) {
  .skills-section h3 {
    font-size: 25px;
  }
}
@media (max-width: 400px) {
  .skills-section h3 {
    font-size: 22px;
  }
  .skills-section .skills-container .skills-box .skill-title h5 {
    font-size: 18px;
  }
  .skills-section .skills-container .skills-box .skill-logos img {
    margin-right: -10px;
  }
  .skills-section .skills-container .skills-box .skill-text {
    margin: 30px auto;
  }
  .skills-section .skills-container .skills-box .skill-text p {
    font-size: 15px;
    line-height: 25px;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: black transparent;
  /* Chrome, Edge, and Safari scroll bar */
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 20px;
  border: none;
}

body {
  background-color: #F8F7F3;
  background-image: radial-gradient(lightgray 5.5%, transparent 0);
  background-size: 30px 30px;
  overflow-y: scroll;
}
body .blackline {
  width: 350px;
  height: 1px;
  border-radius: 10px;
  background-color: black;
  margin-top: 80px;
}
@media (max-width: 750px) {
  body .blackline {
    width: 250px;
    margin-top: 50px;
  }
}

.psa {
  position: absolute;
}

.psr {
  position: relative;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

.experiences-section h3 {
  text-align: center;
  font-size: 40px;
  margin: 80px 0;
}
.experiences-section .experiences-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.experiences-section .experiences-container .chrono-line {
  width: 1px;
  height: 100px;
  background-color: black;
  margin: 45px 0 25px 0;
}
.experiences-section .experiences-container .chrono-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}
.experiences-section .experiences-container .chrono-box h5 {
  font-weight: 700;
  margin: 0 30px;
}
.experiences-section .experiences-container .chrono-box .blackline-chrono {
  height: 1px;
  width: 100px;
  background-color: black;
}
.experiences-section .experiences-container h5 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}
.experiences-section .experiences-container .subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.experiences-section .experiences-container img {
  margin-bottom: 10px;
}
.experiences-section .experiences-container img:hover {
  transform: scale(1.2);
}
.experiences-section .experiences-container p {
  text-align: center;
  width: 550px;
}
.experiences-section .experiences-container a {
  text-decoration: none;
  color: black;
  margin: 10px 0 20px 0;
}
.experiences-section .experiences-container a button {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: black;
  border: 1px solid black;
  width: 130px;
  height: 30px;
  padding: 0 5px;
  background: #F8F7F3;
  border-radius: 8px;
}
.experiences-section .experiences-container a button .material-icons-outlined {
  font-size: 18px;
}
.experiences-section .experiences-container a button:hover {
  background-color: black;
  color: #F8F7F3;
}

@media (max-width: 750px) {
  .experiences-section h3 {
    font-size: 30px;
    margin-top: 20px;
  }
  .experiences-section .experiences-container h5 {
    font-size: 20px;
  }
  .experiences-section .experiences-container .subtitle {
    font-size: 17px;
  }
  .experiences-section .experiences-container p {
    font-size: 15px;
    width: 450px;
    line-height: 25px;
  }
}
@media (max-width: 620px) {
  .experiences-section h3 {
    font-size: 25px;
  }
  .experiences-section .experiences-container h5 {
    width: 200px;
  }
  .experiences-section .experiences-container .chrono-box h5 {
    width: auto;
  }
  .experiences-section .experiences-container p {
    font-size: 15px;
    width: 350px;
  }
}
@media (max-width: 400px) {
  .experiences-section h3 {
    font-size: 22px;
    margin-bottom: 50px;
  }
  .experiences-section .experiences-container h5 {
    font-size: 18px;
    width: 200px;
    font-weight: 600;
  }
  .experiences-section .experiences-container img {
    transform: scale(0.8);
  }
  .experiences-section .experiences-container img:hover {
    transform: scale(1);
  }
  .experiences-section .experiences-container p {
    font-size: 15px;
    line-height: 25px;
    width: 270px;
  }
}
.blackline {
  width: 350px;
  height: 1px;
  border-radius: 10px;
  background-color: black;
  margin: 100px auto 40px auto;
}

.footer-container .bio {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.footer-container .links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.footer-container .links img {
  width: 30px;
  margin-right: 10px;
}
.footer-container .links img:hover {
  transform: scale(1.1);
}
.footer-container .links a {
  color: black;
  text-decoration: none;
}
.footer-container .links a button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: black;
  border: 1px solid black;
  width: 110px;
  height: 30px;
  background: #F8F7F3;
  margin-left: 3px;
  padding: 0 7px;
  border-radius: 8px;
  cursor: pointer;
}
.footer-container .links a button:hover {
  background-color: black;
  color: white;
}
.footer-container .links a button span {
  font-size: 18px;
}
.footer-container .links a button p {
  font-size: 15px;
}
.footer-container .bottom-mobile-space {
  width: 100%;
  height: 20px;
}

@media (max-width: 600px) {
  .footer-container .bio {
    width: 300px;
    margin: auto auto 30px auto;
  }
}
@media (max-width: 360px) {
  .blackline {
    width: 280px;
  }
}

/*# sourceMappingURL=styles.css.map */
