
:root {
  --tz-ff-body: 'Roboto', sans-serif;
  --tz-ff-heading: 'Roboto', sans-serif;
  --tz-ff-p: 'Roboto', sans-serif;
  --tz-ff-fontawesome: "Font Awesome 6 Pro";

  --tz-common-white: #ffffff;
  --tz-common-black: #000;
  --tz-heading-primary: #000;
  --tz-grey-1: #F1F1F1;
  --tz-grey-2: #F5F6F8;
  --tz-text-body: #000;
  --tz-text-1: #000;
  --tz-theme-1: #fed430;
  --tz-border-1: #e5e5e5;

  --tz-fw-normal: normal;
  --tz-fw-elight: 200;
  --tz-fw-light: 300;
  --tz-fw-regular: 400;
  --tz-fw-medium: 500;
  --tz-fw-sbold: 600;
  --tz-fw-bold: 700;
  --tz-fw-ebold: 800;
  --tz-fw-black: 900;

  --tz-fz-body: 14px;
  --tz-fz-p: 14px;
  --tz-fz-h1: 40px;
  --tz-fz-h2: 36px;
  --tz-fz-h3: 24px;
  --tz-fz-h4: 20px;
  --tz-fz-h5: 16px;
  --tz-fz-h6: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--tz-ff-body);
  font-size: var(--tz-fz-body);
  font-weight: normal;
  color: var(--tz-text-body);
  line-height: 26px;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tz-ff-heading);
  color: var(--tz-header-1);
  margin-top: 0px;
  font-weight: var(--tz-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
h1 {
  font-size: var(--tz-fz-h1);
}
h2 {
  font-size: var(--tz-fz-h2);
}
h3 {
  font-size: var(--tz-fz-h3);
}
h4 {
  font-size: var(--tz-fz-h4);
}
h5 {
  font-size: var(--tz-fz-h5);
}
h6 {
  font-size: var(--tz-fz-h6);
}
ul {
  margin: 0px;
  padding: 0px;
}
p {
  font-family: var(--tz-ff-p);
  font-size: 18px;
  font-weight: var(--tz-fw-normal);
  color: var(--tz-text-body);
  margin-bottom: 15px;
  line-height: 30px;
}
a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}
a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}
button:hover {
  cursor: pointer;
}
button:focus {
  outline: 0;
  border: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
/* Yleiset */
.w-img img {
  width: 100%;
}
.m-img img {
  max-width: 100%;
}
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.z-index-1 {
  z-index: 1;
}
.z-index-11 {
  z-index: 11;
}
.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* Overlay */
.body-overlay {
  background-color: #000000;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
  opacity: 0.6;
}
/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
/*@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.basic-pagination ul li {
  display: inline-block;
}
@media (max-width: 575px) {
  .basic-pagination ul li {
    margin-bottom: 10px;
  }
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--tz-theme-1);
  border-color: var(--tz-theme-1);
  color: var(--tz-common-white);
}

.nice-select::after {
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--tz-ff-fontawesome);
  transform-origin: center;
  color: var(--tz-common-white);
  font-weight: 500;
  height: auto;
  width: auto;
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}*/
/* Taustavärit */
.grey-bg {
  background: var(--tz-grey-1);
}
.grey-bg-2 {
  background: var(--tz-grey-2);
}
.white-bg {
  background: var(--tz-common-white);
}
.black-bg {
  background: var(--tz-common-black);
}

/*
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--tz-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tz-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--tz-common-black);
  color: var(--tz-common-black);
}
.pulse-btn i {
  padding-left: 2px;
}*/
/* Hamburger  */
.hamurger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}
.hamurger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--tz-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}
.hamurger-btn span:nth-child(1) {
  top: 0;
}
.hamurger-btn span:nth-child(2) {
  top: 10px;
}
.hamurger-btn span:nth-child(3) {
  top: 20px;
}
/* Buttonit */
.tl-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tz-common-black);
  background: var(--tz-theme-1);
  height: 60px;
  line-height: 62px;
  text-align: center;
  padding: 0 38px;
  text-transform: uppercase;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tl-btn i {
  padding-left: 5px;
}
.tl-btn:hover {
  color: var(--tz-common-white);
  background-color: var(--tz-common-black);
}
.tl-btn:focus {
  color: var(--tz-common-white);
}
/* Buttonit */
/*.link-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--tz-text-3);
  background: transparent;
  border: 1px solid var(--tz-border-2);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  padding-right: 25px;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  overflow: hidden;
}
.link-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:last-child {
  left: 0%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover {
  color: var(--tz-common-white);
  background-color: var(--tz-theme-1);
  border-color: var(--tz-theme-1);
}
.link-btn:hover i {
  left: 100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover i:last-child {
  left: 50%;
  visibility: visible;
  opacity: 1;
}
.link-btn-2 {
  position: relative;
  font-size: 16px;
  color: var(--tz-text-1);
  font-weight: 500;
  padding-right: 21px;
  display: inline-block;
}
.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--tz-theme-1);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}
.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}
.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}
.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}
.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}*/
.sidebar__content {

}
@media (max-width: 575px) {
  .sidebar__content .sidebar__logo  {
    margin-top: 70px;
  }
  .sidebar__content .sidebar__logo  img {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}
/* Sivupalkki */
.sidebar__area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100%;
  background: var(--tz-common-white) none repeat scroll 0 0;
  overflow-y: scroll;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: all 0.5s ease-out;
}
@media (max-width: 575px) {
  .sidebar__area {
    width: 290px;
  }
  .sidebar__area.sidebar-opened {
    width: 100%!important;
  }
}
.sidebar__area.sidebar-opened {
  right: 0px;
}
.sidebar__wrapper {
  position: relative;
  padding: 45px;
}
@media (max-width: 575px) {
  .sidebar__wrapper {
    padding: 20px;
    width: 100%;
  }
}
.sidebar__close {
  position: absolute;
  top: 48px;
  right: 45px;
}
@media (max-width: 575px) {
  .sidebar__close {
    top: 22px;
    right: 20px;
  }
}
.sidebar__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 49px;
  background: var(--tz-theme-1);
  color: var(--tz-common-black);
  border-radius: 50%;
}
.sidebar__close-btn:hover {
  background: var(--tz-theme-1);
}
.sidebar__logo {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tz-border-1);
}
.sidebar__logo img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.sidebar__text p {
  margin-bottom: 25px;
}
.sidebar__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.sidebar__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar__contact ul li:hover i {
  background: var(--tz-theme-1);
  color: var(--tz-common-black);
  border-color: var(--tz-theme-1);
}
.sidebar__contact ul li:hover a {
  color: var(--tz-common-black);
}
.sidebar__contact-icon i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--tz-border-1);
  color: var(--tz-heading-primary);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.sidebar__contact-text a {
  font-size: 18px;
  font-weight: 400;
}

