html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.main-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: rgb(250, 250, 250);
}

.screen-block {
  width: 100%;
  height: 100vh;
}

#title {
  background-color: #ff383b;
  display: flex;
  flex-direction: column;
}

#title_wrapper {
  padding: 30px;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#title_wrapper #logo {
  max-width: 300px;
  -webkit-filter: drop-shadow(0.5px 0.5px 0px white);
  filter: drop-shadow(0.5px 0.5px 0px white);
}

#title_wrapper #subtitle {
  text-align: center;
  color: white;
  font-size: 18pt;
  letter-spacing: 2pt;
  margin-top: 20px;
}

#title_description {
  background-color: #e53537;
  display: flex;
  justify-content: center;
}

#title_description_container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  max-width: 1000px;
  padding: 20px;
}

#title_description_container p {
  flex: 1 1;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

#title_description_small {
  text-align: end;
  font-size: 14pt;
  line-height: 26px;
  letter-spacing: 2px;
}

#title_description_small .highlight {
  color: white;
}

#title_description_big {
  font-size: 11pt;
}

#title_description_divider {
  width: 2px;
  height: 100%;
  background-color: white;
  margin: 20px;
}

#who_we_are {
  margin: auto;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: space-around;
  justify-content: space-around;
  padding-top: 40px;
  padding-bottom: 40px;
}

#who_we_are .item {
  width: 40%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 1.5px;
  color: rgb(20, 20, 20);
}

.item .title {
  font-weight: 700;
  font-size: 14pt;
  letter-spacing: 1.8px;
  margin: 10px;
}

.item .divider {
  width: 100%;
  height: 2px;
  margin: 10px;
  background: rgb(20, 20, 20);
}

.item .logo {
  font-size: 3em;
  color: #ff383b;
  margin: 10px;
}

.item .description {
  font-size: 10pt;
  margin: 10px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

#products {
  margin: auto;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

#products .title {
  font-weight: 700;
  font-size: 14pt;
  letter-spacing: 1.8px;
  margin-bottom: 30px;
}

#products-wrapper {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 0;
  align-content: space-between;
  column-gap: 5%;
}
.product-item {
  flex: 0 0 30%;
}

.product-item > p {
  font-size: 12pt;
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
}

#contacts {
  background: #ff383b;
  display: flex;
  flex-direction: row;
}

#contacts div {
  flex-grow: 1;
}

#fiacri_front_image {
  background-image: url('images/fiacri_front_1.JPG');
  background-position: center;
  background-size: cover;
}

#contacts_container {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: center;
}

#contacts_container h2 {
  color: #8b2021;
  margin: 0;
  margin-top: 20px;
  letter-spacing: 1px;
  font-size: 12pt;
}

#contacts_container p {
  color: white;
  margin: 0;
  font-size: 13pt;
  letter-spacing: 1px;
  font-weight: 500;
}

#contacts_container p a {
  color: inherit;
  text-decoration: none;
}

#footer {
  width: 100%;
  background: #8b2021;
  color: white;
  text-align: center;
  margin: 0;
  padding: 10px;
  font-size: 8pt;
}

.marker {
  border: none;
  cursor: pointer;
  height: 22px;
  width: 22px;
  background-image: url(images/favicon/favicon-32x32.png);
  background-color: rgba(0, 0, 0, 0);
  background-size: contain;
}

@media only screen and (max-width: 1000px) {
  #products .title {
    margin: 10px;
  }

  #products-wrapper {
    display: flex;
    flex-direction: column;
    align-content: center;
  }
  .product-item {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 10px;
  }
}

@media only screen and (max-width: 600px) {
  #title_description_container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    max-width: 1000px;
    padding: 20px;
  }

  #title_description_container p {
    flex: 1 1;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }

  #title_description_small {
    text-align: center;
    font-size: 14pt;
    line-height: 26px;
    letter-spacing: 2px;
  }

  #title_description_small span {
    color: white;
  }

  #title_description_big {
    text-align: center;
    font-size: 11pt;
  }

  #title_description_divider {
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 20px;
  }

  #fiacri_front_image {
    display: none;
  }

  #who_we_are .item {
    width: 80%;
  }
}
