@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@keyframes growShrinkMobile {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes fadeInOutMobile {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes fadeInMobile {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes growShrink {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(10);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading_container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  animation: fadeInOut 2.3s forwards;
}
.loading_container svg {
  height: 50px;
  animation: growShrink 2.3s forwards;
}

.hero_section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: #f1F1f1;
  width: 100%;
  display: none;
  animation: fadeIn 5s forwards;
}
.hero_section .contact_nav {
  padding: 28px 40px 0 0;
  position: fixed;
  right: 0;
  z-index: 2;
  display: flex !important;
  gap: 2rem;
}
.hero_section .contact_nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: #f1F1f1;
  border-bottom: 1px solid #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
}
.hero_section .contact_nav a:hover {
  cursor: pointer;
}
.hero_section #vanta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  height: 100vh;
}
.hero_section #vanta-bg .vanta-canvas {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
.hero_section .hero {
  padding: 11%;
  width: 100%;
}
.hero_section .hero .hero_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.hero_section .hero .hero_center svg {
  width: 50px;
  height: 50px;
}
.hero_section .hero .hero_center h1 {
  font-size: 5.5rem;
  text-align: center;
  font-family: "PP Neue Montreal", sans-serif;
  padding: 2vh 0;
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  text-transform: uppercase;
}
.hero_section .hero .hero_center h2 {
  font-family: "PP Neue Montreal", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 400;
}
.hero_section .hero_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.hero_section .hero_bottom #left_nav {
  display: flex;
  align-items: center;
  padding-left: 7%;
}
.hero_section .hero_bottom #left_nav ul {
  list-style: none;
  display: flex;
}
.hero_section .hero_bottom #left_nav ul a {
  text-decoration: none;
  color: #f1F1f1;
  margin-right: 3rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  position: relative;
  font-size: 0.8rem;
  border-bottom: 1px solid #f1F1f1;
  padding-bottom: 1px;
}
.hero_section .hero_bottom .bottom_center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4.5rem;
}
.hero_section .hero_bottom .bottom_center h2 {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 1rem;
}
.hero_section .hero_bottom #right_nav {
  display: flex;
  align-items: center;
  padding-right: 7%;
}
.hero_section .hero_bottom #right_nav ul {
  list-style: none;
  display: flex;
}
.hero_section .hero_bottom #right_nav ul a {
  text-decoration: none;
  color: #f1F1f1;
  margin-right: 3rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  position: relative;
  font-size: 0.8rem;
  border-bottom: 1px solid #f1F1f1;
  padding-bottom: 1px;
}

