/* Teema */
:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: "Roboto Slab", serif;
  --heading-font2: "Marcellus", serif;
  --theme-color: #f2624b;
  --theme-color2: #6ea9b6;
  /*--theme-color2: #FF2768;*/
  --theme-bg-light: #F6F6F6;
  --color-dark: #1c2d3e;
  --color-gray: #F6F6F6;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --hero-overlay: rgb(5, 3, 17);
  --slider-arrow-bg: rgba(140, 82, 255, .2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #0B0917;
  --footer-text-color: #F5FAFF;
}
/* Yleiset */
*,
*:before,
*:after {
  box-sizing: inherit;
}
* {
  scroll-behavior: inherit !important;
}
html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
}
a {
  color:  blue;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color:  var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  margin: 0px;
}
.img,
img {
  max-width: 100%;
  -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;
  height: auto;
}
label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}
*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}
::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}
::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}
/* Lataaja */
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-ripple div {
  position: absolute;
  border: 4px solid var(--theme-color);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.ovrflow-hidden {
  overflow: hidden;
}
.position-relative {
  position: relative;
  z-index: 1;
}
.text-right {
  text-align: right;
}
.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-pd {
  padding: 0 7rem;
}
.s-pd {
  padding: 0 12rem;
}
.h-100 {
  height: 100%;
}
.h-100vh {
  height: 100vh;
}
.bg {
  background: var(--theme-bg-light);
}
/* Margin & padding */
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-120 {
  padding-top: 120px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-120 {
  padding-bottom: 120px;
}
.py-80 {
  padding: 80px 0;
}
.py-90 {
  padding: 90px 0;
}
.py-100 {
  padding: 100px 0;
}
.py-110 {
  padding: 110px 0;
}
.py-120 {
  padding: 120px 0;
}
.mt-0 {
  margin-top: 0px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-110 {
  margin-top: 110px;
}
.mt-120 {
  margin-top: 120px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-120 {
  margin-bottom: 120px;
}
.my-80 {
  margin: 80px 0;
}
.my-90 {
  margin: 90px 0;
}
.my-100 {
  margin: 100px 0;
}
.my-110 {
  margin: 110px 0;
}
.my-120 {
  margin: 120px 0;
}
/* Otsikot */
.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.site-title-tagline {
  display: block;
  font-family: var(--heading-font2);
  text-transform: uppercase;
  letter-spacing: 0px;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 8px;
  position: relative;
}
.site-title-tagline i{
  line-height: 0;
  font-size: 21px;
}
.site-title {
  font-weight: 700;
  font-size: 50px;
  color:  var(--color-dark);
  margin-bottom: 0;
}
.site-title span{
  color: var(--theme-color);
}
.site-heading p {
  margin-top: 15px;
}
.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--theme-color);
  width: 90px;
  height: 4px;
}
.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 6px;
  width: 15px;
  border-radius: 0px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}
@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}
@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}
@media all and (max-width: 991px) {
  .header-top-right {
    display: none!important;
  }
}
@media all and (max-width: 767px) {

}
/* Painikkeet */
.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 24px;
  transition: all 0.5s;
  position: relative;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  background: var(--theme-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}
