
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

*, *: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: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757F95;
  line-height: 1.8;
}
a {
  /*color: #14212B;*/
  color:blue;
  display: inline-block;
}
a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #0049D0;
}
p.ingressi {
  margin-bottom:1.5em;
  margin-top:0.5em;
}
h1, h2, h3, h4, h5, h6 {
  color: #05152F;
  margin: 0px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  line-height: 1.2;
}
h1 {
  font-size: 35px;
  margin-bottom: 0.5em;
}
h1.maintitle {
  margin-bottom: 0.5em;
}
h2 {
  font-size: 30px;
  margin-top:0.5em;
  margin-bottom: 0.3em;
}
h3 {
  font-size: 26px;
  margin-top:0.5em;
  margin-bottom: 0.3em;
}
h4 {
  font-size: 22px;
  margin-top:0.5em;
  margin-bottom: 0.3em;
}
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: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}
/* Lataaja */
.preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 999999;
  transition: 0.3s ease opacity;
  text-align: center;
  width: 100%;
  height: 100%;
}
.preloader:before {
  content: "";
  width: 80px;
  height: 80px;
  border: 5px solid #2363D5;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.preloader:after {
  content: "";
  width: 80px;
  height: 80px;
  border: 5px solid #2363D5;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: LoaderCicle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}
@keyframes LoaderCicle {
  0% {
      width: 0;
      height: 0;
      opacity: 0;
  }
  10% {
      width: 10px;
      height: 10px;
      opacity: 1;
  }
  80% {
      width: 60px;
      height: 60px;
      opacity: 0.1;
  }
  100% {
      width: 70px;
      height: 70px;
      opacity: 0;
  }
}
/* CSS */
.ovrflow-hidden {
  overflow: hidden;
}
.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-color: #F5F8FD;
}
/* Otsikot */
.site-heading {
  margin-bottom: 50px;
}
.site-title-tagline {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #2363D5;
  position: relative;
  letter-spacing: 2px;
}
.site-title {
  font-weight: 700;
  font-size: 48px;
  color: #05152F;
  margin-top: 5px;
  margin-bottom: 0;
}
.site-title span{
  color: #2363D5;
}
.site-heading p {
  font-size: 16px;
}
.heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  background-color: #2363D5;
  width: 90px;
  overflow: hidden;
  border-radius: 50px;
}
.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #ffffff;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}
@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}
@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}
/* Margin & Padding */
.pb-140 {
  padding-bottom: 140px;
}
.pd-50 {
  padding: 50px 0;
}
.py-120 {
  padding: 120px 0;
}
.pt-120 {
  padding-top: 120px;
}
.pb-120 {
  padding-bottom: 120px;
}
.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;
}
.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;
}
.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;
}
.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;
}
.mr-300 {
  margin-right: 300px;
}
.ml-300 {
  margin-left: 300px;
}
.pos-rel {
  position: relative;
  z-index: 1;
}
/* Nappi */
.theme-btn {
  font-size: 16px;
  color: #fff;
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  border: none;
  /*background: #05152F;*/
  background: #ef181f;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}
.theme-btn:hover{
  color: #fff;
}
.theme-btn:hover{
  background: #04347e;
}
.theme-btn:hover::after{
  height: 100%;
}
.theme-btn i{
  margin-left: 6px;
}
/* Container */
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1185px;
  }
}
/* Sivun alkuun */
#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #2363D5;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all .5s ease-in-out;
}
/* Valikko */
@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 28px 0 28px 0;
    font-size: 16px;
    font-weight: 400;
    color: #05152F;
  }
  .navbar li.call-us {
    display:none;
  }
  .navbar li {
    &:empty {
      display: none;
    }
  }
  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }
  .navbar .nav-item .nav-link {
    position: relative;
    z-index: 1;
  }
  .navbar .nav-item .nav-link::before{
    content: "";
    position: absolute;
    background: #2363D5;
    width: 0px;
    height: 3px;
    bottom: 20px;
    left: 1px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
  }
  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item .nav-link:hover::before {
    width: 20px;
  }
  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #2363D5;
    font-weight: 700;
  }
  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }
  .header-nav-search a {
    color: #05152F;
    font-size: 18px;
    padding: 5px;
  }
  .navbar .header-btn {
    padding-top: 8px;
  }
  .navbar .header-btn a {
    padding-top:0em;
    padding-left:0.2em;
    padding-right:0.2em;
    padding-bottom:0.2em;
  }
  .navbar .header-btn img {
    width: 100%;
    max-width: 25px;
    height: auto;
  }
  .navbar .header-btn .theme-btn:hover{
    color: #fff;
  }
}
/* Valikko */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  z-index: 999;
}
.navbar.fixed-top {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.navbar.fixed-top .nav-item .nav-link {
  color: #05152F;
}
.navbar.fixed-top .header-nav-search a {
  color: #05152F;
}
.navbar.fixed-top .header-nav-search a:hover {
  color: #05152F;
}
.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;
}
button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;
}
button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}
.navbar-brand img {
  width: 190px;
}
/* Mobiilivalikko */
.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    /*display: none;*/
  }
  .navbar .header-btn {
    /*display: none;*/
  }
  .header-phone {
    display: none;
  }
}
@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }
  .navbar-brand {
    padding-left: 10px;
  }
  .navbar-brand img {
    width: 190px;
  }
  .navbar li.call-us {
    display:block;
    background: blue!important;
    padding: 1em;
    margin-bottom: 1em;
    margin-top:0.5em;
  }
  .navbar li.call-us a{
    color:#fff;
  }
  .navbar li.call-us i{
    margin-right: 0.5em;
  }
  .navbar-collapse {
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }
  .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }
  .navbar .nav-item .nav-link {
    color: #05152F;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }
  .navbar .nav-item .nav-link:hover {
    color: #2363D5 !important;
  }
  .navbar-toggler-icon {
    font-size: 32px;
    color: #05152F;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
  }
  .navbar .dropdown-menu {
    border-radius: 8px;
  }
  .navbar.fixed-top .navbar-toggler-icon {
    color: #05152F;
  }
  .header-nav-right {
    /*display: none;*/
  }
}
.main {
  margin-top: 0rem;
}
/* Karuselli */
.hero-wrapper{
  padding-top: 250px;
  padding-bottom: 120px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-wrapper::before{
  content: "";
  position: absolute;
  background: rgba(7, 9, 36, .6);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero-shape{
  position: absolute;
  bottom: -5px;
  left: 0px;
}
.hero-img{
  position: relative;
  z-index: 1;
}
.hero-wrapper .hero-sub-title{
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
}
.hero-wrapper .hero-title{
  font-size: 45px;
  color: #fff;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-wrapper .hero-title span{
  color: #E7295A;
}
.hero-wrapper p{
  font-size: 17px;
  color: #fff;
}
.hero-wrapper .hero-btn{
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
.hero-single {
  padding-top: 150px;
  padding-bottom: 150px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-single::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  left: 0;
  top: 0;
  z-index: -1;
}
.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-single .hero-content .hero-title span{
  color: #2363D5;
}
.hero-single .hero-content .hero-sub-title {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.hero-single .hero-content p {
  color: #fff;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}
.hero-title {
  font-weight: 700;
  margin: 20px 0;
}
.hero-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.hero-btn .video-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}
.hero-btn .play-btn{
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.hero-slider {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
}
.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}
.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 30px;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  transition: all .5s ease-in-out;
}
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #2554FF;
}
.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%);
}
@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: 20px !important;
  }
  .hero-slider.owl-theme .owl-nav .owl-next {
    left: 120px;
  }
}
@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }
  .hero-wrapper{
    padding-top: 260px;
    padding-bottom: 160px;
  }
  .hero-wrapper .hero-title{
    font-size: 32px;
  }
  .hero-wrapper .hero-img{
    margin-top: 70px;
  }
}
@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 15px;
  }
  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}
