@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;600&family=Ubuntu:wght@400;500;700&display=swap");
:root {
  --light-red: hsl(356, 100%, 66%);
  --vlight-red: hsl(355, 100%, 74%);
  --vdark-blue: hsl(208, 49%, 24%);
  --white: hsl(0, 0%, 100%);
  --grayish-blue: hsl(240, 2%, 79%);
  --vldark-blue: hsl(207, 13%, 34%);
  --vdark--black-blue: hsl(240, 10%, 16%);
  --bg-vlight-red: hsl(13, 100%, 72%);
  --bg-light-red: hsl(353, 100%, 62%);
  --bg-vdark-blue: hsl(237, 17%, 21%);
  --bg-desatured-blue: hsl(237, 23%, 32%);
  --bg-nav__item: hsl(240, 7%, 94%);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Overpass", sans-serif;
  font-size: 1rem;
  background-color: var(--white);
  text-align: center;
}

input {
  display: none;
}

a {
  text-decoration: none;
  color: var(--vldark-blue);
}

h1 {
  font-size: 6rem;
}

h2,
h3,
h4 {
  color: var(--bg-vdark-blue);
  font-size: 5rem;
}

ul {
  list-style-type: none;
}

p {
  font-size: 2rem;
  opacity: 0.7;
  line-height: 4.6rem;
}

a {
  font-size: 2.75rem;
}

section {
  margin: 0 auto;
}

@media (min-width: 1000px) {
  h1 {
    font-size: 4rem;
  }
  h2,
  h3,
  h4 {
    font-size: 2rem;
  }
  p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  a {
    font-size: 1rem;
    font-weight: 400;
  }
}
header {
  color: var(--white);
  border-bottom-left-radius: 15rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header__background {
  background-image: linear-gradient(to bottom right, var(--bg-vlight-red) 15%, var(--bg-light-red));
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
}

.header__background__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-pattern-intro.svg);
  background-size: 204rem;
  background-position: left -46rem top -28rem;
  z-index: 3;
}

.header__nav {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  padding: 8rem 4rem;
  width: unset;
}

hr {
  display: block;
}

.header__logo {
  width: 16em;
  height: 7rem;
}

.icon__hamburger {
  display: block;
  width: 5rem;
  height: 4rem;
}

.icon__close {
  display: none;
  width: 5rem;
  height: 4rem;
}

.navbar {
  z-index: 11;
  display: none;
  flex-direction: column;
  background-color: var(--white);
  color: var(--vldark-blue);
  font-family: "Ubuntu", serif;
  gap: 2rem;
  padding: 6rem;
  width: 88%;
  position: absolute;
  left: 50%;
  top: 19rem;
  transform: translate(-50%);
}

/* Checkbox  Hamburger Mobile Menu */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#checkbox__hamburger {
  display: none;
  position: absolute;
  z-index: -3;
}

#checkbox__hamburger:checked + .icon__hamburger {
  display: none;
}

.header__nav #checkbox__hamburger:checked + .icon__hamburger + .icon__close {
  display: block;
  transition: opacity 1s ease-in;
}

.header__nav #checkbox__hamburger:checked + .icon__hamburger + .icon__close + .navbar {
  display: flex;
}

/* Checkbox  Navbar Menu */
/* Styling */
.nav__item {
  display: none;
  flex-direction: column;
  padding: 3rem;
  gap: 0.6rem;
  background-color: var(--bg-nav__item);
}

.navbar span {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  margin: 1rem;
  font-family: "Ubuntu", serif;
}

.nav__item li {
  display: block;
  font-weight: 400;
}

/* Nav__Item Checkbox */
#checkbox__product:checked + .product {
  display: flex;
}

#checkbox__company:checked + .company {
  display: flex;
}

#checkbox__connect:checked + .connect {
  display: flex;
}

/* Nav login */
.navbar__login {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: unset;
  margin-right: unset;
  margin-left: unset;
}

.navbar__login a:last-child {
  padding: 1rem 4rem;
  background-image: linear-gradient(to right, var(--bg-vlight-red) 30%, var(--bg-light-red));
  background-color: unset;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 4rem;
  color: var(--white);
  font-weight: 600;
}