.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.theme-btn:hover {
  color: var(--color-white);
}
.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.theme-btn i {
  margin-left: 10px;
  transform: rotate(-35deg);
  transition: var(--transition2);
}
.theme-btn:hover i{
  transform: rotate(0);
}
.footer-area2 .theme-btn i {
  margin-left: 10px;
  transform: rotate(0deg);
}
.theme-btn span {
  margin-right: 5px;
}
.theme-btn2{
  background: var(--color-white);
  color: var(--theme-color);
}
.theme-btn2::before{
  background: var(--theme-color);
}
.theme-btn2:hover{
  color: var(--color-white);
}
/* Containers */
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1200px;
  }
}
/* Sivun alkuun */
#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  color: var(--color-white);
  background-color: var(--theme-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
#scroll-top i{
  transform: rotate(-35deg);
  transition: var(--transition2);
}
#scroll-top:hover i{
  transform: rotate(0);
}
#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}
/* Ylävalikko */
.header-top {
  position: relative;
  padding: 30px 0 30px 0;
  z-index: 5;
  background: #6ea9b6;
  background: #56848E;
  background: linear-gradient(0deg, rgba(86, 132, 142, 1) 20%, rgba(110, 169, 182, 1) 100%);*/
  color:#fff;
}
.header-top-contact ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.header-top-contact a {
  color: #fff!important;
  font-weight: 400;
}
.header-top-contact a i{
  color: var(--color-white);
  margin-right: 10px;
}
.header-top-middle{
  text-align: center;
}
.header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}
.header-top-link a{
  color: var(--color-white);
  margin-right: 12px;
}
.header-top-link a:hover{
  color: var(--theme-color);
}
.header-top-social span{
  color: #fff!important;
}
.header-top-social a {
  color: #fff!important;
  font-size: 22px;
  text-align: center;
  margin-left: 14px;
  transition: var(--transition);
}
.header-top-social a:hover {

}
@media all and (max-width: 991px) {
  .header-top{
    padding-top: 12px;
  }
  .header-top-wrap .row{
    gap: 14px;
  }
  .header-top-contact ul,
  .header-top-right{
    justify-content: center;
  }
}
/* Valikko */
.navbar {
  background: rgba(140, 82, 255, .15);
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 4;
}
.navbar.fixed-top {
  position: fixed;
  background: var(--theme-color);
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}
.navbar .navbar-brand .logo-display {
  display: block;
}
.navbar .navbar-brand .logo-scrolled {
  display: none;
}
.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}
.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}
.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}
.navbar-brand {
  margin-right: 0;
}
.navbar-brand img {
  width: 200px;
}
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}
@media all and (max-width: 1199px) {
  .nav-right {
    margin-left: 25px !important;
  }
  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }
  .navbar .nav-right-btn {
    display: none;
  }
}
@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 25px;
    padding: 20px 0 20px 0;
    font-size: 18px;
    font-weight: 300;
    color:  var(--color-white);
  }
  .navbar .nav-item .nav-link.active {
    font-weight: 700;
    color:  var(--color-white);
  }
  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    padding: 10px;
    margin-top: 0;
    left: -15px;
    border-radius: 15px;
    border: none;
    background: var(--color-white);
    width: 220px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition2);
  }
  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 6px 15px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition2);
    z-index: 1;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
    padding-left: 32px;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "//";
    position: absolute;
    left: 15px;
    top: 6px;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .navbar .nav-item .nav-link {
    position: relative;
  }
  .navbar .nav-item .nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    transition: var(--transition2);
  }
  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item:hover .nav-link::before{
    background: var(--theme-color);
    width: 40%;
  }
  .navbar.fixed-top .nav-item .nav-link.active::before,
  .navbar.fixed-top .nav-item:hover .nav-link::before{
    background: var(--color-white);
  }
  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--color-white);
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }
  .navbar #main_nav {
    justify-content: space-between;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-left: 45px;
  }
  .nav-right-link {
    position: relative;
    font-size: 20px;
    color: var(--color-white);
    transition: var(--transition);
  }
  .nav-right-link:hover {
    color: var(--theme-color) !important;
  }
  .nav-right .search-btn .nav-right-link {
    border: none;
    background: transparent;
    color: var(--color-white);
    font-size: 28px;
    padding-right: 0;
  }
  .nav-right .sidebar-btn .nav-right-link{
    background: var(--theme-color);
    width: 65px;
    height: 61px;
    color: var(--color-white) !important;
    font-size: 25px;
    border: none;
  }
  .navbar.fixed-top .nav-right .sidebar-btn .nav-right-link{
    background: var(--color-dark);
  }
  .nav-right .sidebar-btn .nav-right-link:hover{
    background: var(--theme-color2);
  }
  .nav-right .search-btn .nav-right-link {
    font-size: 20px;
    padding: 0;
  }
  .nav-right .cart-btn .nav-right-link {
    position: relative;
    font-size: 20px;
    padding: 0;
    margin-right: 15px;
  }
  .nav-right .cart-btn span{
    position: absolute;
    right: -9px;
    top: -2px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
  }
  .navbar.fixed-top .nav-right .cart-btn span{
    background: var(--theme-color2);
  }
}
/* Mobiilimenu */
.mobile-menu-right {
  display: none;
}
@media all and (max-width: 991px) {
  .navbar {
    position: absolute;
    width: 100%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-brand img {
    width: 130px;
  }
  .navbar-collapse {
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    margin-bottom: 10px;
    background-color: #f2624b;
    border-radius: 15px;
  }
  .navbar-toggler {
    padding: 0;
    border: none;
  }
  .dropdown-toggle::after {
    float: right;
    margin-top: 2.5px;
  }
  .navbar .nav-item .nav-link {
    color:  #fff;
    font-weight: 400;
    margin-right: 0px;
    transition: var(--transition);
  }
  .navbar .nav-item .nav-link.active {
    color:  #fff;
    font-weight: 700;
  }
  .navbar .nav-item .nav-link:hover {
    color: #fff !important;
  }
  .mobile-menu-right {
    width: 100%;
    margin: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .mobile-menu-right .nav-right-link {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-white);
  }
  .mobile-menu-right .nav-right-link:hover{
    color: var(--theme-color);
  }
  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 500;
  }
  .navbar .dropdown-menu {
    border-radius: 15px;
    border: none;
  }
  .nav-right {
    display: none;
  }
}
/* Dropdown */
.navbar .nav-item .dropdown-submenu {
  position: relative;
}
.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}
.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 15px;
  top: 8px;
  font-weight: 600;
}
.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}
.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}
.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-menu .dropdown-item{
    color: var(--color-dark)
  }
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    margin: 0 17px;
  }
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }
  .navbar .nav-item .dropdown-submenu a::after {
    top: 3px;
  }
  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}