/* Sisältö */
.about-area {
  position: relative;
  display: block;
}
.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-img{
  position: relative;
}
.about-img::before{
  content: "";
  position: absolute;
  border: 12px solid #2363D5;
  border-radius: 0 0 0 20px;
  width: 50%;
  height: 50%;
  left: -20px;
  bottom: -20px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
}
.about-img::after{
  content: "";
  position: absolute;
  border: 12px solid #2363D5;
  border-radius: 0 20px 0 0;
  width: 50%;
  height: 50%;
  right: -20px;
  top: -20px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: -1;
}
.about-img img{
  border-radius: 10px;
}
.about-right {
  position: relative;
  display: block;
  padding-left: 25px;
}
.contact-btn {
  margin-top:2em;
}
@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
  }
}
/* Nostot */
.feature-area{
  position: relative;
  z-index: 1;
}
.feature-item{
  padding: 25px;
  cursor: pointer;
  background: #2363D5;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 6%);
  transition: all .5s ease-in-out;
}
.feature-item:hover{
  transform: translateY(-10px);
}
.feature-icon{
  margin-bottom: 20px;
  transition: all .5s ease-in-out;
}
.feature-item:hover .feature-icon{
  transform: rotateX(360deg);
}
.feature-icon i{
  font-size: 50px;
  color: #fff;
  line-height: 1;
}
.feature-content h5{
  font-size: 22px;
  margin-bottom: 8px;
}
.feature-item .feature-icon i,
.feature-item p,
.feature-item h5{
  color: #fff;
}
/* Tarjoukset */
.service-area {
  position: relative;
  overflow: hidden;
}
.service-item {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}
.service-item:hover{
  transform: translateY(-10px);
}
.service-img img{
  border-radius: 10px;
}
.service-icon{
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #2363D5;
  text-align: center;
  border-radius: 50%;
  margin: -50px auto 25px auto;
  transition: all .5s ease-in-out;
}
.service-icon::before{
  content: "";
  position: absolute;
  border-radius: 50px;
  border: 3px dashed #2363D5;
  left: -7px;
  top: -7px;
  right: -7px;
  bottom: -7px;
}
.service-item:hover .service-icon{
  border-radius: 50%;
}
.service-icon i {
  font-size: 45px;
  color: #fff;
}
.service-content{
  padding: 0 20px 20px 20px;
}
.service-title {
  margin-top: 15px;
}
.service-title a {
  font-size: 22px;
  margin-bottom: 10px;
  color: #05152F;
}
.service-title a:hover {
  color: #2363D5 !important;
}
.service-price {
  color:red;
  font-weight: 700;
  font-size: 1.4em;
}
.service-arrow {
  margin-top: 20px;
}
.service-arrow .service-read-btn{
  font-weight: 500;
  color: #2363D5;
}
.service-arrow .service-read-btn:hover{
  color: #05152F;
}
.service-arrow a i{
  margin-left: 8px;
}
.service-details img{
  border-radius: 8px;
}
.category-list i{
  color: #2363D5;
}
.service-single-list i {
  color: #2363D5;
  margin-right: 10px;
}
.service-download h4 {
  margin-bottom: 0.5em;
}
.service-download a, .service-download p {
  color: #4b4b4b;
}
.service-download a i {
  margin-right: 10px;
}
.service-download a:hover {
  text-decoration: underline;
}
/* Tuotteet*/
.case-area .filter-box {
  margin-top:2em;
}
.case-item {
  margin-bottom: 25px;
  position: relative;
  transition: all .5s ease-in-out;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}
