/*
  Project Name: Briefy
  Theme URI: http://www.briefy.com.br/
  Author: Yupper Digital
  Author URI: http://www.yupper.digital
  Description: A landing page for Briefy
  Version: 2.0
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Base */
body {
  font: 16px -apple-system, BlinkMacSystemFont, "helvetica", arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero__overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(226, 232, 237, 0.7), #e2e8ed);
}
.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}
.hero__column {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hero__logo {
  margin-bottom: auto;
  margin-top: 40px;
}
.hero__logo a {
  width: 95px;
  height: 80px;
  display: block;
  text-indent: -9999px;
  background: url("../img/briefy.svg") no-repeat;
}
.hero__content {
  margin-bottom: auto;
}
.hero__content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
}
.hero__content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-top: 2rem;
}
.hero__content p {
  margin-top: 2rem;
}
.hero__content p a {
  display: inline-block;
  background-color: #00B5EC;
  text-decoration: none;
  padding: 1rem 1.5rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.25rem;
}
.hero__content p a:hover {
  background-color: #008eb9;
}
.hero__play {
  display: block;
  width: 80px;
  height: 80px;
  text-indent: -99999rem;
  background: #00B5EC url("../img/play.svg") 30px center no-repeat;
  background-size: 24px 24px;
  border-radius: 80px;
  position: absolute;
  top: 50%;
  right: 35%;
  margin-top: -40px;
  transition: all 0.5s;
}
.hero__play:hover {
  background-color: #008eb9;
  transition: all 0.5s;
}

.brands {
  background-color: #000;
  padding: 5rem 0;
}
.brands__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.brands__container img {
  max-height: 30px;
  opacity: 0.8;
}
.brands__container img:hover {
  opacity: 1;
}

.stats {
  background-color: #111;
  padding: 5rem 0;
}
.stats__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.stats__container div {
  text-align: center;
}
.stats__title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}
.stats__subtitle {
  color: #999;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.stats__subtitle span {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.testimonial {
  display: flex;
}
.testimonial__column {
  max-width: 50%;
}
.testimonial__column img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.testimonial__column:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
}
.testimonial__content {
  max-width: 640px;
  padding: 3rem;
}
.testimonial blockquote {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.testimonial p {
  font-size: 1.25rem;
  font-weight: 700;
}
.testimonial p span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
}

.brands-more {
  padding: 5rem 0;
}
.brands-more__container {
  max-width: 1000px;
  margin: 0 auto;
}
.brands-more__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.brands-more__list img {
  max-height: 110px;
}
.brands-more__list img:hover {
  opacity: 1;
}
.brands-more h3 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.testimonials {
  background-color: #000;
  padding: 5rem 0;
}
.testimonials__container {
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.testimonials h3 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials__column {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.3rem;
}
.testimonials__author {
  display: flex;
}
.testimonials__author figure {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 60px;
}
.testimonials__author figure img {
  width: 60px;
  border-radius: 60px;
  height: auto;
}
.testimonials__author div {
  margin: 0.4rem 0 0 1rem;
}
.testimonials__author div h4 {
  font-size: 1.2rem;
}
.testimonials__author div p {
  color: #999;
}
.testimonials blockquote {
  margin-top: 1rem;
  line-height: 1.8rem;
}

.main-footer {
  background-color: #000;
  border-top: 1px solid #222;
  padding: 5rem 0;
}
.main-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.main-footer__content {
  color: #fff;
  max-width: 500px;
  line-height: 1.8rem;
  text-align: justify;
}
.main-footer__content a {
  display: block;
}
.main-footer__nav a {
  color: #fff;
  text-decoration: none;
  background: url("../img/ico-linkedin.svg") left center no-repeat;
  padding: 1rem 0 1rem 2rem;
}
.main-footer__nav a:hover {
  color: #00B5EC;
}

p.copy {
  text-align: center;
  padding: 2rem 0;
}

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