html {
  box-sizing: border-box;
  font-size: 100%;
  --bg: #1d1d1d;
  --color-icon: #ffff;
  --color-logo: #eeeeee;
  --color-heading: #d2d2d2;
  --color-text: #a9a9a9;
  --color-underline: #27ae60;
  --color-icon: #27ae60;
  --color-potato: rgba(249, 249, 249, 0.02);
}

html[data-theme=light] {
  --bg: #ffff;
  --color-logo: #2e2e2e;
  --color-icon: #2e2e2e;
  --color-heading: #263238;
  --color-text: #767676;
  --color-underline: #4f4f4f;
  --color-icon: #4f4f4f;
  --color-switch: #27ae60;
  --color-potato: rgba(146, 227, 169, 0.7);
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Overpass", sans-serif;
  background-color: var(--bg);
  background-image: url("..//..//assets/left.svg"), url("..//..//assets/right.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 -20%, 80% -10%;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
}

p {
  margin-top: 0;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: unset;
}

main {
  position: absolute;
  margin-top: 58px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: 155px;
  margin-bottom: 155px;
}
.navbar__icons svg:not(:last-of-type) {
  margin-right: 1rem;
}
.navbar__icons .twitter {
  fill: var(--color-icon);
}
.navbar__icons .fb, .navbar__icons .m {
  stroke: var(--color-icon);
}
.navbar__logo {
  fill: var(--color-heading);
}
.navbar__toggle input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
.navbar__toggle label {
  cursor: pointer;
  text-indent: -9999px;
  width: 52px;
  height: 27px;
  background: grey;
  float: right;
  border-radius: 100px;
  position: relative;
}
.navbar__toggle label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
.navbar__toggle input:checked + label {
  background: var(--color-switch);
}
.navbar__toggle input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}
.navbar__toggle label:active::after {
  width: 45px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 155px;
}
.hero__article {
  flex-basis: 45%;
}
.hero__article-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 61px;
  color: var(--color-heading);
}
.hero__article-paragraph {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-text);
}
.hero__article .wrapper {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero__article .wrapper svg {
  align-self: center;
}
.hero__article .wrapper svg path {
  stroke: var(--color-underline);
}
.hero__article-cta {
  display: inline-block;
  font-family: "Overpass", sans-serif;
  padding: 11px 52px;
  color: white;
  background: #27ae60;
  border-radius: 55px;
  border: none;
  cursor: pointer;
}
.hero__img svg {
  flex-basis: 55%;
  width: 100%;
  height: 100%;
}
.hero__img .potato {
  fill: var(--color-potato);
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

@media (max-width: 900px) {
  .navbar {
    margin-inline: 2rem;
    margin-bottom: 2rem;
  }
  .hero {
    margin-inline: 2rem;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .navbar {
    margin-inline: 20px;
    margin-bottom: 2rem;
  }
  .navbar__icons svg:not(:last-of-type) {
    margin-right: 1px;
    display: none;
  }
  .hero {
    margin-inline: 20px;
    flex-direction: column;
  }
  .hero__article .wrapper {
    margin-inline: auto;
  }
  .hero__article-title {
    font-size: 34px;
  }
  .hero__article-paragraph {
    font-size: 18px;
    line-height: 24px;
  }
}/*# sourceMappingURL=style.css.map */