:root {
  --font-sans: "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html{
    scroll-behavior:smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Futura-PT";
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
}

.menu_list {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.menu_link {
  color: white;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 2px solid #FF0000;
  padding-bottom: 0.2rem;
}
.menu_link:hover {
  color: #FF0000;
}

.hero {
  background-color: black;
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) [inner-start] minmax(0, 67.5rem) [inner-end] minmax(2rem, 1fr);
}
.hero_inner {
  display: flex;
  align-items: center;
  grid-column: inner;
  margin-top: 6rem;
  gap:2rem;
}

.hero_presentation {
  color: white;
  font-weight: 500;
  font-size: 2rem;
  min-width:0;
  width:100%;
  border-left: 3.5px solid #FF0000;
  padding-left: 1.1rem;
}

.hero_presentation span {
    white-space: nowrap;
}

.hero_presentation span {
  font-size: 2.5rem;
  font-weight: bolder;
}
.hero_photo {
  max-width: 600px;
}

.project-page{
    padding-top:32px;
    background:#f5f5f5;
    min-height:100vh;
}

.project-page_inner{
    max-width:1200px;
    margin:auto;
    padding:2rem;
}

.project-page h1{
    font-size:3rem;
}

.project-gallery{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));
    gap:1rem;
    margin-top:2rem;
}

.project-gallery img{
    width:100%;
    border-radius:10px;
}

.projects_title {
    white-space: nowrap;
}

.back-link{
    color:#FF0000;
    text-decoration:none;
    font-weight:bold;
}

@media screen and (min-width: 50rem) {
  .triangle {
    position: relative;
    height: 15vw;
    background-color: #F5F5F5;
  }
  .triangle::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12vw 49.3vw 0 49.3vw;
    border-color: black transparent transparent transparent;
  }
  .triangle2 {
    position: relative;
    height: 20vw;
    background-color: black;
  }
  .triangle2::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12vw 49.3vw 0 49.3vw;
    border-color: #F5F5F5 transparent transparent transparent;
  }
}

.header {
  background-color: black;
  position: fixed;
  width: 100%;
  height: 80px;
  display: grid;
  z-index: 999;
}
.header_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  max-width: 1280px;
}
.header .name {
  color: #FF0000;
  font-size: 24px;
}
.header .name:hover {
  transform: scale(1.02);
}

.about {
  background-color: #F5F5F5;
}

.about,
.projects,
.contact {
  display: grid;
  grid-template-columns:
    minmax(2rem, 1fr)
    [inner-start]
    minmax(0, 85rem)
    [inner-end]
    minmax(2rem, 1fr);
}

.projects {
  padding-bottom: 3rem;
}

.about_inner {
  grid-column: inner;
}
.about ul {
  margin: 0;
  padding: 0;
}

.about_inner,
.projects_inner,
.contact_inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
}

.about_title {
  color: black;
  border-bottom: 3px solid #FF0000;
  font-weight: bolder;
  font-size: 2.7rem;
  width: 160px;
}
.about_intro {
  color: black;
  font-weight: 500;
  font-size: 1.3rem;
}
.about_lists {
  display: flex;
}
.about_item_positive {
  list-style: none;
  font-size: 21px;
  padding: 0.4rem;
}
.about_item_negative {
  list-style: none;
  font-size: 21px;
  padding: 0.4rem;
  margin-left: 4rem;
}
.about_icon {
  max-width: 25px;
  max-height: 25px;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 8px;
}
.about_icon2 {
  max-width: 18px;
  max-height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 6px;
}

.projects {
  background-color: #F5F5F5;
  display: grid;
  grid-template-columns:
    minmax(2rem, 1fr)
    [inner-start]
    minmax(0, 85rem)
    [inner-end]
    minmax(2rem, 1fr);
}
.project_image img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    border-radius:8px;
}
.projects_inner {
  grid-column: inner;
}