/* Responsive for screens between 475px and 768px */
@media (min-width: 451px) and (max-width: 768px) {
  .burgerIcon {
    display: block !important;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 5px;
    margin-right: 0.6rem;
  }
  .about_me .description_about p {
    font-size: 2rem !important;
    line-height: 4rem !important;
    margin-left: 0 !important;
    width: 30rem !important;
  }
  .hero_section .hero_bottom .bottom_center {
    display: flex;
    padding-left: 0;
  }
  .hero_section .hero {
    padding: 15% 8% 10% 8%;
  }
  .hero_section .hero .hero_center h1 {
    font-size: 3rem;
  }
  .hero_section .hero .year_of_birth,
  .hero_section .hero .date_of_birth,
  .hero_section .hero .hobby,
  .hero_section .hero .year {
    display: none;
  }
  .hero_section .hero_bottom {
    margin-top: 6rem;
  }
  .hero_section .hero_bottom nav ul {
    display: block;
    padding: 0;
    font-size: 0.8rem;
  }
  .hero_bottom .bottom_text .first_part span,
  .hero_bottom .bottom_text .second_part span,
  .hero_bottom .bottom_text .third_part span {
    font-size: 1.2rem !important;
  }
  .hero_section .hero_bottom .bottom_text {
    width: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero_section .hero .hero_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .hero_section .hero .hero_center h2 {
    font-family: "PP Neue Montreal", sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
  }
  .hero_section .hero_bottom .bottom_center {
    display: block;
    padding-right: 1rem;
  }
  .hero_section .hero_bottom .bottom_center h2 {
    width: auto;
    font-size: 1rem;
  }
  #right_nav .frontendmentor {
    width: 9rem;
  }
}
@media (min-width: 375px) and (max-width: 450px) {
  .loading_container svg {
    animation: growShrinkMobile 5s forwards;
  }
  .hero_section {
    animation: fadeInMobile 5s forwards;
  }
  .hero_section .hero {
    padding: 25% 11% 11% 11%;
  }
  .hero_section .hero .hero_center h1 {
    font-size: 2.7rem;
  }
  .hero_section .hero .year_of_birth,
  .hero_section .hero .date_of_birth,
  .hero_section .hero .hobby,
  .hero_section .hero .year {
    display: none;
  }
  .hero_section .hero_bottom {
    margin-top: 230px;
  }
  .hero_section .hero_bottom nav ul {
    display: block;
    padding: 0;
    font-size: 0.7rem;
  }
  .hero_bottom .bottom_text .first_part span,
  .hero_bottom .bottom_text .second_part span,
  .hero_bottom .bottom_text .third_part span {
    font-size: 1rem !important;
  }
  .hero_section .hero_bottom .bottom_text {
    width: 30%;
    position: absolute;
    left: 75%;
  }
  .hero_section .hero .hero_center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .hero_section .hero .hero_center h2 {
    font-family: "PP Neue Montreal", sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
  }
  .hero_section .hero_bottom .bottom_center {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
  .hero_section .hero .hero_center h1 {
    font-size: 3.8rem;
  }
  .hero_section .hero {
    padding: 20% 11% 11% 11%;
  }
  .about_me {
    height: 75vh !important;
  }
  .displayed_projects {
    height: 0 !important;
    gap: 3rem;
  }
  .hero_section .hero_bottom {
    margin-top: 8rem;
  }
  .hero_section .hero_bottom .bottom_center {
    padding-right: 0;
  }
  .hero_section .hero_bottom .bottom_center h2 {
    width: 6rem;
  }
  #right_nav .frontendmentor {
    width: 11rem;
  }
}
.project-body {
  margin-top: 180px;
}

.project_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 2rem;
}
.project_section h2 {
  text-transform: uppercase;
  color: #f1F1f1;
  font-size: 7rem;
  margin: 0;
  font-family: "PP Neue Montreal", sans-serif;
}
.project_section .title_after {
  padding: 30px;
  color: #f1F1f1;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
  align-self: flex-end;
  position: absolute;
  right: 330px;
}

#scrolling-work {
  margin-top: 13rem;
}

.scrolling-text {
  width: 100vw;
  overflow: hidden;
  position: relative;
  top: -3.2rem;
  color: rgba(245, 245, 245, 0.6);
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 6rem;
  margin-top: 80px;
  margin-bottom: 80px;
  white-space: nowrap;
}

.scrolling-text-content {
  display: flex;
  animation: scroll 20s linear infinite;
}

.scrolling-text span {
  padding: 0 2rem;
}

#reverse .scrolling-text-content {
  animation: scroll-reverse 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.displayed_projects {
  height: 90vh;
  gap: 3rem;
}
.displayed_projects .title_display {
  color: #f1F1f1;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  position: relative;
  top: -1.5rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0.5;
}
.displayed_projects .img_container {
  display: flex;
  padding: 1% 1% 1% 1.5%;
}
.displayed_projects .img_container img {
  max-width: calc(50vw - 3rem);
  height: auto;
  padding-bottom: 1rem;
}
.displayed_projects .img_container span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(217, 217, 217, 0.7960784314);
  font-size: 1.1rem;
}
.displayed_projects .img_container h3 {
  color: #f1F1f1;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: "PP Neue Montreal", sans-serif;
  margin-top: 6px;
}
.displayed_projects .more_projects {
  display: flex;
  margin-top: 3rem;
  padding: 2%;
}
.displayed_projects .more_projects a {
  color: #f1F1f1;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-size: 1.5rem;
  border-bottom: #f1F1f1 1px solid;
  padding-bottom: 1px;
}
.displayed_projects .more_projects a svg {
  margin-left: 1rem;
}

