*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

:root {
  --teal: hsl(192, 37%, 48%);
  --light-teal: hsl(192, 54%, 64%);
  --violet: hsl(268, 34%, 53%);
  --light-violet: hsl(268, 55%, 71%);
  --black: hsl(240, 21%, 20%);
  --gray: hsl(240, 10%, 57%);
  --transparent-gray: hsla(240, 10%, 57%, .25);
  --cyan: hsl(192, 90%, 77%);
  --lavender: hsl(268, 100%, 86%);
  --white: hsl(0, 0%, 98%);
}

body {
  font-family: "Red Hat Display", sans-serif;
}

h1 {
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1em;
}
@media (max-width: 78.5em) {
  h1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 31.25em) {
  h1 {
    font-size: 4rem;
    line-height: 1.1em;
  }
}

h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1em;
}
@media (max-width: 31.25em) {
  h2 {
    font-size: 3.2rem;
    line-height: 1.125em;
  }
}

p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444em;
}
@media (max-width: 48em) {
  p {
    font-size: 1.6rem;
    line-height: 1.625em;
  }
}

.overline {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.625em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.btn {
  all: unset;
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 162%;
  padding: 1em 2.5em;
  border-radius: 2.9rem;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}
.btn span {
  margin-left: 0.126em;
}

.btn-1 {
  background-color: var(--teal);
}
.btn-1 span {
  color: var(--cyan);
}
.btn-1:hover {
  background-color: var(--light-teal);
}

.btn-2 {
  background-color: var(--violet);
}
.btn-2 span {
  color: var(--lavender);
}
.btn-2:hover {
  background-color: var(--light-violet);
}
@media (max-width: 48em) {
  .btn-2 {
    padding: 1.054em 2.5075em 0.953em;
  }
}

.divider {
  display: inline-block;
}
.divider__line {
  margin: 0 auto;
  border: none;
  border-left: 0.1rem solid var(--transparent-gray);
  height: 8.4rem;
  width: 0.1rem;
  position: relative;
  left: -0.1rem;
}
.divider__number {
  color: var(--gray);
  background-color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  padding: 1.016em 1.204em 0.916em 1.105em;
  border: 0.1rem solid var(--transparent-gray);
  border-radius: 50%;
}

@media (max-width: 48em) {
  .divider-1__number {
    padding: 0.976em 1.178em 0.775em 1.13em;
  }
}
@media (max-width: 31.25em) {
  .divider-1__line {
    left: 0;
  }
}

.divider-2 {
  position: absolute;
  top: -11.2rem;
}
.divider-2__number {
  padding: 1.037em 1.055em 0.895em 1.055em;
}
@media (max-width: 48em) {
  .divider-2 {
    margin-left: -0.2rem;
  }
  .divider-2__number {
    padding: 0.946em 1.055em 0.805em 1.055em;
  }
}

body {
  min-height: 100vh;
  background-color: var(--white);
  background-image: url(../assets/desktop/image-hero-left.png), url(../assets/desktop/image-hero-right.png);
  background-repeat: no-repeat;
  background-position: left -3.2rem top 16.9rem, right -3.2rem top 22.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 48em) {
  body {
    background-image: none;
  }
}

.header {
  max-width: 54rem;
  width: 100%;
  text-align: center;
  margin-bottom: 11.7rem;
}
.header__logo {
  margin-top: 8rem;
  margin-bottom: 10.4rem;
}
.header__title {
  max-width: 44.5rem;
  margin: 0 auto 0.515625em;
  color: var(--black);
}
.header__description {
  color: var(--gray);
  margin-bottom: 3.3rem;
}
.header__buttons {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.header__what-is-it {
  padding-left: 1.794em;
  padding-right: 1.889em;
}
@media (max-width: 78.5em) {
  .header__title {
    max-width: 33.9rem;
  }
  .header__description {
    max-width: 45.7rem;
    margin: 0 auto 3.1rem;
    font-size: 1.6rem;
  }
  .header__what-is-it {
    padding-left: 1.844em;
    padding-right: 1.839em;
  }
}
@media (max-width: 71.875em) {
  .header__hero {
    margin-bottom: 15rem;
  }
}
@media (max-width: 67.5em) {
  .header__hero {
    margin-bottom: 30rem;
  }
}
@media (max-width: 48em) {
  .header {
    max-width: none;
    width: 100%;
    margin-bottom: 8rem;
  }
  .header__logo {
    margin-top: 4.8rem;
    margin-left: -0.1rem;
    margin-bottom: 6.1rem;
  }
  .header__hero {
    height: 39.453125vw;
    background-image: url(../assets/tablet/image-hero.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 106.8%, contain;
    margin-bottom: 7.2rem;
  }
}
@media (max-width: 31.25em) {
  .header {
    margin-bottom: 6.4rem;
  }
  .header__logo {
    margin-bottom: 5.1rem;
  }
  .header__hero {
    height: 40.8vw;
    background-size: 110.5%, contain;
    margin-bottom: 4.8rem;
  }
  .header__title {
    max-width: 33.8rem;
    margin-bottom: 0.62em;
    padding: 0 2.4rem;
  }
  .header__description {
    max-width: 37.1rem;
    margin-bottom: 3.1rem;
    padding: 0 2.4rem;
  }
  .header__buttons {
    flex-direction: column;
    align-items: center;
  }
  .header__buttons button {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

main {
  width: 100%;
}

.meetings {
  text-align: center;
  margin-bottom: 18.4rem;
}
.meetings__images {
  margin: 6.4rem auto 8.1rem;
  padding: 0 2.4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.meetings__images img {
  max-width: 25.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.8rem;
}
.meetings__built {
  color: var(--teal);
  margin-bottom: 1.6rem;
  padding: 0 2.4rem;
}
.meetings__title {
  max-width: 49.3rem;
  color: var(--black);
  margin: 0 auto 0.75em;
  padding: 0 2.4rem;
}
.meetings__description {
  max-width: 60rem;
  color: var(--gray);
  letter-spacing: -0.0015em;
  margin: auto;
  padding: 0 1.5em;
}
@media (max-width: 48em) {
  .meetings {
    margin-bottom: 19.1rem;
  }
  .meetings__images {
    margin: 6.75rem auto 4.9rem;
    gap: 1.1rem;
  }
  .meetings__images img {
    max-width: 16.4rem;
  }
  .meetings__title {
    margin-bottom: 0.82em;
  }
  .meetings__description {
    max-width: 62rem;
  }
}
@media (max-width: 31.25em) {
  .meetings {
    margin-bottom: 17.5rem;
  }
  .meetings__images {
    margin: 6.4rem auto 6.5rem;
    gap: 6.4220183486vw min(2.5rem, 7.6452599388%);
  }
  .meetings__images img {
    max-width: 15.1rem;
    width: 46.1773700306%;
  }
  .meetings__built {
    margin-bottom: 2.3rem;
  }
  .meetings__title {
    max-width: 37.5rem;
    margin-bottom: 1.02em;
  }
  .meetings__description {
    max-width: 57.3rem;
  }
}

.together {
  padding: 11.606rem 0 10.407rem;
  text-align: left;
  color: var(--white);
  position: relative;
  display: flex;
  justify-content: center;
  gap: 9rem;
}
.together::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/desktop/image-footer.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: -2;
}
.together::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--teal);
  z-index: -1;
  opacity: 0.9;
}
.together__title {
  max-width: 35rem;
  margin-right: 3.5rem;
}
.together__description {
  max-width: 35rem;
  margin-right: 0.2rem;
}
.together__download {
  align-self: center;
  display: flex;
  gap: 0.18em;
}
@media (max-width: 78.5em) {
  .together {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3.2rem;
    padding: 9.2rem 0 6.6rem;
  }
  .together::before {
    background-image: url(../assets/tablet/image-footer.jpg);
  }
  .together__title {
    padding: 0 2.4rem;
    max-width: 45.7rem;
    margin-right: 0;
  }
  .together__description {
    padding: 0 2.4rem;
    max-width: 60.8rem;
    margin-right: 0;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.4444444444em;
  }
}
@media (max-width: 31.25em) {
  .together {
    gap: 2.4rem;
    padding: 9.2rem 0 7.2rem;
  }
  .together::before {
    background-image: url(../assets/mobile/image-footer.jpg);
  }
  .together__title {
    max-width: 45.7rem;
  }
  .together__description {
    max-width: 56rem;
  }
  .together__download {
    margin-left: -0.2rem;
  }
}

.attribution {
  position: absolute;
  bottom: 0;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 0.5em;
}
.attribution p {
  font-size: 1.1rem;
}
.attribution a {
  color: var(--cyan);
  transition: 0.1s;
  text-decoration: none;
}
.attribution a:hover {
  color: var(--white);
}/*# sourceMappingURL=style.css.map */