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

html {
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
  box-sizing: border-box;
}

.heading-primary {
  font-size: 6rem;
  color: #333;
  font-weight: 500;
  line-height: 1.2;
}

.heading-secondary {
  font-size: 3rem;
  color: #333;
  font-weight: 500;
}

.footer-heading {
  text-align: center;
  font-size: 2rem;
  padding-top: 2rem;
}

.fa {
  margin-left: 2rem;
  font-size: 3rem;
  width: 3rem;
  text-align: center;
  text-decoration: none;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-huge {
  margin-bottom: 10rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-h-center {
  text-align: center !important;
  justify-content: center !important;
  justify-self: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

header {
  background-color: #fff;
  padding: 1.5rem 0 0.5rem 0;
  margin: 0 3rem;
  z-index: 10;
}
@media (max-width: 37.5rem) {
  header {
    padding: 1.5rem 0 1rem 0;
  }
}
header nav {
  font-size: 2.1rem;
}
header nav .header-row {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}
header nav .header-row__img {
  display: block;
  height: 7rem;
  width: auto;
  float: left;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 5rem;
  color: #333;
  font-family: "ita";
}
header nav .header-row__img img {
  height: 7rem;
  width: auto;
}
header nav .header-row__nav {
  align-self: center;
}
@media (max-width: 37.5rem) {
  header nav .header-row__nav {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
  }
}
header nav .header-row__list {
  list-style: none;
  display: block;
  position: relative;
  float: right;
  margin-top: 2rem;
  z-index: 999;
}
header nav .header-row__list::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 37.5rem) {
  header nav .header-row__list {
    display: visible;
  }
}
@media (max-width: 37.5rem) {
  header nav .header-row__list {
    float: left;
    margin-top: 1rem;
    margin-right: calc(50vw - 10rem);
    font-size: 3rem;
    display: none;
  }
}
@media (max-width: 450px) {
  header nav .header-row__list {
    margin-right: calc(40vw - 10rem);
  }
}
@media (max-width: 350px) {
  header nav .header-row__list {
    margin-right: calc(30vw - 10rem);
  }
}
header nav .header-row__item {
  display: inline-block;
}
header nav .header-row__item:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 37.5rem) {
  header nav .header-row__item {
    display: block;
    margin-bottom: 1rem;
    margin-left: 3.5rem;
  }
}
header nav .header-row__link {
  text-decoration: none;
}
@media (max-width: 450px) {
  header nav .header-row__link {
    font-size: 2.5rem;
  }
}
header nav .header-row__link:link, header nav .header-row__link:visited {
  color: #777;
  transition: all 0.2s;
}
@media (max-width: 37.5rem) {
  header nav .header-row__link:link, header nav .header-row__link:visited {
    display: block;
  }
}
header nav .header-row__link:hover, header nav .header-row__link:active {
  color: #000;
  border-bottom: 1px solid #000;
}

/* Mobile navi */
.mobile-nav-icon {
  float: right;
  margin-top: 3rem;
  margin-right: 2rem;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 37.5rem) {
  .mobile-nav-icon {
    display: inline-block;
  }
}
.mobile-nav-icon i {
  font-size: 200%;
  color: #777;
}

.space {
  padding-bottom: 15rem;
  display: block;
}

.space-none {
  padding-bottom: 0rem;
}

.row {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  position: relative;
  justify-content: space-between;
  flex-direction: row;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 56.25em) {
  .row {
    margin: 0 3rem;
  }
}
@media (max-width: 37.5rem) {
  .row {
    position: unset;
    width: calc(100vw - 6rem);
  }
}

.col-1-of-2 {
  flex-basis: 45%;
}
.col-1-of-3 {
  flex-basis: 26.666667%;
}

.footer {
  height: 15rem;
  width: 100%;
  background-color: #333;
}
@media (max-width: 37.5rem) {
  .footer {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.footer__text {
  font-size: 1.5rem;
}
.footer__text a {
  color: inherit;
  text-decoration: none;
}
.footer__social {
  margin-left: auto;
}
.footer__icon {
  border-radius: 10%;
  color: #fff;
  transition: all 0.2s;
}
.footer__icon--1:hover, .footer__icon--1:active {
  background-color: #4267B2;
  transform: scale(1.1);
}
.footer__icon--2:hover, .footer__icon--2:active {
  background-image: linear-gradient(to top right, rgba(245, 133, 41, 0.8), rgba(254, 218, 119, 0.8), rgba(221, 42, 123, 0.8), rgba(130, 52, 175, 0.8), rgba(81, 92, 212, 0.8));
  transform: scale(1.1);
}
.footer__credit {
  font-size: 1.2rem;
}
.footer__credit a {
  text-decoration: none;
  color: rgb(175, 175, 175);
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: block;
  margin-left: 4rem;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #000;
  font-size: 2.5rem;
  text-decoration: none;
}
@media (max-width: 37.5rem) {
  .btn {
    text-align: center;
    margin-left: 0;
  }
}
.btn--white:link, .btn--white:visited {
  color: #222;
  transition: all 0.2s;
  background-color: #f7f7f7;
}
.btn--white:hover {
  box-shadow: 0 0.5rem 0.5rem #000;
  transform: translateY(-3px);
}
.btn--white:active {
  box-shadow: 0 0.2rem 0.2rem #000;
  transform: translateY(-1px);
}

/*etusivu*/
.section-hero {
  position: relative;
  margin: 0 7rem;
}

@media (max-width: 37.5rem) {
  .main {
    margin-top: 18rem;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.main__front {
  margin: 5rem 0;
  height: 80vh;
}
@media (max-width: 600px) {
  .main__front {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 3rem;
  }
}
@media (max-height: 600px) {
  .main__front {
    height: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 3rem;
  }
}
.main__heading {
  display: block;
}
@media (max-width: 450px) {
  .main__heading {
    width: 100%;
    height: auto;
  }
}
.main__btn {
  margin: 0 auto;
}
.main__img {
  width: auto;
  height: 40rem;
  margin-top: 12rem;
}
@media (max-width: 600px) {
  .main__img {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 3rem;
  }
}
.main__img--container {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 2rem;
  flex-shrink: 1;
  overflow: hidden; /* Ensure container does not overflow */
  justify-content: space-around;
}
.main__img--container img {
  max-width: calc(50% - 1rem);
  height: auto; /* Maintain aspect ratio */
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  .main__img--container img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .main__img--container {
    width: 100%;
    max-width: 100%;
    height: auto; /* Ensure responsive behavior */
    flex-direction: column;
  }
}

.section-pricing {
  display: block;
  position: relative;
  width: 100%;
  transition: all 0.3s;
  margin-top: auto;
}

.pricing__acnhor {
  position: relative;
  height: 50rem;
  padding-top: 10rem;
  display: block;
  margin-top: 10rem;
  z-index: -1;
}
.pricing__front {
  background-color: #f7f7f7;
  height: 50rem;
  padding-top: 10rem;
  display: block;
  margin-top: 10rem;
  position: relative;
}
@media (max-width: 37.5rem) {
  .pricing__front {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .pricing__front {
    height: 70rem;
  }
}
.pricing__btn {
  display: block;
}
@media (max-width: 37.5rem) {
  .pricing__btn {
    margin: 0 auto;
  }
}
.pricing__back {
  background-color: #fff;
}
.pricing__heading {
  display: block;
  width: 70%;
  position: relative;
}
@media (max-width: 37.5rem) {
  .pricing__heading {
    text-align: center;
    width: 100%;
  }
}
.pricing__table {
  margin-left: calc((100% - 105rem) / 2);
  width: 70rem;
}
@media (max-width: 56.25em) {
  .pricing__table {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
}
.pricing__list {
  border-left: 3px solid #000;
  padding: 2rem;
}
.pricing__item {
  text-transform: uppercase;
  font-size: 3rem;
  color: #000;
}
.pricing__item:not(:last-child) {
  margin-bottom: 4rem;
}
.pricing__span {
  text-transform: none;
  color: #333;
  margin-left: 2.8rem;
}
.pricing__span--1 {
  font-size: 2.8rem;
}
.pricing__span--2 {
  font-size: 2.5rem;
}
.pricing__span--3 {
  display: block;
  height: 2rem;
}
.pricing__span--4 {
  margin-left: 5rem;
}

.section-info {
  position: relative;
  width: 100%;
}

.info__heading {
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
}
.info__heading--1 {
  background-color: rgb(250, 250, 250);
  padding: 10rem 0 3rem 0;
}
.info__heading--pri {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #000;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 37.5rem) {
  .info__heading--pri {
    width: calc(100% - 8rem);
    font-size: 4rem;
  }
}
.info__heading--sub {
  width: 90rem;
  margin: 0 auto;
}
@media (max-width: 37.5rem) {
  .info__heading--sub {
    width: calc(100% - 6rem);
    margin: 0 3rem;
  }
}
.info__heading--sub a {
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
}
.info__heading--sub a:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.3rem 0.6rem #000;
}
.info__heading--sub a:active {
  transform: translateY(-0.2rem);
}
.info__heading__location {
  overflow: hidden;
}
.info__heading__map {
  display: block;
}
.info__heading__map iframe {
  width: 100%;
  height: 30rem;
  border: 0;
}
.info__link {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
.info__content {
  display: block;
  text-align: center;
}/*# sourceMappingURL=main.css.map */