/* Otsikot */
.tl-sub-title {
  display: inline-block;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  background: var(--tz-theme-1);
  padding: 10px;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tl-sub-title {
    font-size: 20px;
  }
}
.tl-sec-title, .sec-title__title {
  font-size: 48px;
  line-height: 1.25;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tl-sec-title, .sec-title__title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tl-section-wrapper p br {
    display: none;
  }
}
/* Murupolku */
.breadcrumb__title {
  font-size: 32px;
  color: var(--tz-common-white);
}
.breadcrumb__title-pre {
  display: inline-block;
  height: 24px;
  line-height: 26px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  background: var(--tz-theme-2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0 7px;
  margin-bottom: 12px;
}
.breadcrumb__list span {
  font-size: 16px;
  color: var(--tz-common-white);
  font-weight: 500;
  padding-right: 3px;
  margin-right: 3px;
  text-transform: capitalize;
}
.breadcrumb__list span a:hover {
  color: var(--tz-theme-1);
}
.breadcrumb__list-2 span {
  font-size: 14px;
  color: var(--tz-text-11);
  font-weight: 500;
  padding-right: 3px;
  margin-right: 3px;
  text-transform: capitalize;
}
.breadcrumb__list-2 span a:hover {
  color: var(--tz-theme-1);
}
.breadcrumb__overlay {
  position: relative;
}
.breadcrumb__overlay::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 3, 32, 0.6);
}
/*----------------------------------------*/
/*  24. Animation CSS START
/*----------------------------------------*/
/*@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}*/
/*
@-webkit-keyframes zoombig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 3px;
  }
  65% {
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 2px;
  }
}
@keyframes zoombig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 3px;
  }
  65% {
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 2px;
  }
}
@-webkit-keyframes animate-02 {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 35% 65% 50%;
  }
  34% {
    border-radius: 50% 50% 35% 65%/50% 50% 50% 50%;
  }
  50% {
    border-radius: 50% 50% 50% 50%/65% 50% 50% 35%;
  }
  67% {
    border-radius: 35% 65% 50% 50%/50% 50% 50% 50%;
  }
}
@keyframes animate-02 {
  0%, 100% {
    border-radius: 50% 50% 50% 50%/50% 35% 65% 50%;
  }
  34% {
    border-radius: 50% 50% 35% 65%/50% 50% 50% 50%;
  }
  50% {
    border-radius: 50% 50% 50% 50%/65% 50% 50% 35%;
  }
  67% {
    border-radius: 35% 65% 50% 50%/50% 50% 50% 50%;
  }
}*/
/* Lataaja */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}
.preloader .color-1 {
  background-color: #fed430 !important;
}
.rubix-cube {
  border: 1px solid #FFF;
  width: 48px;
  height: 48px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rubix-cube .layer {
  width: 14px;
  height: 14px;
  background-color: #000;
  border: 1px solid #FFF;
  position: absolute;
}
.rubix-cube .layer-1 {
  left: 0px;
  top: 0px;
  -webkit-animation: rubixcube4 2s infinite linear;
  animation: rubixcube4 2s infinite linear;
}
.rubix-cube .layer-2 {
  left: 16px;
  top: 0px;
  -webkit-animation: rubixcube3 2s infinite linear;
  animation: rubixcube3 2s infinite linear;
}
.rubix-cube .layer-3 {
  left: 32px;
  top: 0px;
}
.rubix-cube .layer-4 {
  left: 0px;
  top: 16px;
  -webkit-animation: rubixcube5 2s infinite linear;
  animation: rubixcube5 2s infinite linear;
}
.rubix-cube .layer-5 {
  left: 16px;
  top: 16px;
  -webkit-animation: rubixcube2 2s infinite linear;
  animation: rubixcube2 2s infinite linear;
}
.rubix-cube .layer-6 {
  left: 32px;
  top: 16px;
  -webkit-animation: rubixcube1 2s infinite linear;
  animation: rubixcube1 2s infinite linear;
}
.rubix-cube .layer-7 {
  left: 0px;
  top: 32px;
  -webkit-animation: rubixcube6 2s infinite linear;
  animation: rubixcube6 2s infinite linear;
}
.rubix-cube .layer-8 {
  left: 16px;
  top: 32px;
  -webkit-animation: rubixcube7 2s infinite linear;
  animation: rubixcube7 2s infinite linear;
}
@-webkit-keyframes rubixcube1 {
  20% {
    top: 16px;
    left: 32px;
  }
  30% {
    top: 32px;
    left: 32px;
  }
  40% {
    top: 32px;
    left: 32px;
  }
  50% {
    top: 32px;
    left: 32px;
  }
  60% {
    top: 32px;
    left: 32px;
  }
  70% {
    top: 32px;
    left: 32px;
  }
  80% {
    top: 32px;
    left: 32px;
  }
  90% {
    top: 32px;
    left: 32px;
  }
  100% {
    top: 32px;
    left: 16px;
  }
}
@keyframes rubixcube1 {
  20% {
    top: 16px;
    left: 32px;
  }
  30% {
    top: 32px;
    left: 32px;
  }
  40% {
    top: 32px;
    left: 32px;
  }
  50% {
    top: 32px;
    left: 32px;
  }
  60% {
    top: 32px;
    left: 32px;
  }
  70% {
    top: 32px;
    left: 32px;
  }
  80% {
    top: 32px;
    left: 32px;
  }
  90% {
    top: 32px;
    left: 32px;
  }
  100% {
    top: 32px;
    left: 16px;
  }
}
@-webkit-keyframes rubixcube2 {
  30% {
    left: 16px;
  }
  40% {
    left: 32px;
  }
  50% {
    left: 32px;
  }
  60% {
    left: 32px;
  }
  70% {
    left: 32px;
  }
  80% {
    left: 32px;
  }
  90% {
    left: 32px;
  }
  100% {
    left: 32px;
  }
}
@keyframes rubixcube2 {
  30% {
    left: 16px;
  }
  40% {
    left: 32px;
  }
  50% {
    left: 32px;
  }
  60% {
    left: 32px;
  }
  70% {
    left: 32px;
  }
  80% {
    left: 32px;
  }
  90% {
    left: 32px;
  }
  100% {
    left: 32px;
  }
}
@-webkit-keyframes rubixcube3 {
  30% {
    top: 0px;
  }
  40% {
    top: 0px;
  }
  50% {
    top: 16px;
  }
  60% {
    top: 16px;
  }
  70% {
    top: 16px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube3 {
  30% {
    top: 0px;
  }
  40% {
    top: 0px;
  }
  50% {
    top: 16px;
  }
  60% {
    top: 16px;
  }
  70% {
    top: 16px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@-webkit-keyframes rubixcube4 {
  50% {
    left: 0px;
  }
  60% {
    left: 16px;
  }
  70% {
    left: 16px;
  }
  80% {
    left: 16px;
  }
  90% {
    left: 16px;
  }
  100% {
    left: 16px;
  }
}
@keyframes rubixcube4 {
  50% {
    left: 0px;
  }
  60% {
    left: 16px;
  }
  70% {
    left: 16px;
  }
  80% {
    left: 16px;
  }
  90% {
    left: 16px;
  }
  100% {
    left: 16px;
  }
}
@-webkit-keyframes rubixcube5 {
  60% {
    top: 16px;
  }
  70% {
    top: 0px;
  }
  80% {
    top: 0px;
  }
  90% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
@keyframes rubixcube5 {
  60% {
    top: 16px;
  }
  70% {
    top: 0px;
  }
  80% {
    top: 0px;
  }
  90% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes rubixcube6 {
  70% {
    top: 32px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@keyframes rubixcube6 {
  70% {
    top: 32px;
  }
  80% {
    top: 16px;
  }
  90% {
    top: 16px;
  }
  100% {
    top: 16px;
  }
}
@-webkit-keyframes rubixcube7 {
  80% {
    left: 16px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
@keyframes rubixcube7 {
  80% {
    left: 16px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
/* Header */
.logo-dark img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.tp-model-logo {
  text-align: center;
}
.logo-sticky {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-model-logo {
    text-align: left;
  }
}
/* Valikko */
.tpmenu {
  text-align: center;
  width: 100%,
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpmenu {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpmenu-2 {
    margin-left: 0;
  }
}
.tpmenu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 40px;
}
.tpmenu ul li:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpmenu ul li {
    margin-right: 20px;
  }
}
.tpmenu ul li a {
  display: inline-block;
  font-size: 17px;
  color: #fff;
  padding: 35px 0;
  font-weight: 400;
  text-align: left;
}
.tpmenu ul li a.active {
  color: #fff;
  font-weight: 700;
}
.tpmenu ul li.has-dropdown > a {
  position: relative;
}
.tpmenu ul li.has-dropdown > a::after {
  content: "\f067";
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  font-size: 11px;
  color: #fed430;
  font-family: var(--tz-ff-fontawesome);
  font-weight: var(--tz-fw-sbold);
  margin-left: 5px;
  display: inline-block;
}
.tpmenu ul li .submenu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 200px;
  background: var(--tz-common-white);
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
}
.tpmenu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.tpmenu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tpmenu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.tpmenu ul li .submenu li a {
  padding: 10px 25px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  color: var(--tz-common-black);
  width: 100%;
}
.tpmenu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--tz-theme-1);
  z-index: -1;
}
.tpmenu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.tpmenu ul li .submenu li:hover > a {
  color: var(--tz-common-white);
}
.tpmenu ul li .submenu li:hover > a::after {
  color: var(--tz-common-white);
}
.tpmenu ul li .submenu li:hover > a::before {
  left: 0;
  right: auto;
  width: 100%;
}
.tpmenu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.tpmenu ul li:hover > a {
  color: #fed430;
}
.tpmenu ul li:hover > a::after {
  color: var(--tz-theme-1);
}
.tpmenu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
.tp-header-area {
  background: #111;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-header-area-inner {
    padding: 25px 0;
  }
}
.inner-border {
  border-bottom: 1px solid #D9DDE8;
}
.tp-header-action {
  text-align: right;
}
.tp-header-action ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}
.tp-header-action ul li:last-child {
  margin-right: 0;
}
.tp-header-action ul li a {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid #fed430;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 15px;
  color: var(--tz-heading-primary);
  transition: 0.3s;
  background: #fed430;
}
.tp-header-action ul li a:hover {
  background: #fff;
  color: #000;
  border-color: #fed430;
}
.tp-header-action-2 ul li {
  margin-right: 30px;
}
.tp-header-action-2 ul li a {
  background: none;
  border: 0;
  height: auto;
  width: auto;
}
.tp-header-action-2 ul li a:hover {
  background: none;
  color: var(--tz-theme-1);
}
@media (max-width: 991px) {
  .header-sticky .tp-header-action ul li a {
    border: 1px solid #000;
    color: #fed430;
    transition: 0.3s;
    background: #000;
  }
}
/* Sticky */
.header-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fed430;
  z-index: 999;
  animation: sticky 1.3s;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
}
.header-sticky .tpmenu ul li a {
  padding: 35px 0;
}
.header-sticky .logo-sticky {
  display: block;
}
.header-sticky .logo-sticky img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.header-sticky .logo-dark {
  display: none;
}
.header-sticky .tpmenu ul li a {
  color:#000;
}
/* Hero */
.hero-area {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.hero-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(-55deg, #000 0%, #555 100%);
  opacity: 0.70;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-content {
  padding: 180px 0;
}
.hero-content p {
  font-size: 18px;
  line-height: 30px;
  color: var(--tz-common-white);
}
.hero-title {
  font-size: 80px;
  line-height: 1;
  color: #fed430;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 60px;
  }
}
.hero-sm-title {
  font-size: 55px;
  color: var(--tz-common-white);
  text-transform: uppercase;
  text-shadow: 2px 2px 2px #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-sm-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-sm-title {
    font-size: 40px;
  }
}
/* Nostot */
.tl-feature-item {
  padding: 40px 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: black;
  color:#fed430;
}
.tl-feature-item p {
  margin-bottom: 0;
  color:#fff;
  font-size: 16px;
  line-height: 24px;
}
.tl-feature-title {
  font-size: 24px;
}
.tl-feature-icon span {
  position: relative;
  display: inline-block;
}
.tl-feature-icon img {
  max-width: 125px;
  position: relative;
}
.tl-feature-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
}
.tl-feature-icon .icon-1 {
  color: #ffbdbcc4;
}
.tl-feature-icon .icon-2 {
  color: #02028863;
}
.tl-feature-icon .icon-3 {
  color: #fff69bc7;
}
/* Sitältö */
.overview-wrap .overview-img .shape {
  position: absolute;
  left: 60px;
  top: 30px;
  z-index: -1;
  max-width: 560px;
  -webkit-animation: round-01 5s linear infinite;
  animation: round-01 5s linear infinite;
}
.tl-about-content {
  margin-right: 80px;
}
.tl-about-content a {
  color:blue;
  font-weight: 700;
}
.tl-about-content .tl-about-btn a {
  color:#000;
}
.tl-about-content .tl-about-btn a:hover {
  color:#fff;
}
.tl-about-content ul {
  margin-bottom: 15px;
  margin-left: 15px;
}
.tl-about-content ul li{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tl-about-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.overview-img {
  position: relative;
}
.overview-img .image img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10% / 50%;
}
.overview-img .wrapper {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 25px 0 65px rgba(54, 32, 152, 0.11);
  border-radius: 8px;
  padding: 34px 40px 31px 36px;
}
@media (max-width: 991px) {
  .overview-wrap {
    margin-top: 80px;
  }
}
@media (max-width: 575px) {
  .overview-img .wrapper {
    padding: 25px 25px 25px 25px;
  }
}
.overview-img .name {
  font-size: 20px;
  color: var(--tz-common-black);
  font-weight: var(--tz-fw-medium);
  line-height: 1.3;
  padding-left: 17px;
}
@media (max-width: 575px) {
  .overview-img .name {
    font-size: 16px;
  }
}
/* Mobiilimenu */
.mean-container a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--clr-common-black);
  border-top: 1px solid #ebebeb;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
}
.mean-container .mean-nav ul li a.active {
  color: var(--clr-common-black);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--clr-common-black);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}
.mean-container .mean-nav ul li > a > i {
  display: none;
}
.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--clr-common-black);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--clr-common-black);
}
/* Footer */
.copy-right {
  padding: 20px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--tz-common-black);
}
.copy-right p {
  color: var(--tz-common-white);
  margin-bottom: 0;
}
.footer__widget-title {
  font-size: 22px;
  color: var(--tz-common-black);
  margin-bottom: 20px;
}
.footer__widget ul li {
  list-style: none;
}
.footer__widget ul li a {
  font-size: 14px;
  color: var(--tz-text-1);
}

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