@import url("styles.css");

main {
  background-color: var(--orange);
}

nav a:nth-child(1) {
  color: var(--orange);
}



.category_headline {
  margin: 0px 0px;
  padding: 60px 0px 30px 0px;
}
.about{
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--darkgrey);
}

.about_content {
  display: flex;
  flex-direction: column;
  width: 100wv;
}

h3 {
  font-family: Eurostile_Bold, sans-serif;
  font-weight: 400;
  padding-bottom: 15px;
  font-size: 2.4rem;
  color: var(--orange);
}


.about_text {
  text-align: left;
  font-size: var(--text_size_normal);
  font-weight: 100;
  line-height: 1.4;
  color: var(--white);
}

.intro {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 40px 0px;
  padding: 40px 0px;
}

.intro_left{
}

.intro_right {
  width: 40vw;
  padding: 20px 0px 20px 80px;
  border-left: 5px solid var(--white);
}

.intro_image {
  height: 250px;
  border-radius: 50%;
  border: 5px solid var(--white);
}


.origin {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0px;
  background-color: var(--darkgrey); 
}

.origin_left {
  width: 55vw;
  padding: 20px 0px 20px 80px;
  border-left: 5px solid var(--white);;

}

.what_we_make {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 40px 0px;
  background-color: var(--darkgrey); 
}

.what_we_make_right {
  width: 40vw;
  padding: 20px 0px 20px 80px;
  border-left: 5px solid var(--white);;
}


.values {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 40px 0px;
  padding-bottom: 60px;
  background-color: var(--darkgrey); 
}

.values_left {
  width: 70vw;
}





.about_text_resume {
  text-align: center;
  width: 100%;
  padding: 30px 0px 60px 0px;
  font-family: Eurostile_Normal, sans-serif;
  background-color: var(--orange);
  color: var(--white);
}


.follow {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  padding: 50px 0px 20px 0px;
}

.follow_button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: Eurostile_Normal, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  background-color: var(--orange);
  color: var(--white);
  width: 270px;
  margin: 20px 20px;
  padding: 12px 8px;
  border-radius: 6px;
  border: 2px solid var(--white);
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.2);

  transition: 300ms background-color;
}

.follow_button:hover {
  background-color: var(--light-orange);
}

.follow_text {
  display: flex;
  align-items: center;
}

.follow_image {
  display: flex;
  justify-content: center;
  align-items: center;
}







@media screen and (max-width: 1000px) {


  .about{
    height: auto;
  }

  .about_content {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .intro {
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
    padding-top: 20px;
  }

  .intro_right {
    width: 90vw;
    padding: 20px 10px 20px 17vw;

  }

  .intro_image {
    width: 50vw;
    height: auto;
    margin-top: 50px;
    margin-bottom: 10px;
  }


  .origin {
    flex-direction: column-reverse;
  }

  .origin_left{
    width: 90vw;
    padding: 20px 10px 20px 17vw;
  }

  .what_we_make {
    flex-direction: column;
  }

  .what_we_make_right{
    width: 90vw;
    padding: 20px 10px 20px 17vw;
  }

  .values {
    flex-direction: column-reverse;
  }

  .values_left{
    width: 90vw;
    padding: 20px 10px 20px 17vw;
  }



  .about_text {
    font-size: min(3.3vw, 18px);
    text-align: left;
  }


  .follow_button:hover {
  background-color: var(--orange);
}

}