@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --strong-cyan: hsl(171, 66%, 44%);
  --light-blue: hsl(233, 100%, 69%);
  --tittle-color:hsl(210, 10%, 33%);
  --paragraph-color: hsl(201, 11%, 66%);
}

button {
  padding: 1.2rem;
  border-style: none;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
button:hover {
  cursor: pointer;
  opacity: 0.8;
}

.cta-ios {
  background-color: var(--strong-cyan);
}

.cta-mac {
  background-color: var(--light-blue);
}

.cont-tittle {
  text-align: center;
  margin-bottom: 5rem;
}
.cont-tittle .section-title {
  color: var(--tittle-color);
  opacity: 0.9;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.cont-tittle .section-p {
  color: var(--paragraph-color);
  font-size: 1rem;
  opacity: 0.7;
  line-height: 1.5rem;
}

@media screen and (min-width: 1240px) {
  .cont-tittle {
    margin: 5rem 20rem;
  }
  .cont-tittle .section-title {
    font-size: 2rem;
  }
  .cont-tittle .section-p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.cont-functions {
  display: flex;
  flex-direction: column;
}
.cont-functions .cont-functions__card {
  text-align: center;
  margin: 1.5rem;
}
.cont-functions .cont-functions__card h3 {
  color: var(--tittle-color);
  margin-bottom: 0.7rem;
  opacity: 0.9;
}
.cont-functions .cont-functions__card p {
  color: var(--paragraph-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

body {
  background: url("../assets/patterns/bg-header-mobile.png") no-repeat;
  background-size: contain;
  font-family: "Bai Jamjuree";
  font-size: 18px;
  min-height: 100vh;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-content: center;
}

@media screen and (min-width: 1240px) {
  body {
    background: url("../assets/patterns/bg-header-desktop.png") no-repeat;
  }
}
.hero {
  min-height: 100vh;
}
.hero .nav__logo {
  text-align: center;
  margin-top: 5.5rem;
  margin-bottom: 3rem;
}
.hero .hero__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.hero .hero__main .hero__main-h1 {
  color: var(--tittle-color);
  opacity: 0.9;
  font-size: 2rem;
}
.hero .hero__main .hero__main-p {
  color: var(--paragraph-color);
  font-size: 1rem;
  opacity: 0.7;
}
.hero .hero__main .hero__main-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media screen and (min-width: 550px) {
  .hero .hero__main .hero__main-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 1240px) {
  .hero .hero__main {
    margin: 2rem 19rem;
  }
  .hero .hero__main .hero__main-h1 {
    color: var(--tittle-color);
    opacity: 1;
    font-size: 2.5rem;
  }
  .hero .hero__main .hero__main-p {
    color: var(--paragraph-color);
    font-size: 1.2rem;
    opacity: 0.7;
  }
}
.advantages__subcont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 8rem;
}
.advantages__subcont .cont-mac {
  width: 100%;
  margin: 0 auto;
}
.advantages__subcont .cont-mac img {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .advantages__subcont .cont-mac {
    width: 50%;
  }
  .advantages__subcont .cont-mac img {
    width: 100%;
  }
}
@media screen and (min-width: 1240px) {
  .advantages__subcont {
    flex-direction: row;
    gap: 2rem;
  }
  .advantages__subcont .cont-mac {
    width: 45%;
    margin: 0 auto;
  }
  .advantages__subcont .cont-mac img {
    width: 100%;
  }
  .advantages__subcont .cont-functions {
    width: 45%;
  }
  .advantages__subcont .cont-functions .cont-functions__card {
    text-align: left;
    margin-right: 15rem;
  }
  .advantages__subcont .cont-functions .cont-functions__card p {
    line-height: 1.5rem;
  }
}
.accesibility {
  margin-bottom: 6rem;
}

.cont-devices {
  width: 100%;
  margin: 0 auto;
  margin-top: -1.5rem;
}
.cont-devices img {
  width: 100%;
}

@media screen and (min-width: 550px) {
  .cont-devices {
    width: 50%;
  }
}
@media screen and (min-width: 1240px) {
  .accesibility {
    margin-bottom: 0rem;
  }

  .cont-devices {
    width: 60%;
    margin-top: 5rem;
  }
}
.tools {
  margin-bottom: 5rem;
}
.tools .cont-functions__card > figure {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1240px) {
  .tools {
    margin-bottom: 10rem;
  }
  .tools .cont-functions {
    flex-direction: row;
    margin: 0 10rem;
    align-items: center;
  }
  .tools .cont-functions .cont-functions__card {
    margin: 0.5rem;
    width: 33.33%;
    min-height: 13rem;
  }
  .tools .cont-functions .cont-functions__card h3 {
    margin-bottom: 1rem;
  }
  .tools .cont-functions .cont-functions__card p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .tools .cont-functions__card > figure {
    margin-bottom: 1.5rem;
  }
}
.partnerships .sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.cont-partnership {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-bottom: 10rem;
}
.cont-partnership .partnership {
  list-style-type: none;
}

@media screen and (min-width: 1240px) {
  .cont-partnership {
    justify-content: center;
    flex-direction: row;
    margin-bottom: 7rem;
  }
}
.downloads {
  margin-bottom: 10rem;
}
.downloads .downloads-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: -2rem;
}

@media screen and (min-width: 550px) {
  .downloads .downloads-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.cont-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.cont-footer .footer__cont-logo {
  width: 20%;
}
.cont-footer .footer__cont-logo img {
  width: 100%;
}
.cont-footer .footer__cont-links {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.cont-footer .footer__cont-links a {
  text-decoration: none;
  color: var(--tittle-color);
  opacity: 0.9;
}
.cont-footer .footer__cont-links a:hover {
  color: var(--strong-cyan);
}
.cont-footer .footer__cont-links .link {
  list-style-type: none;
  text-align: left;
}
.cont-footer .footer__cont-media {
  display: flex;
  gap: 2.5rem;
}
.cont-footer .footer__cont-media svg {
  width: 2rem;
  height: 2rem;
  fill: #4C545C;
}
.cont-footer .footer__cont-media svg:hover {
  cursor: pointer;
}
.cont-footer .footer__cont-media .svg-fb:hover {
  fill: #4267B2;
}
.cont-footer .footer__cont-media .svg-tw:hover {
  fill: #1DA1F2;
}
.cont-footer .footer__cont-media .svg-ig:hover {
  fill: #F77737;
}
.cont-footer .footer__cont-media .media {
  list-style-type: none;
}

@media screen and (min-width: 550px) {
  .cont-footer .footer__cont-logo {
    width: 10%;
  }
}
@media screen and (min-width: 1240px) {
  .cont-footer {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
  }
  .cont-footer .footer__cont-logo {
    width: 5%;
  }
  .cont-footer .footer__cont-links {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    text-align: center;
    margin-left: -10rem;
  }
  .cont-footer .footer__cont-links a {
    text-align: left;
    opacity: 0.7;
  }
  .cont-footer .footer__cont-links a:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/2;
  }
  .cont-footer .footer__cont-links a:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/2;
  }
  .cont-footer .footer__cont-media {
    gap: 1rem;
  }
}

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