.projects_content{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.projects_title {
  color: black;
  border-bottom: 3px solid #FF0000;
  font-weight: bolder;
  font-size: 2.7rem;
  width: fit-content;
}

.project, .project2 {
  display: flex;
  flex-direction: column;
}
.project_image img{
    width:100%;
    height:auto;
    display:block;
}
.project figure, .project2 figure {
  margin: 0;
  padding: 0;
}
.project figure:hover, .project2 figure:hover {
  transform: scale(1.01);
}
.project_title, .project2_title {
  font-size: 1.5rem;
}
.project_content, .project2_content {
  font-size: 18px;
}
.project_readmore, .project2_readmore {
  color: #FF0000;
  font-weight: bolder;
  font-size: 18px;
  text-decoration: none;
}
.project_readmore:hover, .project2_readmore:hover {
  border-bottom: 2px solid #FF0000;
}

@media screen and (min-width: 60rem) {
  .project2 {
    margin-left: 80px;
  }
}
.contact {
  background-color: black;
}
.contact_inner {
  grid-column: inner;
}
.contact_title {
  color: white;
  border-bottom: 3px solid #FF0000;
  font-weight: bolder;
  font-size: 2.7rem;
  width: 155px;
}
.contact_number_email {
  color: white;
  font-size: 1.3rem;
}
.contact_icons {
  max-width: 100px;
  padding-bottom: 16px;
}
.contact_content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer {
  background-color: black;
  display: flex;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 2rem;
}
.footer_content {
  color: #FF0000;
}

.hamburger{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
}

html,
body{
    overflow-x:hidden;
}

.project-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.project-link:visited{
    color:inherit;
}

.project-link:hover{
    color:inherit;
}

.project-link .project_title{
    color:black;
    text-decoration:none;
}

.project-link:visited .project_title{
    color:black;
}

.project-link{
    transition:0.2s;
}

.project-link:hover{
    transform:translateY(-3px);
}

.project-page_inner{
    max-width:900px;
    margin:0 auto;
    padding:2rem;
}

.project-page h1{
    text-align:center;
}

.back-link{
    display:block;
    margin-bottom:3rem;
}

#projectDescription{
    max-width:700px;
    margin:2rem auto;
    text-align:center;
}

.project-gallery{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2rem;
}

.project-gallery img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    border-radius:10px;
}

.project-page_inner{
    max-width:900px;
    width:100%;
    margin:0 auto;
    padding:2rem;
}

.project-page h1 {
    text-align: center;
    white-space: normal;
}

@media (max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    .hero_presentation span{
        font-size: 1em;
        font-weight: 600;
    }

    .header .name{
        font-size:1.2rem;
    }

    .projects_title {
        font-size: 2.2rem;
        white-space: nowrap;
    }

      .project-page h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .projects_header {
        width: fit-content; 
    }

    .hamburger{
        display:block;
    }

    .menu{
        display:none !important;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:black;
    }

    .menu.active{
        display:block !important;
    }

    .menu_list{
        flex-direction:column;
        align-items:center;
        padding:2rem 0;
    }

    .hero_photo{
        display:none;
    }

    .hero_inner{
        flex-direction:column;
        text-align:center;
    }

    .hero_presentation{
        border-left:none;
        padding-left:0;
        font-size:1.4rem;
    }

    .about_lists{
        flex-direction:column;
    }

    .about_item_negative{
        margin-left:0;
    }

    .projects_content{
        grid-template-columns:1fr;
    }

    .header_inner{
    padding:0 1rem;
    }

    .hero{
        min-height:auto;
    }

    .hero_inner{
        padding-bottom:1.5rem;
    }

    .about_intro{
        font-size:1.1rem;
    }

    .about_item_positive,
    .about_item_negative{
        font-size:1rem;
    }

    .footer_content {
    padding: 2rem;
    text-align: center;
}

/*# sourceMappingURL=style.css.map */
}