@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
* {
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.42; }
  body .container,
  body .container-fluid,
  body .container-xxl,
  body .container-xl,
  body .container-lg,
  body .container-md,
  body .container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto; }
  @media (min-width: 576px) {
    body .container-sm, body .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    body .container-md, body .container-sm, body .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    body .container-lg, body .container-md, body .container-sm, body .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    body .container-xl, body .container-lg, body .container-md, body .container-sm, body .container {
      max-width: 1140px; } }
  @media (min-width: 1400px) {
    body .container-xxl, body .container-xl, body .container-lg, body .container-md, body .container-sm, body .container {
      max-width: 1320px; } }
  body .flex {
    display: flex; }

html {
  scroll-behavior: smooth; }

*::-webkit-scrollbar {
  width: 8px;
  height: 8px; }

*::-webkit-scrollbar-thumb {
  background-color: #2b5e47;
  border-radius: 10px; }

*::-webkit-scrollbar-track {
  background-color: #e6e6e6; }

:root {
  /* Fonttikoot */
  --fs-s: 14px;
  --fs-m: 18px;
  --fs-l: 22px;
  --fs-xl: 32px;
  --fs-xxl: 68px;
  /* Väripaletti */
  --black: #0A0B0D;
  --gray: #AEB1B4;
  --lightgray: #EFF3F8;
  --white: #ffffff;
  --green: hsl(152, 37%, 27%);
  --lightgreen: hsl(152, 37%, 33%);
  /* Trasitio */
  --transition: all 0.5s ease-in;
  /* gradientit */
  --green-gradient: linear-gradient(90deg, #2E6451, #005E65); }
  @media (max-width: 768px) {
    :root {
      --fs-xxl: 52px; } }
  @media (max-width: 480px) {
    :root {
      --fs-xxl: 40px; } }

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: var(--fs-m);
  background-color: var(--green);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition); }
  .button:hover {
    background-color: var(--lightgreen); }
  .button.big {
    padding: 15px 60px;
    border-radius: 30px; }
  .button.inline {
    background-color: transparent;
    color: var(--black); }
    .button.inline:hover {
      text-decoration: underline; }

.s-title {
  font-size: var(--fs-m);
  color: var(--black);
  margin: 0; }

.s-b-title {
  font-size: var(--fs-m);
  font-weight: 900;
  color: var(--black);
  margin: 0; }

.m-title {
  font-size: var(--fs-l);
  color: var(--black);
  margin: 0; }

.l-l-title {
  font-size: var(--fs-xl);
  color: var(--black);
  font-weight: 200;
  margin: 0; }

.xxl-l-title {
  font-size: var(--fs-xxl);
  color: var(--black);
  font-weight: 300;
  margin: 0; }

.m-text {
  font-size: var(--fs-m);
  color: var(--black);
  margin: 0; }

.m-b-text {
  font-size: var(--fs-m);
  font-weight: 600;
  color: var(--black);
  margin: 0; }

.m-l-text {
  font-size: var(--fs-m);
  font-weight: 300;
  color: var(--black);
  margin: 0; }

.xs-text {
  font-size: var(--fs-s);
  margin: 0; }

.m-b-link {
  font-size: var(--fs-m);
  color: var(--green);
  font-weight: 800;
  margin: 0;
  text-decoration: none; }
  .m-b-link:hover {
    text-decoration: underline; }

.top-banner {
  padding: 12px 0 10px;
  background: var(--green-gradient); }
  .top-banner .flex {
    gap: 40px; }
  .top-banner a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--fs-s);
    color: var(--white);
    text-decoration: none;
    line-height: 1.1; }
    .top-banner a svg {
      margin-top: -4px;
      height: 15px;
      width: 15px; }
    .top-banner a:hover {
      text-decoration: underline; }

