@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&display=swap");

html, body {
  font-family: "Josefin Sans", Helvetica, Helvetica Neue, Roboto, Arial, sans-serif;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border: 0;
}
* {
  box-sizing: border-box;
}

/* General */
section {
  display: block;
  padding: 4rem 1.5rem;
}
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
a,
a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* Sections */
section.main {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #8D8D8D;
  background-position: center;
  background-size: cover;
}
section.main > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.main .column {
  padding: 0 2rem;
}
section.main .column-description {
  width: 30%;
}
section.main .column-description p.standard {
  font-size: 2.1rem;
  font-weight: 700;
  transition: all 0.3s ease-out;
}
section.main .column-description p.specific {
  display: none;
  font-size: 1.5rem;
  font-weight: 500;
}
section.main .column-description.specific p.standard {
  display: none;
}
section.main .column-description.specific p.specific {
  display: block;
}
section.main .column-icons {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
}
section.main .column-icons .icon {
  display: block;
  width: 50%;
  padding: 8%;
  transition: all 0.3s ease-out;
}
section.main .column-icons .icon:hover {
  transform: scale(1.2);
}
section.main .column-icons .icon > img {
  width: 100%;
  display: block;
}
section.main .column-brand {
  width: 30%;
  text-align: center;
}
section.main .column-brand .logo > img {
  max-height: 3.5rem;
}
@media screen and (max-width: 767px) {
  section.main {
    padding-top: 1rem;
  }
  section.main > .container {
    display: block;
  }
  section.main .column {
    width: 100%;
    padding: 0;
  }
  section.main .column-description {
    height: 6rem;
    margin-bottom: 1rem;
  }
  section.main .column-description p.standard {
    font-size: 1.5rem;
  }
  section.main .column-description p.specific {
    font-size: 1rem;
  }
  section.main .column-icons {
    max-width: 300px;
    margin: 0 auto 2rem auto;
  }
  section.main .column-brand .logo > img {
    max-height: 1.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  section.main .column {
    padding: 0 1rem;
  }
  section.main .column-description p.standard {
    font-size: 1.75rem;
  }
  section.main .column-description p.specific {
    font-size: 1.25rem;
  }
  section.main .column-brand .logo > img {
    max-height: 2.25rem;
  }
}

/* Social bar */
.social-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
}
.social-bar > .container {
  display: flex;
  justify-content: flex-end;
}
.social-bar a {
  display: block;
}
.social-bar a > img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem;
}
@media screen and (max-width: 767px) {
  .social-bar a > img {
    width: 1rem;
    height: 1rem;
  }
}