.case-img {
  border-radius: 10px;
}
.case-img img{
  border-radius: 8px;
}
.case-content {
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  /*box-shadow: 0 3px 24px rgb(0 0 0 / 10%);*/
  overflow: hidden;
  z-index: 1;
}
.case-content-info small {
  color: #2363D5;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.case-content-info {
  padding: 15px 15px 15px 18px;
}
.case-content-info a {
  font-size: 22px;
  color: #05152F;
}
.case-content-info a:hover {
  color: #2363D5;
}
.case-content-info h4.price a {
  color: red!important;
  margin-top:0.2em;
}
.case-content-info  p a {
  font-size: 1em!important;
}
.case-area3 .case-item:hover{
  transform: unset;
}
/* Tuotteet  */
.case-details img{
  border-radius: 8px;
}
.case-details p.ingressi {
  margin-bottom: 0em;
}
.case-details .hinta h4 {
  font-size: 1.6em;
  font-weight: 700;
  color:red;
}
.case-arrow{
  font-size: 22px;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 6px 0px 0px 6px;
  background: #2363D5;
  position: relative;
}
.case-arrow::before{
  content: "";
  position: absolute;
  border: 3px solid #2363D5;
  border-radius: 8px 0px 0px 8px;
  right: -6px;
  top: -6px;
  left: -6px;
  bottom: -6px;
  transition: all .5s ease-in-out;
  z-index: -1;
}
.case-arrow:hover{
  background: #05152F;
  color: #fff;
}
.case-arrow:hover::before{
  border-color: #05152F;
}
.more-images   {
	padding-top:1em;
	padding-bottom:1em;
}
.more-images .thumb  {
	padding:0em;
	margin-bottom:0.5em;
}
.more-images a {
	padding:0em!important;
	margin:0em!important;
}
.more-images .thumb img:hover {
	opacity: .7;
}
.more-images .thumb img {
	width:100%!important;
	height: auto;
	float: left;
	border: 1px solid #eee;
	padding:0.2em;
}
.case-sidebar .case-sidebar-content ul li {
  border-bottom: 1px solid #e7e7e7;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}
.case-sidebar .case-sidebar-content ul li:last-child {
  border-bottom: none;
}
.case-sidebar-title {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.case-sidebar .case-sidebar-content ul li span {
  display: block;
  font-weight: normal;
  margin: 0;
}
.case-sidebar .case-sidebar-content .rating a {
  color: #2363D5
}
.case-new-project {
  background: #2363D5 !important;
}
.case-new-project h4 {
  color: #fff;
  margin-bottom: 10px;
}
.case-new-project p, .case-new-project a {
  color: #fff;
}
.case-new-project a:hover {
  color: #fff;
  text-decoration: underline;
}
.new-project-btn {
  background: #fff;
  color: #05152F;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all .5s ease-in-out;
}
.new-project-btn:hover {
  background: #05152F;
  color: #fff;
}
.new-project-btn i {
  margin-left: 8px;
}
.case-single-list i {
  color: #2363D5;
  margin-right: 10px;
}
/* Sivupalkki */
.widget {
  background: #F8F9FF;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.widget .widget-title {
  color: #05152F;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}
.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 12px;
  border-bottom: 3px solid #2363D5;
  border-radius: 10px;
  bottom: 0;
  left: 0;
}
.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 25px;
  border-bottom: 3px solid #2363D5;
  border-radius: 10px;
  bottom: 0;
  left: 18px;
}
.widget .search-form .form-control {
  padding: 10px 15px 10px 15px;
  border-radius: 8px;
  box-shadow: none;
}
.widget .search-form {
  position: relative;
}
.widget .search-form .form-control:focus {
  border-color: #2363D5;
}
.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: #6C7C89;
}
.widget .category-list a {
  display: block;
  padding: 10px 0;
  color: #05152F;
  border-bottom: 1px solid #ced4da;
  transition: all .5s ease-in-out;
}
.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.widget .category-list a:hover {
  padding-left: 10px;
  color: #2363D5;
}
.widget .category-list a.active {
  font-weight: 700;
  border:none;
}
.widget .category-list a i {
  margin-right: 5px;
  color: #2363D5;
}
.widget .category-list a span {
  float: right;
}
.widget .category-list .submenu {
  padding-left:1em;
  border:none!important;
}
.widget .category-list .submenu a {
  border:none;
}
.widget .category-list .submenu a.has-children {
  display:none;
}
.widget .category-list .submenu .submenu {
  padding-left:1em!important;
  border:none!important;
}
.widget .tag-list a {
  background: #fff;
  color: #05152F;
  padding: 4px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
  transition: all .5s ease-in-out;
}
.widget .tag-list a:hover {
  background-color: #2363D5;
  color: #fff;
}
/* Captcha */
.captcha {
	font-size:1em;
	padding-top:0.5em;
	padding-bottom:1em;
	margin-bottom:0em!important;
	width:100%;
}
.captcha-input {
	font-size:0.9em;
	padding:0em;
	padding-bottom:3em!important;
  text-align: center!important;
}
.captcha-input input{
	float:left;
	clear:right;
	margin-right:0.5em;
}
.captcha-input img{
	float:left;
	clear:right;
	margin-right:0.5em;
	margin-top:0em;
}
.contact-wrapper {
  background: #fff;
  position: relative;
}
.contact-form {
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.contact-form-header {
  margin-bottom: 30px;
  color: #05152F;
}
.contact-form-header h2 {
  color: #05152F;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 800;
}
.contact-form-header p {
  color:#757F95;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}
.contact-form .form-group .form-control:focus {
  border-color: #2363D5;
}
.contact-map{
  margin-bottom: -8px;
}
.contact-map iframe {
  width: 100%;
  height: 450px;
}
.contact-content {
  padding: 20px 0;
  margin-bottom: 50px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.contact-content::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 30px;
  right: 30px;
  background: #2363D5;
  height: 4px;
  border-radius: 10px;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.contact-info-icon{
  width: 62px;
  height: 62px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #2363D5;
}
.contact-info-icon i {
  font-size: 25px;
  color: #000;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  /*background: #2363D5;*/
  border-radius: 8px;
}
.contact-info h5 {
  color: #05152F;
  margin-bottom: 5px;
  font-size: 20px;
}
.contact-info p {
  color: #757F95;
}
@media all and (max-width: 767px) {
  .contact-content{
    margin-top: 80px;
  }
}
/* Logot */
.partner-area .partner-wrapper img {
  padding: 20px;
}
.partner-area .partner-item{
  margin-bottom: 20px;
  text-align: center;
}
.partner-slider img{
  padding: 10px !important;
}
.companylogo {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Murupolku */
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(../img/bg-breadcrump.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.site-breadcrumb::before{
  content: "";
  position: absolute;
  background: #05152F;
  opacity: .6;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.breadcrumb-shape{
  position: absolute;
  bottom: -4px;
  left: 0px;
}
.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}
.site-breadcrumb .breadcrumb-menu .active{
  color: #fff;
}
.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #fff;
  font-weight: 400;
}
.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 5 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.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: #fff;
}
@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 180px;
  }
}
/* Sivunumerot */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.pagination .page-link {
  border: none;
  background: #05152F;
  color: #fff;
  margin: 0 10px;
  border-radius: 8px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all .5s ease-in-out;
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
  background: #2363D5;
}
/* Footer */
.footer-area {
  background-image: url(../img/vslp-karuselli-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer-area::before{
  content: "";
  position: absolute;
  background: #05152F;
  opacity: .95;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.footer-widget-box {
  margin-bottom: 20px;
}
.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-logo img {
  width: 220px;
  margin-bottom: 20px;
}
.copyright {
  padding: 20px 0;
  background: #061938;
}
.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}
.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}
.copyright .footer-menu li a {
  color: #fff;
  transition: all .5s ease-in-out;
}
.copyright .footer-menu li a:hover {
  color: #fff;
  text-decoration: underline;
}
.copyright .copyright-text {
  color: #fff!important;
  margin-bottom: 0px;
  font-size: 16px;
}
.copyright p {
  color: #fff!important;
}
.copyright .copyright-text a {
  color: #2363D5;
  font-weight: 600;
}
.footer-widget-title {
  color: #fff;
  position: relative;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  z-index: 1;
}
.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 15px;
  height: 3px;
  border-radius: 10px;
  background: #2363D5;
  bottom: 0;
  left: 0;
}
.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 35px;
  height: 3px;
  border-radius: 10px;
  background:#2363D5;
  bottom: 0;
  left: 20px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left:0em!important;
}
.footer-list li {
  &:empty {
    display: none;
  }
}
.footer-list li {
  list-style: none;
}
.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}
.footer-list li a.active {
  color: #fff;
  font-weight: 700;
}
.footer-list li a i{
  margin-right: 5px;
  color: #fff;
  font-size: 12px;
}
.footer-list li a:hover {
  padding-left: 10px;
  color: #fff;
  text-decoration: underline;
}
.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.footer-social li a i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  background: #2363D5;
  color: #fff;
  transition: all .5s ease-in-out;
}
.footer-social li a i:hover {
  background: #fff;
  color: #2363D5;
}
.footer-newsletter .subscribe-form .form-control {
  border: 2px solid #e8e8e8;
  height: 55px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  box-shadow: none;
  background-color: transparent;
}
.footer-newsletter .subscribe-form .form-control::placeholder {
  color: #F2F3F5;
  opacity: 1;
}
.footer-newsletter .subscribe-form .form-control:-ms-input-placeholder {
  color: #F2F3F5;
}
.footer-newsletter .subscribe-form .form-control::-ms-input-placeholder {
  color: #F2F3F5;
}
.footer-newsletter .subscribe-form .theme-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #fff;
  color:#000;
}
.footer-newsletter .subscribe-form .theme-btn::after{
  background: #fff;
}
.footer-newsletter .subscribe-form .theme-btn:hover{
  color: #fff!important;
  background: #2363D5;
}
.theme-btn:hover, .theme-btn a:hover{
  color: #fff!important;
}
.footer-contact ul {
  padding-left:0em!important;
}
.footer-contact ul p {
  margin-bottom:0em!important;
}
.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-contact li a {
  color: #f5faff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-contact li i {
  width: 12px;
  height: 30px;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #2363D5;
}
@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}
@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
}
/* Yleiset */
.home-3 .feature-area{
  margin-top: -80px;
}
.home-3 .hero-single{
  padding-bottom: 220px;
}
@media (max-width: 1199px){
  .home-3 .hero-slider.owl-theme .owl-nav .owl-prev,  .home-3 .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 70px !important;
  }
}
#main_nav li.nav-item a {
  font-weight: 400!important;
}
#main_nav li.nav-item a.active {
  font-weight: 700!important;
}