.my_work {
  padding-left: 8rem;
  margin-top: 6rem;
}
.my_work h1 {
  color: #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.3rem;
}
.my_work h1 span {
  font-size: 1rem;
  position: relative;
  top: -20px;
}

.my_work_filter {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  list-style-type: none;
  margin-top: 20px;
  padding: 0;
}
.my_work_filter .work_filter_item {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 16px;
  font-family: "Helvetica Neue", sans-serif;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.my_work_filter .work_filter_item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.my_work_filter .work_filter_item.active_filter_item {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px;
  gap: 20px;
}

.case {
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #201f1f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(217, 217, 217, 0.1725490196);
}
.case .inner_case_container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case .inner_case_container .case_img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.case .inner_case_container .text_case_container {
  padding: 20px;
}
.case .inner_case_container .text_case_container .tags_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.case .inner_case_container .text_case_container .tags_container .tags {
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 14px;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
}
.case .inner_case_container .text_case_container .case_title h1 {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.case .inner_case_container .text_case_container .case_title h1 a {
  display: flex;
}
.case .inner_case_container .text_case_container .case_title h1 a svg {
  height: 30px;
}

.back-details {
  left: 59px !important;
  top: 60px !important;
}

@media (min-width: 375px) and (max-width: 475px) {
  .displayed_projects .img_container img {
    max-width: calc(50vw + 10rem);
  }
  .back {
    font-size: 1rem !important;
    left: 36px !important;
    top: 100px !important;
  }
  .back-details {
    font-size: 1rem;
    color: #ede8e4;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    left: 36px !important;
    top: 24px !important;
  }
  .prestige_yacht_mockup {
    display: flex;
    flex-direction: column;
  }
  .displayed_projects .img_container {
    display: flex;
    padding: 1% 1% 1% 2.8%;
    flex-direction: column;
  }
  .my_work h1 {
    padding-left: 2rem;
  }
  .my_work_filter {
    flex-wrap: wrap;
    padding: 0 0 0 2rem;
  }
  .my_work {
    padding: 0;
  }
  .case {
    width: 100%;
    margin-bottom: 20px;
  }
  .case .inner_case_container .case_img img {
    height: 250px;
  }
  .text_case_container {
    padding: 10px;
  }
  .case_title h1 {
    font-size: 1rem;
  }
  .tags_container {
    gap: 5px;
  }
  .tags {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
@media (min-width: 451px) and (max-width: 768px) {
  .my_work_filter {
    flex-wrap: wrap;
    padding: 0 0 0 2rem;
  }
  .my_work {
    padding-left: 3rem;
  }
  .back-details {
    left: 31px !important;
    font-size: 1rem !important;
    top: 20px !important;
  }
  .case {
    width: 100%;
    margin-bottom: 30px;
  }
  .case .inner_case_container .case_img img {
    height: 300px;
  }
  .text_case_container {
    padding: 15px;
  }
  .case_title h1 {
    font-size: 1.5rem;
  }
  .tags_container {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .tags {
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f5f5f5;
  }
}
.contact_nav {
  padding: 28px 40px 0 0;
  position: fixed;
  right: 0;
  z-index: 2;
}
.contact_nav span {
  text-transform: uppercase;
  text-decoration: none;
  color: #f1F1f1;
  border-bottom: 1px solid #f1F1f1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
}
.contact_nav span:hover {
  cursor: pointer;
}

.projects_wrapper {
  overflow-x: hidden;
}
.projects_wrapper .upper_teaser .title_teaser_container {
  position: relative;
  top: 95px;
  left: 100px;
  opacity: 0.8;
}
.projects_wrapper .upper_teaser .title_teaser_container .upper_name {
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f1F1f1;
  font-size: 5rem;
  letter-spacing: 3px;
  margin: 0;
}
.projects_wrapper .upper_teaser .title_teaser_container .lower_name {
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f1F1f1;
  font-size: 5rem;
  letter-spacing: 3px;
  margin: 0;
}
.projects_wrapper .upper_teaser .teaser_img_container {
  display: flex;
  justify-content: center;
}
.projects_wrapper .upper_teaser .teaser_img_container .teaser_image {
  width: 92%;
  display: block;
  margin: 0 auto;
}
.projects_wrapper .lower_teaser {
  padding: 6rem 4% 2% 4%;
}
.projects_wrapper .lower_teaser .teaser_details_container {
  grid-column-gap: 8rem;
  grid-row-gap: 2.5rem;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 0.85fr 1fr;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left {
  display: flex;
  flex-flow: column;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  aspect-ratio: 1;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card .inner_details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  padding-bottom: 10px;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card .inner_details .code {
  height: 30px;
  width: 30px;
  margin-right: 8px;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card .inner_details .code path {
  stroke: #f1F1f1;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card:hover {
  transition: 1s;
  background-color: #f1F1f1;
  color: #0e0e0e;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card:hover .inner_details {
  color: #0e0e0e;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card:hover .inner_details .code path {
  stroke: #0e0e0e;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6% 0;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .sub_details {
  grid-column-gap: 6rem;
  grid-row-gap: 2.5rem;
  display: flex;
  padding-bottom: 4%;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .sub_details .inner_item {
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .sub_details .inner_item .title_item {
  color: #f1F1f1;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 1.2rem;
  margin-top: 0;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .sub_details .inner_item .sub_title {
  color: rgba(217, 217, 217, 0.6784313725);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .services {
  grid-column-gap: 2.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
  flex-flow: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6% 0;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .services .title {
  color: #f1F1f1;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 1.2rem;
  margin-top: 0;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .services .sub_title {
  color: rgba(217, 217, 217, 0.6784313725);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description {
  line-height: 36px;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .project_container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .project_container h3 {
  color: #f1F1f1;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .project_container p {
  color: rgba(217, 217, 217, 0.6784313725);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .solution_container h3 {
  color: #f1F1f1;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .solution_container p {
  color: rgba(217, 217, 217, 0.6784313725);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links .teaser_links_inner h3 {
  color: #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links .teaser_links_inner .website,
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links .teaser_links_inner .github_teaser {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links .teaser_links_inner .website a,
.projects_wrapper .lower_teaser .teaser_details_container .teaser_right .project_description .teaser_links .teaser_links_inner .github_teaser a {
  text-decoration: none;
  color: #f1F1f1;
  border-bottom: 1px solid #f1F1f1;
  padding-bottom: 2px;
}

@media (min-width: 375px) and (max-width: 1024px) {
  .projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list {
    grid-template-columns: 1fr 1fr;
  }
  .projects_wrapper .lower_teaser .teaser_details_container .teaser_left .details_description_project .sub_details {
    grid-column-gap: 2rem;
  }
  .projects_wrapper .lower_teaser .teaser_details_container .teaser_left .card_list .inner_card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .projects_wrapper .upper_teaser .title_teaser_container .upper_name {
    font-size: 3rem;
  }
  .projects_wrapper .upper_teaser .title_teaser_container .lower_name {
    font-size: 3rem;
  }
  .projects_wrapper .upper_teaser .title_teaser_container {
    top: 55px;
    left: 30px;
  }
  .projects_wrapper .lower_teaser .teaser_details_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .projects_wrapper .lower_teaser .teaser_right {
    grid-column: 1;
  }
}
.horizontal_body {
  overflow-x: hidden;
}

.about_me {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
.about_me .description_about p {
  line-height: 5rem;
  color: rgba(234, 232, 232, 0.861);
  font-size: 3rem;
  font-family: "PP Neue Montreal", sans-serif;
  opacity: 0.7;
  margin-left: 3rem;
  width: 70rem;
}

@media (min-width: 375px) and (max-width: 450px) {
  .about_me .small_title_about {
    position: relative;
    bottom: 17rem;
    left: 1.5rem;
  }
  .about_me .description_about {
    padding: 1rem;
  }
  .about_me .description_about p {
    line-height: 2rem;
    color: #f1F1f1;
    font-family: "PP Neue Montreal", sans-serif;
    opacity: 1;
    margin-left: -1rem;
    font-size: 1rem;
    width: 20rem;
  }
  .about_me .small_title_about span {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about_me .description_about p {
    line-height: 3rem;
    font-size: 1.5rem;
    width: 39rem;
    margin: 0;
  }
}
nav {
  padding: 0;
}
nav .contact_nav {
  padding: 28px 40px 0 0;
  position: fixed;
  right: 0;
  z-index: 2;
  bottom: 53rem;
  display: flex;
  gap: 2rem;
  mix-blend-mode: difference;
}
nav .contact_nav a {
  text-transform: uppercase;
  text-decoration: none;
  color: #f1F1f1;
  border-bottom: 1px solid #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
}
nav .contact_nav a:hover {
  cursor: pointer;
}

.introduction {
  display: flex;
  margin-top: 6rem;
  padding: 4%;
  height: 100vh;
  flex-direction: column;
}
.introduction .intro_wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.introduction .intro_wrapper .title_container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.introduction .intro_wrapper h1 {
  font-size: 4.5rem;
  color: #d2d0d0;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.introduction .intro_wrapper h1 .title_desc .underline {
  background: linear-gradient(90deg, #b3b3b3, #f1f1f1);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-decoration-color: #b3b3b3;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.introduction .intro_wrapper .download_cv {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: #d2d0d0;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid rgb(217, 217, 217);
  width: fit-content;
  transition: 0.5s;
}
.introduction .intro_wrapper .download_cv:hover {
  background-color: #d2d0d0;
  color: #201f1f;
}

.quote {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote .quote_container {
  width: 80%;
}
.quote .quote_container p {
  color: rgba(234, 232, 232, 0.861);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  opacity: 0.7;
}
.quote .quote_container p .exercism-link-about {
  background: linear-gradient(90deg, #b3b3b3, #f1f1f1);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid_key {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 20px;
  width: 100%;
  padding: 10% 4%;
  margin-bottom: 8rem;
}
.grid_key .grid_title {
  list-style-type: disc;
  position: absolute;
  top: 125rem;
  color: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.grid_key .grid_item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: Helvetica, sans-serif;
  text-align: center;
  border: 1px solid rgba(217, 217, 217, 0.4862745098);
  padding: 1rem;
  aspect-ratio: 1/1;
}
.grid_key .grid_item:hover {
  background-color: rgba(182, 178, 178, 0.6588235294);
  transition: 0.5s;
}
.grid_key .grid_item .content_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}
.grid_key .grid_item .content_wrapper span {
  font-size: 1.5rem;
  margin: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.grid_key .grid_item .content_wrapper p {
  font-size: 1.5rem;
  opacity: 0.8;
  margin: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: left;
}
.grid_key .grid_item.filled {
  background-color: #dddddd;
  opacity: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 50px 0;
  padding: 0 4%;
  width: 100%;
}
.timeline .timeline_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  position: relative;
  width: 100%;
}
.timeline .timeline_container:nth-child(odd) {
  justify-content: flex-start;
}
.timeline .timeline_container:nth-child(odd) .timeline_content {
  justify-content: flex-start;
}
.timeline .timeline_container:nth-child(odd) .timeline_content:hover {
  transition: 0.5s;
  background-color: rgba(129, 128, 128, 0.1254901961);
}
.timeline .timeline_container:nth-child(odd) .timeline_content h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.timeline .timeline_container:nth-child(odd) .timeline_content .date {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.timeline .timeline_container:nth-child(odd) .timeline_content p {
  font-size: 1.1rem;
  opacity: 0.8;
}
.timeline .timeline_container:nth-child(odd):before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}
.timeline .timeline_container:nth-child(even) {
  justify-content: flex-end;
}
.timeline .timeline_container:nth-child(even) .timeline_content {
  justify-content: flex-end;
}
.timeline .timeline_container:nth-child(even) .timeline_content:hover {
  transition: 0.5s;
  background-color: rgba(129, 128, 128, 0.1254901961);
}
.timeline .timeline_container:nth-child(even) .timeline_content h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.timeline .timeline_container:nth-child(even) .timeline_content .date {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.timeline .timeline_container:nth-child(even) .timeline_content p {
  font-size: 1.1rem;
  opacity: 0.8;
}
.timeline .timeline_container:nth-child(even):before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 25px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(50%);
}
.timeline .timeline_container .timeline_content {
  width: 45%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #242424;
  color: #f1F1f1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  border-radius: 16px;
}
.timeline .timeline_line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.story-title {
  text-align: center;
  margin-bottom: 40px;
}
.story-title h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color: #f1F1f1;
  margin-bottom: 4rem;
  text-transform: uppercase;
  display: block;
}

/* Responsive de 450px à 1200px */
@media (max-width: 1200px) and (min-width: 900px) {
  .introduction {
    padding: 3%;
    margin-top: 4rem;
  }
  .introduction .intro_wrapper .title_container h1 {
    font-size: 3.5rem;
  }
  .introduction .intro_wrapper .title_container .download_cv {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
  .about-back {
    position: absolute;
    left: 36px !important;
    font-size: 1.2rem;
    color: #ede8e4;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    top: 60px !important;
  }
  .quote {
    padding: 3% 5%;
  }
  .quote .quote_container p {
    font-size: 2.5rem;
  }
  .grid_key {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 8% 3%;
  }
  .grid_item {
    padding: 0.8rem;
  }
  .content_wrapper span {
    font-size: 1.3rem;
  }
  .content_wrapper p {
    font-size: 1.3rem;
  }
}
@media (max-width: 899px) and (min-width: 600px) {
  .introduction {
    margin-top: 3rem;
  }
  .introduction .intro_wrapper .title_container h1 {
    font-size: 3rem;
    text-align: center;
  }
  .introduction .intro_wrapper .title_container .download_cv {
    font-size: 1.1rem;
    padding: 6px 14px;
  }
  .about-back {
    position: absolute;
    left: 45px !important;
    font-size: 1.2rem;
    color: #ede8e4;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    top: 50px !important;
  }
  .grid_key {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 6% 2%;
  }
  .grid_item {
    padding: 0.7rem;
  }
  .content_wrapper span {
    font-size: 1.2rem;
  }
  .content_wrapper p {
    font-size: 1.2rem;
  }
  .quote {
    padding: 2% 4%;
  }
  .quote .quote_container p {
    font-size: 2rem;
  }
}
@media (max-width: 599px) and (min-width: 450px) {
  .introduction {
    padding: 2%;
  }
  .introduction .intro_wrapper .title_container h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .introduction .intro_wrapper .title_container .download_cv {
    font-size: 1rem;
    padding: 5px 12px;
  }
  .introduction .grid_key {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 5% 1%;
  }
  .introduction .grid_item {
    padding: 0.6rem;
  }
  .introduction .content_wrapper span {
    font-size: 1rem;
  }
  .introduction .content_wrapper p {
    font-size: 1rem;
    text-align: center;
  }
  .introduction .quote {
    padding: 2%;
  }
  .introduction .quote .quote_container {
    width: 90%;
  }
  .introduction .quote .quote_container p {
    font-size: 1.6rem;
    text-align: center;
  }
  .about-back {
    left: 16px !important;
    top: 70px !important;
  }
}
@media (min-width: 375px) and (max-width: 450px) {
  .grid_key {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
  .quote .quote_container p {
    font-size: 1.5rem;
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .introduction .intro_wrapper h1 {
    font-size: 2.5rem;
    text-transform: none;
  }
  .myself {
    height: 280px !important;
    width: 280px !important;
    position: relative !important;
    margin-top: 5rem;
    bottom: 0 !important;
    right: 0 !important;
  }
  .grid_key .grid_title {
    top: 107rem;
  }
  .grid_key .grid_item {
    display: none;
  }
  .grid_key .grid_item.filled {
    display: grid;
  }
  .about-back {
    left: 16px !important;
    top: 70px !important;
  }
}
@media (max-width: 768px) {
  .timeline .timeline_container {
    flex-direction: column;
    align-items: center;
  }
  .timeline .timeline_container .timeline_content {
    width: 80%;
    margin-bottom: 2rem;
  }
  .timeline .timeline_container:nth-child(odd), .timeline .timeline_container:nth-child(even) {
    justify-content: center;
  }
  .timeline .timeline_container:nth-child(odd):before, .timeline .timeline_container:nth-child(even):before {
    content: none;
  }
  .timeline .timeline_line {
    left: 10%;
    width: 1px;
  }
}
@media (max-width: 480px) {
  .timeline .timeline_container .timeline_content {
    width: 90%;
    padding: 15px;
  }
  .timeline .timeline_line {
    left: 5%;
  }
}
.skills-scroll {
  top: 10rem;
}

.skills_section {
  height: 110vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}
.skills_section .skills_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.skills_section .skills_container .upper_container,
.skills_section .skills_container .lower_container {
  display: flex;
  justify-content: space-between;
  gap: 14rem;
}
.skills_section .skills_container .upper_container .upper_skills,
.skills_section .skills_container .upper_container .lower_skills,
.skills_section .skills_container .lower_container .upper_skills,
.skills_section .skills_container .lower_container .lower_skills {
  max-width: 45%;
  width: 100%;
}
.skills_section .skills_container .upper_container .title,
.skills_section .skills_container .lower_container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 2rem;
}
.skills_section .skills_container .upper_container .title h3,
.skills_section .skills_container .lower_container .title h3 {
  font-size: 1.7rem;
  font-family: "PP Neue Montreal", sans-serif;
  color: #f1F1f1;
  text-transform: uppercase;
}
.skills_section .skills_container .upper_container .title span,
.skills_section .skills_container .lower_container .title span {
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(217, 217, 217, 0.6784313725);
}
.skills_section .skills_container .upper_container .under_skills_container,
.skills_section .skills_container .lower_container .under_skills_container {
  display: flex;
  justify-content: space-between;
}
.skills_section .skills_container .upper_container .under_skills_container .left_side,
.skills_section .skills_container .upper_container .under_skills_container .right_side,
.skills_section .skills_container .lower_container .under_skills_container .left_side,
.skills_section .skills_container .lower_container .under_skills_container .right_side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 45%;
}
.skills_section .skills_container .upper_container .under_skills_container .left_side .under_skills,
.skills_section .skills_container .upper_container .under_skills_container .right_side .under_skills,
.skills_section .skills_container .lower_container .under_skills_container .left_side .under_skills,
.skills_section .skills_container .lower_container .under_skills_container .right_side .under_skills {
  font-size: 1.05rem;
  color: rgba(217, 217, 217, 0.6784313725);
  text-transform: uppercase;
  font-family: "PP Neue Montreal", sans-serif;
  padding-bottom: 12px;
  padding-right: 10rem;
  border-bottom: 1px solid rgb(81, 80, 80);
  width: 280px;
  white-space: nowrap;
}
.skills_section .skills_container .upper_container .under_skills_container .left_side .under_skills:hover,
.skills_section .skills_container .upper_container .under_skills_container .right_side .under_skills:hover,
.skills_section .skills_container .lower_container .under_skills_container .left_side .under_skills:hover,
.skills_section .skills_container .lower_container .under_skills_container .right_side .under_skills:hover {
  cursor: default;
}

@media (min-width: 375px) and (max-width: 450px) {
  .skills_section {
    height: 100vh;
    margin: 28rem 0 13rem 0;
  }
  .skills_section .skills_container {
    overflow-x: hidden;
  }
  .skills_section .skills_container .upper_container,
  .skills_section .skills_container .lower_container {
    display: block;
    margin: 0;
    padding: 0 2rem;
  }
  .skills-scroll {
    display: none;
  }
  #scrolling-work {
    display: none;
  }
  .skills_section .skills_container .upper_container .under_skills_container,
  .skills_section .skills_container .lower_container .under_skills_container {
    display: flex;
    gap: 7rem;
  }
  .skills_section .skills_container .upper_container .upper_skills,
  .skills_section .skills_container .lower_container .lower_skills {
    margin-top: 1rem;
    width: 100%;
  }
  .skills_section .skills_container .upper_container .title h3,
  .skills_section .skills_container .lower_container .title h3 {
    font-size: 1.2rem;
  }
  .skills_section .skills_container .upper_container .title span,
  .skills_section .skills_container .lower_container .title span {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
  }
  .skills_section .skills_container .upper_container .under_skills_container .left_side .under_skills,
  .skills_section .skills_container .upper_container .under_skills_container .right_side .under_skills,
  .skills_section .skills_container .lower_container .under_skills_container .left_side .under_skills,
  .skills_section .skills_container .lower_container .under_skills_container .right_side .under_skills {
    font-size: 0.6rem;
    text-transform: none;
  }
  .form_container h3 {
    font-size: 2rem !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .skills-scroll {
    display: none;
  }
  .skills_section {
    margin: 34rem 0 10rem 0;
  }
  #scrolling-work {
    display: none;
  }
  .skills_section .skills_container .upper_container, .skills_section .skills_container .lower_container {
    display: block;
    margin-left: 12rem;
  }
  .skills_section .skills_container {
    padding-left: 18rem;
  }
  .skills_section .skills_container .upper_container .under_skills_container .left_side .under_skills, .skills_section .skills_container .upper_container .under_skills_container .right_side .under_skills, .skills_section .skills_container .lower_container .under_skills_container .left_side .under_skills, .skills_section .skills_container .lower_container .under_skills_container .right_side .under_skills {
    padding-right: 21rem;
    width: auto;
  }
}
.footer_contact {
  margin-top: 8rem;
  position: relative;
}

.testimonials {
  padding: 4rem 2rem;
  text-align: center;
}
.testimonials h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 3rem;
  color: #f1F1f1;
  margin-bottom: 2rem;
}
.testimonials p {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 1.1rem;
  color: rgba(217, 217, 217, 0.6784313725);
  text-align: left;
}
.testimonials h2 + p {
  margin-bottom: 3rem;
  width: 41rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.testimonials .testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.5rem;
  width: 100%;
  max-width: 430px;
  height: auto;
  box-shadow: 0 -5px 10px rgba(94, 93, 93, 0.07), 0 5px 20px rgba(0, 0, 0, 0.05);
}
.testimonials .testimonial-card .testimonial-text {
  font-family: "PP Neue Montreal", sans-serif;
  font-size: 1.1rem;
  color: #f1F1f1;
  margin-bottom: 1rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  text-align: center;
}
.testimonials .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonials .testimonial-card .testimonial-footer .client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials .testimonial-card .testimonial-footer .client-info {
  text-align: left;
}
.testimonials .testimonial-card .testimonial-footer .client-info .client-name {
  font-weight: bold;
  color: #f1F1f1;
  margin: 0;
}
.testimonials .testimonial-card .testimonial-footer .client-info .client-role {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

#footer_about_container {
  display: flex;
}

.footer_about_container {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.footer_about_container .footer_about {
  font-size: 6rem;
  background: linear-gradient(90.01deg, rgba(255, 255, 255, 0.319) -8.79%, rgba(255, 255, 255, 0.49) 51.99%, rgba(255, 255, 255, 0) 109.94%) text;
  color: transparent;
  margin: 2rem 2rem 1.6rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 768px) {
  .testimonials .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
  .testimonials .testimonial-card {
    width: 90%;
    max-width: 100%;
  }
}
@media (min-width: 375px) and (max-width: 475px) {
  .testimonials .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
  .testimonials h2 + p {
    width: 20rem;
  }
  .testimonials .testimonial-card {
    width: 100%;
  }
  .testimonials .testimonial-card .testimonial-footer {
    justify-content: center;
  }
  .footer_about_container .footer_about {
    font-size: 3.5rem;
  }
}
::selection {
  background-color: #4430cf;
}

body {
  background-color: #0e0e0e;
  margin: 0;
}
body main {
  display: none;
}

.back {
  position: absolute;
  left: 126px;
  font-size: 1.2rem;
  color: #ede8e4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  top: 100px;
}

.about-back {
  position: absolute;
  left: 56px;
  font-size: 1.2rem;
  color: #ede8e4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  top: 100px;
}

.back > a {
  text-decoration: none;
  padding-bottom: 1.5px;
  border-bottom: 1px solid #ede8e4;
  color: #ede8e4;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

footer {
  display: none;
}

.navIcon {
  height: 30px;
  width: 30px;
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  body, .skills_section {
    overflow-x: hidden;
  }
}

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