@media (min-width: 1000px) {
  header {
    border-bottom-left-radius: 5rem;
  }
  .header__background__img {
    background-size: 216rem;
    background-position: left -33rem top -91rem;
    z-index: 2;
  }
  .header__nav {
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: static;
  }
  hr {
    display: none;
  }
  .header__logo {
    z-index: 10;
    width: 100px;
    height: 2.4rem;
  }
  .icon__hamburger {
    display: none;
  }
  .header__nav #checkbox__hamburger:checked + .icon__hamburger + .icon__close {
    display: none;
  }
  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
    gap: 1rem;
    color: var(--white);
    background-color: inherit;
    margin-left: 50px;
    padding: 0;
    height: 100%;
    top: 0;
  }
  .navbar span {
    font-size: 1rem;
    font-weight: bold;
  }
  .navbar span:hover {
    font-weight: bold;
    opacity: 80%;
    cursor: pointer;
  }
  .nav__item {
    display: none;
    position: absolute;
    flex-direction: column;
    padding: 1rem;
    gap: 0.6rem;
    background-color: var(--bg-nav__item);
  }
  .navbar__login {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 350px;
    align-items: center;
    margin-left: 200px;
    margin-right: 0;
    gap: 0;
  }
  .navbar__login a {
    color: var(--white);
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1rem;
    text-decoration: none;
  }
  .navbar__login a:hover {
    font-weight: normal;
    opacity: 80%;
  }
  .navbar__login a:last-child {
    padding: auto 2rem;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    background-image: unset;
    background-color: var(--white);
    color: var(--light-red);
  }
  .navbar__login a:last-child:hover {
    background-color: var(--bg-vlight-red);
    color: white;
  }
}
.header__content {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 7;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
}

.header__content h1 {
  font-size: 6rem;
  line-height: 9rem;
  font-weight: 700;
}

.header__content p {
  padding: 0 2rem;
  opacity: 0.9;
}

.header__content__link {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 6rem auto;
}

.header__content a {
  padding: 2rem 3rem;
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 4rem;
  outline: none;
  font-weight: 500;
  vertical-align: middle;
  font-family: "Ubuntu";
}

.header__content a:first-child {
  background-color: white;
  color: var(--light-red);
}

@media (min-width: 1000px) {
  .header__content {
    gap: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 8rem 0 6rem;
  }
  .header__content h1 {
    font-size: 3.8rem;
    line-height: 5rem;
    font-weight: 700;
  }
  .header__content p {
    padding: 0 2rem;
  }
  .header__content__link {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
  }
  .header__content a {
    padding: 1rem 2rem;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 4rem;
  }
  .header__content a:first-child {
    background-color: white;
    color: var(--light-red);
    border: 1px solid transparent;
  }
  .header__content a:first-child:hover {
    background-color: var(--bg-vlight-red);
    border: 1px solid transparent;
    color: white;
  }
  .header__content a:last-child:hover {
    background-color: var(--bg-vlight-red);
    border: 1px solid transparent;
    color: white;
  }
}
.section__graph {
  display: block;
}

.section__graph h2 {
  color: var(--vdark-blue);
  padding: 20rem 0 12rem;
}