#nav {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid var(--lightgray); }
  #nav .flex {
    align-items: center; }
    @media (max-width: 480px) {
      #nav .flex {
        justify-content: space-between; } }
    #nav .flex svg {
      height: 40px;
      aspect-ratio: 1/1; }
    #nav .flex nav {
      display: flex;
      gap: 20px;
      flex: 1;
      padding: 7px 40px 0; }
      #nav .flex nav a {
        line-height: 1;
        color: var(--black);
        font-size: var(--fs-m); }
      @media (max-width: 480px) {
        #nav .flex nav {
          display: none; }
          #nav .flex nav.mobile-open {
            position: absolute;
            top: 101%;
            display: flex;
            flex-direction: column;
            gap: 0;
            width: 100%;
            padding: 0;
            background-color: #fff; } }
  #nav svg {
    height: 40px;
    margin-left: -9px; }
  #nav a {
    text-decoration: none;
    transition: transform 0.3s ease-in; }
    #nav a:hover {
      text-decoration: underline; }
    @media (max-width: 480px) {
      #nav a {
        position: relative;
        transform: translateX(-100%);
        border-bottom: 1px solid var(--lightgray);
        padding: 30px 15px; }
        #nav a::after {
          content: ">";
          position: absolute;
          right: 40px; } }
  #nav a.animate {
    transform: translateX(0);
    transition: transform 0.3s ease-in; }
  #nav a:nth-child(1).animate {
    transition-delay: 0s; }
  #nav a:nth-child(2).animate {
    transition-delay: 0.1s; }
  #nav a:nth-child(3).animate {
    transition-delay: 0.2s; }

header {
  padding: 100px 0; }
  header .flex {
    flex-direction: column;
    align-items: center; }
    header .flex .content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 600px;
      text-align: center; }
      header .flex .content .button {
        width: fit-content;
        margin-top: 30px; }
    header .flex svg {
      max-height: 400px; }
      @media (max-width: 768px) {
        header .flex svg {
          display: none; } }

section#tuotteet {
  padding: 100px 0;
  /* Ensimmäinen kortti */
  /* Toinen kortti */
  /* kolmas kortti */ }
  section#tuotteet .l-l-title {
    margin: 20px 0 80px; }
  section#tuotteet .cards {
    display: flex;
    justify-content: space-between;
    gap: 40px; }
    @media (max-width: 1080px) {
      section#tuotteet .cards {
        flex-direction: column;
        gap: 120px; } }
    section#tuotteet .cards .card {
      position: relative;
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      padding-bottom: 100px; }
      section#tuotteet .cards .card .top {
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        background-color: var(--lightgray);
        border-radius: 50px;
        margin-bottom: 50px;
        padding: 50px; }
        @media (max-width: 1080px) {
          section#tuotteet .cards .card .top {
            margin-bottom: 30px; } }
        section#tuotteet .cards .card .top svg {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 45%; }
          @media (max-width: 1080px) {
            section#tuotteet .cards .card .top svg {
              width: 60%; } }
          section#tuotteet .cards .card .top svg .green {
            fill: var(--green); }
      section#tuotteet .cards .card .l-l-title {
        margin-bottom: 20px; }
      section#tuotteet .cards .card a {
        display: block; }
      section#tuotteet .cards .card ul {
        margin-top: 30px;
        padding-inline-start: 20px; }
      section#tuotteet .cards .card:last-child .top svg {
        width: 43%; }
        @media (max-width: 1080px) {
          section#tuotteet .cards .card:last-child .top svg {
            width: 58%; } }
      section#tuotteet .cards .card .buttons {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 50px; }
  section#tuotteet .cards .card:nth-child(1) .top {
    position: relative; }
    section#tuotteet .cards .card:nth-child(1) .top::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -50px;
      height: 100px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: var(--green);
      z-index: -1; }
      @media (max-width: 1080px) {
        section#tuotteet .cards .card:nth-child(1) .top::before {
          height: 80px;
          top: -40px;
          left: -40px; } }
    section#tuotteet .cards .card:nth-child(1) .top::after {
      content: "";
      position: absolute;
      bottom: -20px;
      right: 20px;
      height: 200px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: var(--green);
      z-index: -1; }
      @media (max-width: 1500px) {
        section#tuotteet .cards .card:nth-child(1) .top::after {
          right: 50px; } }
      @media (max-width: 1080px) {
        section#tuotteet .cards .card:nth-child(1) .top::after {
          height: 300px;
          bottom: -50px;
          right: -200px; } }
      @media (max-width: 800px) {
        section#tuotteet .cards .card:nth-child(1) .top::after {
          height: 200px;
          bottom: -30px;
          right: -30px; } }
  section#tuotteet .cards .card:nth-child(2) .top {
    position: relative; }
    section#tuotteet .cards .card:nth-child(2) .top::before {
      content: "";
      position: absolute;
      top: -50px;
      left: -50px;
      height: 400px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: var(--green);
      z-index: -1; }
      @media (max-width: 1700px) {
        section#tuotteet .cards .card:nth-child(2) .top::before {
          height: 300px; } }
      @media (max-width: 1500px) {
        section#tuotteet .cards .card:nth-child(2) .top::before {
          height: 250px; } }
  section#tuotteet .cards .card:nth-child(3) .top {
    position: relative; }
    section#tuotteet .cards .card:nth-child(3) .top::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      height: 400px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: var(--green);
      z-index: -1; }
      @media (max-width: 1250px) {
        section#tuotteet .cards .card:nth-child(3) .top::before {
          height: 300px; } }
    section#tuotteet .cards .card:nth-child(3) .top::after {
      content: "";
      position: absolute;
      top: -100px;
      left: -50px;
      height: 100px;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: var(--green);
      z-index: -1; }
      @media (max-width: 1500px) {
        section#tuotteet .cards .card:nth-child(3) .top::after {
          height: 80px; } }
      @media (max-width: 1080px) {
        section#tuotteet .cards .card:nth-child(3) .top::after {
          top: -20px; } }