/* Sivupalkki */
.sidebar-popup {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.sidebar-popup.open {
  visibility: visible;
  opacity: 1;
}
.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
  padding: 40px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9999;
}
.sidebar-wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.sidebar-content{
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 75px);
}
.close-sidebar-popup{
  position: absolute;
  top: 1px;
  right: 1px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.close-sidebar-popup:hover{
  background: var(--theme-color2);
}
.close-sidebar-popup i{
  transition: var(--transition2);
}
.close-sidebar-popup:hover i{
  transform: rotate(180deg);
}
.sidebar-logo img{
  width: 150px;
}
.sidebar-about{
  margin-top: 40px;
}
.sidebar-about h4{
  margin-bottom: 10px;
}
.sidebar-contact{
  margin-top: 20px;
}
.sidebar-contact h4{
  margin-bottom: 15px;
}
.sidebar-contact li{
  margin: 10px 0;
}
.sidebar-contact li i{
  margin-right: 5px;
  color: var(--theme-color);
}
.sidebar-contact li a:hover{
  color: var(--theme-color);
}
.sidebar-social{
  margin-top: 25px;
}
.sidebar-social h4{
  margin-bottom: 20px;
}
.sidebar-social a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  margin-right: 8px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
}
.sidebar-social a:hover{
  background: var(--theme-color2);
}
/* Main */
.main {
  margin-top: -16rem;
}
/* Karuselli */
.hero-section {
  position: relative;
}
.hero-scroll-box{
  position: absolute;
  left: 55px;
  bottom: 270px;
  z-index: 2;
}
.hero-scroll{
  width: 20px;
  height: 40px;
  border: 2px dashed var(--color-white);
  border-radius: 15px;
  position: relative;
}
.hero-scroll .scroller{
  width: 5px;
  border-radius: 8px;
  background-color: var(--color-white);
  position: absolute;
  top: 4px;
  left: 6px;
  bottom: 20px;
  animation: scroller 1500ms ease-out infinite;
}
@keyframes scroller{
  0%{
    bottom: 20px;
  }
  5%{
    top: 4px;
  }
  32%{
    bottom: 4px;
  }
  66%{
    top: 20px;
    bottom: 4px;
  }
  100%{
    top: 4px;
    bottom: 20px;
  }
}
.hero-single {
  padding-top: 380px;
  padding-bottom: 180px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: auto;
}
.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: var(--hero-overlay);
  opacity: 0.65;
  z-index: -1;
}
.hero-single .hero-content {
  height: 100%;
}
.hero-single .hero-content .hero-title {
  color: var(--color-white);
  font-size: 75px;
  font-weight: 700;
  margin: 20px 0;
  /*text-transform: capitalize;*/
}
.hero-single .hero-content .hero-title span{
  color: var(--theme-color);
}
.hero-single .hero-content p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}
.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}
.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--slider-arrow-bg);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
}
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-white);
  color: var(--theme-color);
}
.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}
.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}
.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.hero-slider.owl-theme .owl-dots {
  position: absolute;
  text-align: center;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.hero-slider.owl-theme .owl-dots .owl-dot span {
  background: var(--color-white);
  border: 3px solid var(--color-white);
  margin: 5px;
  border-radius: 10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  transition: var(--transition);
}
.hero-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}
@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }
  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }
  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }
  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }
}
@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }
  .hero-scroll-box{
    left: 20px;
    bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}