.graph {
  background-image: url("../images/illustration-editor-mobile.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 54rem;
  margin: 0 auto;
}

.container__graph__article {
  padding: 4rem 2rem;
  text-align: center;
  margin: 0;
}

.container__graph__article h3 {
  padding: 4rem 2rem 2rem;
}

.container__graph__article p {
  padding: 2rem;
  line-height: 4rem;
  margin: 1rem auto 2.4rem;
  color: var(--vldark-blue);
}

@media (min-width: 1000px) {
  .section__graph {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1440px;
  }
  .section__graph h2 {
    padding: 8rem 0 2rem;
    z-index: 2;
  }
  .graph {
    background-image: url("../images/illustration-editor-desktop.svg");
    background-position: left center;
    background-size: 41rem;
    width: 30rem;
    height: 64rem;
    top: -4rem;
    right: 0rem;
    right: 0rem;
    margin: 0;
    z-index: 14;
    position: absolute;
  }
  .container__graph__article {
    padding: 2rem 4rem 2rem 6rem;
    text-align: left;
    margin: 0 50% 0 0;
  }
  .container__graph__article h3 {
    padding: 1rem;
    font-size: 1.3rem;
  }
  .container__graph__article p {
    font-size: 1.4rem;
    padding: 1rem;
    line-height: unset;
    margin: unset;
  }
}
@media (min-width: 1439px) {
  .graph {
    background-image: url("../images/illustration-editor-desktop.svg");
    background-position: left center;
    background-size: 47rem;
    width: 47rem;
    height: 62rem;
    right: 0rem;
    margin: 0;
    z-index: 14;
    position: absolute;
  }
  .container__graph__article {
    padding: 2rem 4rem;
    text-align: left;
    margin: 0 50% 0 0;
  }
}
.section__phone {
  position: relative;
  margin: 10rem auto;
  padding: 26rem 0 4rem;
  max-width: 1440px;
}

.phone {
  background-image: url(../images/illustration-phones.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60rem;
  position: absolute;
  left: 50%;
  top: 0rem;
  transform: translate(-50%);
  z-index: 3;
  height: 60rem;
  width: 100%;
}

.container__phone {
  background-color: var(--bg-vdark-blue);
  border-top-right-radius: 15rem;
  border-bottom-left-radius: 15rem;
  position: relative;
  overflow: hidden;
}

.container__phone__background {
  background-image: url("../images/bg-pattern-circles.svg");
  background-size: 100rem;
  background-position: center -40rem;
  background-repeat: no-repeat;
  position: absolute;
  height: 80rem;
  width: 100%;
  z-index: 1;
}

.container__phone__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
  position: relative;
  z-index: 4;
  padding: 36rem 2rem 16rem;
}

.container__phone__content h2 {
  font-size: 6rem;
  color: var(--white);
}

.container__phone__content p {
  font-family: "Overpass", serif;
  letter-spacing: 3px;
  padding: 2rem;
}

@media (min-width: 1000px) {
  .section__phone {
    position: relative;
    padding: 6rem 0;
    margin: 6rem auto 0;
  }
  .phone {
    background-size: 29rem;
    left: 19rem;
    top: 3rem;
    height: 29rem;
    width: 29rem;
    margin: 0 auto;
    position: absolute;
  }
  .container__phone {
    border-top-right-radius: 5rem;
    border-bottom-left-radius: 5rem;
    max-width: 1440px;
    margin: 0 auto;
    max-height: 28rem;
  }
  .container__phone__background {
    background-size: 49rem;
    background-position: left -13rem top -22rem;
    height: 60rem;
  }
  .container__phone__content {
    padding: 0 2rem 0 6rem;
    margin: 0 0 0 44%;
    text-align: left;
    height: 24rem;
  }
  .container__phone__content h2 {
    font-size: 2rem;
  }
  .container__phone__content p {
    letter-spacing: 1px;
    font-size: 1rem;
    padding: unset;
  }
}
@media (min-width: 1440px) {
  .container__phone__content {
    padding: 2rem 6rem;
    margin: 0 0 0 44%;
    text-align: left;
    height: 24rem;
  }
}
.section__laptop {
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
}

.laptop {
  background-image: url("../images/illustration-laptop-mobile.svg");
  background-repeat: no-repeat;
  background-size: 80rem;
  background-position: center;
  height: 60rem;
  width: 100%;
}

.container__laptop__content {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem 4rem;
  gap: 2rem;
}

.container__laptop__content h3 {
  margin: 6rem auto;
}

@media (min-width: 1000px) {
  .section__laptop {
    padding: 6rem 0 10rem;
    max-width: 1440px;
    margin-bottom: unset;
    flex-direction: row;
    align-items: center;
    position: relative;
    overflow: visible;
  }
  .container__laptop__img {
    position: relative;
    width: 50%;
    height: 100%;
  }
  .laptop {
    background-image: url("../images/illustration-laptop-desktop.svg");
    background-position: center center;
    background-size: 50rem;
    height: 50rem;
    width: 50rem;
    top: -25rem;
    right: 5rem;
    position: absolute;
    overflow: visible;
  }
  .container__laptop__content {
    width: 50%;
    padding: 2rem 4rem 1rem 0;
    text-align: left;
  }
  .container__laptop__content h3 {
    margin: 1rem auto;
  }
  .container__laptop__content p {
    line-height: 1.8rem;
  }
}
footer {
  border-top-right-radius: 15rem;
  background-color: var(--bg-vdark-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3rem;
  font-family: "Ubuntu", serif;
  padding: 10rem auto;
}

.footer__logo {
  margin: 10rem auto;
  width: 18rem;
  height: unset;
}

.footer__content h4 {
  color: var(--white);
  margin-bottom: 4rem;
  font-weight: 400;
}

.footer__content ul {
  display: flex;
  flex-direction: column;
  font-family: "Overpass", serif;
  gap: 1.8rem;
  margin-bottom: 6rem;
}

.footer__content a {
  color: var(--white);
  opacity: 0.7;
}

@media (min-width: 1000px) {
  footer {
    border-top-right-radius: 5rem;
  }
  .container__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 3rem 6rem;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .footer__logo {
    margin: unset;
    width: 5rem;
    height: 2rem;
  }
  .footer__content h4 {
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
  }
  .footer__content ul {
    gap: 0.6rem;
    margin-bottom: unset;
  }
  a:hover {
    opacity: 1;
    color: white;
  }
}/*# sourceMappingURL=main.css.map */