section#meista {
  background-color: var(--lightgray);
  padding: 100px 0; }
  section#meista .flex {
    justify-content: space-between; }
    section#meista .flex .content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 60%; }
      @media (max-width: 850px) {
        section#meista .flex .content {
          max-width: none; } }
      section#meista .flex .content .more-text {
        display: none; }
      section#meista .flex .content .read-more {
        color: var(--green);
        cursor: pointer;
        font-weight: bold; }
      section#meista .flex .content .read-more:hover {
        text-decoration: underline; }
    section#meista .flex .stats {
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      @media (max-width: 850px) {
        section#meista .flex .stats {
          display: none; } }
      section#meista .flex .stats .l-l-title {
        text-align: end; }
      section#meista .flex .stats .s-b-title {
        text-align: end; }

section#yhteys {
  padding: 100px 0; }
  section#yhteys .flex {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 600px;
    margin: auto; }
  section#yhteys .xxl-l-title {
    text-align: center;
    line-height: 1.1; }
  section#yhteys .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 13px 0 20px; }
    section#yhteys .contact-info .circle {
      height: 6px;
      aspect-ratio: 1/1;
      background-color: var(--green);
      border-radius: 50%; }
  section#yhteys .m-text {
    text-align: center; }

footer {
  padding: 50px 0 0;
  border-top: 1px solid var(--lightgray); }
  footer .flex {
    justify-content: space-between; }
    @media (max-width: 660px) {
      footer .flex {
        flex-direction: column;
        gap: 50px;
        align-items: center; } }
  footer .footer-content1 {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    footer .footer-content1 svg {
      margin-left: -20px;
      height: 100px;
      width: 100px; }
    footer .footer-content1 .contact-info {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px; }
      footer .footer-content1 .contact-info .circle {
        height: 10px;
        aspect-ratio: 1/1;
        background-color: var(--green);
        border-radius: 50%; }
  footer .footer-content2 {
    display: flex;
    gap: 80px; }
    footer .footer-content2 .column .s-b-title {
      position: relative;
      margin-bottom: 15px; }
      footer .footer-content2 .column .s-b-title::before {
        content: "";
        position: absolute;
        top: 0;
        left: -10px;
        height: 100%;
        width: 1px;
        background-color: var(--black); }
    footer .footer-content2 .column .m-l-text {
      margin-top: 10px; }
  footer .copyright {
    text-align: center;
    font-weight: 300;
    padding: 40px 0 20px; }

/*# sourceMappingURL=style.css.map */