/* hs-1 */
.hs-1 .hero-slider.owl-theme .owl-nav .owl-prev,
.hs-1 .hero-slider.owl-theme .owl-nav .owl-next {
  top: 50%;
  right: 40px;
}
.hs-1 .hero-slider.owl-theme .owl-nav .owl-prev {
  left: unset;
  margin-top: 65px;
}
@media all and (max-width: 1199px) {
  .hs-1 .hero-slider.owl-theme .owl-nav .owl-prev,
  .hs-1 .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px;
    right: 30px;
  }
  .hs-1 .hero-slider.owl-theme .owl-nav .owl-prev {
    bottom: 10px !important;
  }
}
/* Play button */
.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
/* Tapahtumat */
.show-area{
  position: relative;
}
.show-area h2 {
  color:#fff;
}
.show-bg::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(to bottom right, #f2624b 0%, #fe9c8c 100%);
  z-index: -1;
}
.show-item{
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}
.show-meta{
  margin-bottom: 10px;
}
.show-meta span{
  color: var(--body-text-color);
  font-weight: 500;
}
.show-meta span i{
  color: var(--theme-color);
  margin-right: 5px;
}
.show-img{
  overflow: hidden;
  border-radius: 15px;
}
.show-img img{
  border-radius: 15px;
}
.show-item:hover .show-img img{
  transform: scale(1.1);
}
.show-content h4{
  margin-top: 20px;
}
.show-content h4 a, .show-content p a{
  color: var(--color-dark);
}
.show-content h4 a:hover, .show-content p a:hover{
  color: var(--theme-color);
}
.show-content p{
  margin: 10px 0 20px 0;
}
.show-slider .owl-item{
  padding: 0 25px 40px 25px;
}
.show-slider .owl-dots {
  text-align: center;
}
.show-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  border-radius: 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: var(--transition);
}
.show-slider .owl-dots .owl-dot.active span {
  background: var(--theme-color);
}
/* show area 2 */
/*.sa-2 .show-item{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sa-2 .show-content {
  flex: 1;
}

.sa-2 .show-img img{
  width: 230px;
  height: 240px;
  object-fit: cover;
}

.sa-2 .show-meta{
  margin-bottom: 0;
}

.sa-2 .show-content h4{
  margin-top: 5px;
}*/
@media all and (max-width: 767px) {
  .show-area::before{
    height: 600px;
  }
  .sa-2 .show-img img{
    width: 100%;
    height: auto;
    object-fit: unset;
  }
}
/* CTA */
.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.video-content::before {
  content: "";
  position: absolute;
  background: rgba(11, 9, 23, .65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 500px;
  z-index: 1;
}
.video-wrapper img {
  border-radius: 12px;
}
.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 991px) {
  .video-content{
    padding-top: 80px;
  }
  .video-wrapper {
    height: 250px;
  }
}
.video-info span, .theme-btn a {
  color:#fff;
}
.video-info h2 {
  margin-bottom: 30px;
}
@media all and (max-width: 991px) {
  .video-info h2 {
    font-size: 36px;
  }
}
/* Uutiset */
.top-news{
  position: relative;
}
.top-news-wrap{
  background: linear-gradient(to right, #f2624b 0%, #ff2768 100%);
}
.top-news-content .ticker-info{
  max-width: calc(100% - 10px);
  padding-left: 10px;
}
.top-news-content .ticker li a{
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
}
.top-news-content .ticker li:hover{
  color: var(--color-white);
  background: #6ea9b6;
}
.top-news-content .ticker li a i{
  color: var(--color-white);
  font-size: 14px;
  margin-right: 10px;
}
.partner-text p {
  margin-bottom: 15px;
}
/* Uutiset */
.blog-single-content .blog-details h1 {

}
.blog-single-content .blog-details p {
  margin-bottom: 15px;
}
.blog-thumb-img {
  margin-bottom: 25px;
}
.blog-thumb-img img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  border-radius: 15px;
}
/* Widgetit */
.widget {
  background: var(--theme-bg-light);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
}
.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 25px;
  color:  var(--color-dark);
}
.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}
.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}
.widget .category-list  {
  margin-left: 0px;
}
.widget .category-list li {
  list-style: none;
  background: #fff;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
}
.widget .category-list li a {
  display: block;
  font-weight: 400;
  color: var(--color-dark);
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}
.widget .category-list li.is-in-active-path a.active {
  font-weight: 600;
}
.widget .category-list li a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.widget .category-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}
.widget .category-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}
.widget .category-list li a span {
  float: right;
}
.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.widget .recent-post-img img {
  width: 75px;
  border-radius: 15px;
}
.widget .recent-post-bio{
  flex: 1;
}
.widget .recent-post-bio h6 {
  font-size: 18px;
  margin-bottom: 10px;
}
.widget .recent-post-bio p {
  font-size: 16px;
  line-height: 24px;
}
.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
}
.widget .recent-post-bio span i {
  margin-right: 5px;
}
.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}
/*.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}
.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}
.widget .tag-list a {
  background: var(--color-white);
  color:  var(--color-dark);
  padding: 5px 18px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}
.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}*/
/* Yhteystiedot */
.contact-wrapper {
  position: relative;
}
.contact-img img{
  width: 100%;
  border-radius: 15px;
}
.contact-form{
  background: var(--theme-bg-light);
  padding: 20px 25px;
  border-radius: 15px;
}
.contact-form-header {
  margin-bottom: 30px;
}
.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color:  var(--color-dark);
}
.contact-form .input-group{
  margin-bottom: 22px;
}
.contact-form .input-group:focus-within{
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}
.contact-form .input-group.captcha-box:focus-within{
  outline: none;
  border-radius: none;
}
.contact-form .input-group.textarea:focus-within{
  border-radius: 30px;
}
.contact-form .input-group .form-control{
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--color-white);
}
.contact-form .input-group .form-control,
.contact-form .input-group .form-select,
.contact-form .input-group .form-control::placeholder{
  color: var(--color-dark);
}
.contact-form .input-group .input-group-text{
  background: var(--color-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}
.contact-form .input-group.textarea .input-group-text,
.contact-form .input-group.textarea .form-control{
  border-radius: 30px;
}
.contact-form .input-group.textarea .input-group-text{
  align-items: flex-start;
  padding-top: 20px;
}
/* Captcha */
.captcha {
	font-size:14px;
	padding-top:5px;
	padding-bottom:10px;
	margin-bottom:0em!important;
	width:100%;
  color:#000;
}
.captcha-input {
	font-size:14px;
	padding:0em;
	padding-bottom:20px;
}
.captcha-input img {
}
.captcha-input input{
	float:left;
	clear:right;
	margin-right:10px;
  height: 28px;
  width: 46px;
  padding: 4px!important;
  text-align: center;
  font-size: 13px!important;
  background: white!important;
  color:#000!important;
}
.captcha-input img{
	float:left;
	clear:right;
	margin-right:10px;
	margin-top:0em;
}
.contact-content {
  margin-bottom: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background:var(--theme-bg-light);
  transition: var(--transition);
}
.contact-info:hover{
  transform: translateY(-8px)
}
.contact-info-icon i {
  font-size: 35px;
  color: var(--color-white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
}
.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:  var(--color-dark);
}
.contact-info p{
  color:  var(--color-dark);
  font-weight: 500;
  font-size: 16px;
}
@media all and (max-width: 768px) {
  .contact-content {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
/* Murupolku */
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}
.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--hero-overlay);
  opacity: 0.65;
  z-index: -1;
}
.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--heading-font2);
}
.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}
.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 400;
}
.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}
.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}
.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}
.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}
.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}
.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
  font-weight: 500;
}
@media all and (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 125px;
    padding-bottom: 75px;
  }
  .site-breadcrumb .breadcrumb-title {
    font-size: 30px;
  }
}
/* Sivunumerot */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.pagination .page-link {
  border: none;
  background:  var(--theme-bg-light);
  color: var(--color-dark);
  font-weight: 500;
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: var(--transition);
  z-index: 1;
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}
/* Footer */
.footer-widget-box {
  margin-bottom: 20px;
}
.footer-widget-box.about-us{
  padding-right: 50px;
}
.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-logo img {
  width: 200px;
  margin-bottom: 18px;
}
.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  z-index: 1;
}
.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}
.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 2px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 18px;
}
/*.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
}
.footer-list li a i {
  margin-right: 5px;
  color: var(--theme-color);
}
.footer-list li a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}*/
.footer-widget-box p {
  color: var(--color-white);
  padding-right: 18px;
  margin-bottom: 20px;
}
.footer-widget-box .social i{
  width: 20px;
}
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}
.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--theme-color);
  transition: var(--transition);
}
.footer-social li a i:hover {
  background: #6ea9b6;
  color: var(--color-white);
}
.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-contact li a {
  color: var(--footer-text-color);
  transition: var(--transition);
}
.footer-contact li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  transition: var(--transition);
  color: var(--color-white);
}
/*.footer-request{
  margin-top: 20px;
}
.footer-request p{
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 4px;
}
.footer-request .theme-btn i{
  margin-left: 20px;
}
.footer-widget-box.about-us .footer-newsletter p{
  font-size: 18px;
  font-weight: 500;
}*/
.footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}
.footer-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}
.footer-menu li::after{
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--theme-color);
  right: -18px;
  top: 13px;
  border-radius: 50px;
}
.footer-menu li:last-child::after{
  display: none;
}
.footer-menu li a, .copyright p a {
  color: var(--footer-text-color);
  transition: var(--transition);
}
.footer-menu li a:hover, .copyright p a:hover {
  color: var(--theme-color);
}
.copyright {
  padding: 20px 0;
  border-top: 1px solid var(--border-white-color);
}
.copyright .copyright-text, .copyright p {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}
.copyright .copyright-text a {
  color: var(--theme-color);
  font-weight: 500;
}
@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
  .footer-menu li::after{
    right: -12px;
  }
}
@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
/* Footer */
.footer-area2{
  background: #1c2d3e;
}
.footer-area2 .footer-newsletter-head{
  text-align: center;
}
.footer-area2 .footer-newsletter-head img{
  width: 100%;
  max-width: 250px;
  height: auto;
}
.footer-area2 .footer-newsletter-icon{
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 55px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 50px;
  border-radius: 50px;
}
.footer-area2 .footer-newsletter-head h2{
  font-size: 35px;
  color: var(--color-white);
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer-area2 .footer-social{
  justify-content: center;
}
.footer-area2 .footer-social li a i:hover{
  background: #6ea9b6;
}
/* Etusivu */
.home-2 .header-top {
  padding: 20px 0 20px 0;
  border-top: 8px dashed var(--theme-color);
}
.home-2 .header-top-contact a i{
  color: var(--theme-color);
}
.home-2 .header-top-contact a{
  color: var(--color-dark);
}
.home-2 .navbar-brand img{
  width: 200px;
}
.home-2 .header-top-social span{
  color: var(--color-dark);
}
.home-2 .header-top-social a{
  color: var(--theme-color);
}
.home-2 .navbar{
  background: var(--theme-color);
}
.home-2 .nav-right .sidebar-btn .nav-right-link{
  background: #1c2d3e;
}
.home-2 .nav-right .cart-btn span{
  background: var(--theme-color2);
}
.home-2 .main{
  margin-top: 0;
}
.home-2 .hero-single{
  padding-top: 140px;
  padding-bottom: 160px;
}
@media all and (min-width: 992px) {
  .home-2 .navbar .nav-item .nav-link.active::before,
  .home-2 .navbar .nav-item:hover .nav-link::before {
    background: var(--color-white);
  }
}
/* Sisältö */
.about-area h2, .about-area h3, .about-area h4 {
    margin-top: 15px;
    margin-bottom: 10px;
}
.about-area div h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 500!important;
}
.about-area div h3 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500!important;
}
.about-area div h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500!important;
}
.about-area div ul {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}
.about-area ul li {
    list-style: disc;
}
.about-area .about-right p {
  margin-bottom: 15px;
}
.about-img {
  padding: 10px;
}
.about-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 14px 26px rgba(0,0,0,0.45);
}
@media all and (max-width: 991px) {
  .about-img {
    margin-top: 25px;
  }
  .about-img img {
    max-width: 400px;
    margin-left: auto!important;
    float: left!important;
  }
}
/* Sisältökuvat */
.module-kuvia {
	margin-top:1em;
	margin-bottom:1em;
	padding:0.5em;
}
.size-large {
	clear:both!important;
	width:100%;
	margin-top:1em;
	margin-bottom:1em;
	float:left;
}
.size-large img {
	width:100%;
	height:auto;
}
.size-small {
	clear:right!important;
	width:50%;
	float:left!important;
	margin-top:1em;
	margin-bottom:1em;
}
.size-small img {
	width:100%;
	height:auto;
}
.size-large .img-content, .size-small .img-content {
	margin:0.5em;
}
@media screen and (max-width: 576px) {
	.module-youtube, .size-large, .size-small {
		width:100%;
	}
}
