body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tgA0ZZyljr {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tgA0ZZyljr h2 {
  text-align: center;
}
.cid-tgA0ZZyljr h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA0ZZyljr p {
  color: #767676;
}
.cid-tgA0ZZyljr img {
  object-fit: cover;
}
.cid-tgA0ZZyljr .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA0ZZyljr .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA0ZZyljr .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA0ZZyljr .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA0ZZyljr .card-title {
  font-weight: 500;
}
.cid-tgA0ZZyljr .card-img {
  text-align: inherit;
}
.cid-tgA0ZZyljr .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA0ZZyljr .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA0ZZyljr .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA0ZZyljr .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA0ZZyljr .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgA0ZZyljr .mbr-section-title {
  color: #4479d9;
}
.cid-tgA136rSWU {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 105px;
}
.cid-tgA136rSWU .image-block {
  margin: auto;
}
.cid-tgA136rSWU figcaption {
  position: relative;
}
.cid-tgA136rSWU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tgA136rSWU .image-block {
    width: 100% !important;
  }
}
.cid-tgA13V9cq0 {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tgA13V9cq0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA13V9cq0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA13V9cq0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA13V9cq0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA13V9cq0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA13V9cq0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA13V9cq0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA13V9cq0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA13V9cq0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA14XU0uw {
  background: #efefef;
  padding-top: 120px;
  padding-bottom: 120px;
}
.cid-tgA14XU0uw .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tgA14XU0uw .video-block {
    width: 100% !important;
  }
}
.cid-tgA19mkfhS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA1bMQnJV {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA1bMQnJV .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA1bMQnJV .social-list a:focus {
  text-decoration: none;
}
.cid-tgzZHv8ptY {
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgzZJrAsYG {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgzZJrAsYG .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgzZJrAsYG .social-list a:focus {
  text-decoration: none;
}
.cid-tgA1FzNNS6 {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tgA1FzNNS6 h2 {
  text-align: center;
}
.cid-tgA1FzNNS6 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA1FzNNS6 p {
  color: #767676;
}
.cid-tgA1FzNNS6 img {
  object-fit: cover;
}
.cid-tgA1FzNNS6 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA1FzNNS6 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA1FzNNS6 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA1FzNNS6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA1FzNNS6 .card-title {
  font-weight: 500;
}
.cid-tgA1FzNNS6 .card-img {
  text-align: inherit;
}
.cid-tgA1FzNNS6 .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA1FzNNS6 .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA1FzNNS6 .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA1FzNNS6 .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA1FzNNS6 .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgA1FzNNS6 .mbr-section-title {
  color: #4479d9;
}
.cid-tgA1H6r8o4 {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 105px;
}
.cid-tgA1H6r8o4 .image-block {
  margin: auto;
}
.cid-tgA1H6r8o4 figcaption {
  position: relative;
}
.cid-tgA1H6r8o4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tgA1H6r8o4 .image-block {
    width: 100% !important;
  }
}
.cid-tgA1HQOJcw {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tgA1HQOJcw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA1HQOJcw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA1HQOJcw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA1HQOJcw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA1HQOJcw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA1HQOJcw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA1HQOJcw .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA1HQOJcw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA1HQOJcw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA1J1b90L {
  background: #efefef;
  padding-top: 120px;
  padding-bottom: 120px;
}
.cid-tgA1J1b90L .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tgA1J1b90L .video-block {
    width: 100% !important;
  }
}
.cid-tgA1M1XtAG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA1NdCYiE {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA1NdCYiE .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA1NdCYiE .social-list a:focus {
  text-decoration: none;
}
.cid-umtQm86ZGV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc03367-4-1500x1115.jpg");
}
.cid-umtQm86ZGV .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-umtQm86ZGV img,
.cid-umtQm86ZGV .item-img {
  width: 100%;
}
.cid-umtQm86ZGV .item:focus,
.cid-umtQm86ZGV span:focus {
  outline: none;
}
.cid-umtQm86ZGV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umtQm86ZGV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umtQm86ZGV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umtQm86ZGV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umtQm86ZGV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umtQm86ZGV .mbr-section-title {
  color: #232323;
}
.cid-umtQm86ZGV .mbr-text,
.cid-umtQm86ZGV .mbr-section-btn {
  text-align: left;
}
.cid-umtQm86ZGV .item-title {
  text-align: left;
  color: #353535;
}
.cid-umtQm86ZGV .item-subtitle {
  text-align: center;
}
.cid-tgA2UVVXty {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dsc03367-2-1500x1115.jpg");
}
.cid-tgA2UVVXty .card-img {
  background-color: #fff;
}
.cid-tgA2UVVXty .card {
  align-self: stretch;
}
.cid-tgA2UVVXty .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tgA2UVVXty h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgA2UVVXty p {
  text-align: left;
}
.cid-tgA2UVVXty .mbr-text {
  color: #767676;
}
.cid-tgA2UVVXty .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgA2UVVXty .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tgA2UVVXty .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tgA2UVVXty .card-title {
  color: #353535;
}
.cid-tgA2Xcs4tM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA2YzUcpB {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA2YzUcpB .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA2YzUcpB .social-list a:focus {
  text-decoration: none;
}
.cid-tgA3hllUMp {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/dsc03367-2-1500x1115.jpg");
}
.cid-tgA3hllUMp .card-img {
  background-color: #fff;
}
.cid-tgA3hllUMp .card {
  align-self: stretch;
}
.cid-tgA3hllUMp .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tgA3hllUMp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgA3hllUMp p {
  text-align: left;
}
.cid-tgA3hllUMp .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-tgA3hllUMp .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgA3hllUMp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tgA3hllUMp .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tgA3iyB7Ay {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA3jyD6ZQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA3jyD6ZQ .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA3jyD6ZQ .social-list a:focus {
  text-decoration: none;
}
.cid-tgA3Is7r1x {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA3Is7r1x .card-img {
  background-color: #fff;
}
.cid-tgA3Is7r1x .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tgA3Is7r1x h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgA3Is7r1x p {
  text-align: left;
}
.cid-tgA3Is7r1x .mbr-text {
  color: #767676;
}
.cid-tgA3Is7r1x .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgA3Is7r1x .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tgA3Is7r1x .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tgA3Jkqrzp {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA3JNr1MI {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA3JNr1MI .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA3JNr1MI .social-list a:focus {
  text-decoration: none;
}
.cid-tgA3W1YiP1 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA3W1YiP1 .card-img {
  background-color: #fff;
}
.cid-tgA3W1YiP1 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tgA3W1YiP1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tgA3W1YiP1 p {
  text-align: left;
}
.cid-tgA3W1YiP1 .mbr-text {
  color: #767676;
}
.cid-tgA3W1YiP1 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgA3W1YiP1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tgA3W1YiP1 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tgA3WpetFt {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA3WTR5UV {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA3WTR5UV .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA3WTR5UV .social-list a:focus {
  text-decoration: none;
}
.cid-tgA4k3YqdU {
  padding-top: 60px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-1057x1500.png");
}
.cid-tgA4k3YqdU .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgA4k3YqdU .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-tgA4k3YqdU .separline {
  position: relative;
}
.cid-tgA4k3YqdU .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-tgA4k3YqdU .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tgA4k3YqdU .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgA4k3YqdU .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tgA4k3YqdU .mbr-section-title {
  color: #4479d9;
}
.cid-tgA4yAKLqn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA4nTy34w {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA4nTy34w .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA4nTy34w .social-list a:focus {
  text-decoration: none;
}
.cid-tgA50raNlM {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/blogiprofiili-2000x1333.jpg");
}
.cid-tgA50raNlM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgA50raNlM .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-tgA50raNlM .separline {
  position: relative;
}
.cid-tgA50raNlM .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-tgA50raNlM .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tgA50raNlM .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgA50raNlM .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tgA50raNlM .mbr-section-title {
  color: #4479d9;
}
.cid-tgA51NwyAm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA52PKeZz {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA52PKeZz .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA52PKeZz .social-list a:focus {
  text-decoration: none;
}
.cid-tgA5lctbnw {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/blogiprofiili-2000x1333.jpg");
}
.cid-tgA5lctbnw .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgA5lctbnw .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-tgA5lctbnw .separline {
  position: relative;
}
.cid-tgA5lctbnw .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-tgA5lctbnw .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tgA5lctbnw .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgA5lctbnw .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tgA5lctbnw .mbr-section-title {
  color: #4479d9;
}
.cid-tgA5mEPqLL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA5ngEmKG {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA5ngEmKG .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA5ngEmKG .social-list a:focus {
  text-decoration: none;
}
.cid-tgA5D1HZfi {
  background-image: url("../../../assets/images/suistomobiili-small-1-1500x1000.jpg");
}
.cid-tgA5GMVR6L {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA5I77rVy {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA5I77rVy .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA5I77rVy .social-list a:focus {
  text-decoration: none;
}
.cid-tgA5VeB2Mk {
  background-image: url("../../../assets/images/suistomobiili-small-1-1500x1000.jpg");
}
.cid-tgA5Wn014V {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA5X4XzKy {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA5X4XzKy .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA5X4XzKy .social-list a:focus {
  text-decoration: none;
}
.cid-tgA6nJ4CBh {
  padding-top: 45px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/03-b-juha-mats-suuri-pamaus-1500x1920.jpg");
}
.cid-tgA6nJ4CBh .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgA6nJ4CBh .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-tgA6nJ4CBh .separline {
  position: relative;
}
.cid-tgA6nJ4CBh .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-tgA6nJ4CBh .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tgA6nJ4CBh .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgA6nJ4CBh .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tgA6nJ4CBh .mbr-section-title {
  color: #4479d9;
}
.cid-tgA6pWhmKP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA6qxSz17 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA6qxSz17 .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA6qxSz17 .social-list a:focus {
  text-decoration: none;
}
.cid-tgA6MBKANG {
  padding-top: 60px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/03-b-juha-mats-suuri-pamaus-1500x1920.jpg");
}
.cid-tgA6MBKANG .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tgA6MBKANG .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-tgA6MBKANG .separline {
  position: relative;
}
.cid-tgA6MBKANG .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-tgA6MBKANG .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tgA6MBKANG .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgA6MBKANG .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-tgA6MBKANG .mbr-section-title {
  color: #4479d9;
}
.cid-tgA6NxNk5l {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA6ObyCEl {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA6ObyCEl .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA6ObyCEl .social-list a:focus {
  text-decoration: none;
}
.cid-tgA7r9Vpbf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tgA7r9Vpbf h2 {
  text-align: center;
}
.cid-tgA7r9Vpbf h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA7r9Vpbf p {
  color: #767676;
}
.cid-tgA7r9Vpbf img {
  object-fit: cover;
}
.cid-tgA7r9Vpbf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA7r9Vpbf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA7r9Vpbf .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA7r9Vpbf .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA7r9Vpbf .card-title {
  font-weight: 500;
}
.cid-tgA7r9Vpbf .card-img {
  text-align: inherit;
}
.cid-tgA7r9Vpbf .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA7r9Vpbf .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA7r9Vpbf .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA7r9Vpbf .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA7r9Vpbf .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tgA7r9Vpbf .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tgA7r9Vpbf .mbr-section-title {
  color: #4479d9;
}
.cid-tgA7t76mdy {
  background-image: url("../../../assets/images/47501918061-0d48c8f35f-k-2000x1429.jpg");
}
.cid-tgA7xny6cE {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tgA7xny6cE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA7xny6cE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA7xny6cE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA7xny6cE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA7xny6cE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA7xny6cE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA7xny6cE .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA7xny6cE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA7xny6cE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA7IxoscB {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 75px;
}
.cid-tgA7IxoscB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tgA7IxoscB .video-block {
    width: 100% !important;
  }
}
.cid-tgA7JiltRi {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 60px;
}
.cid-tgA7JiltRi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tgA7JiltRi .video-block {
    width: 100% !important;
  }
}
.cid-tgA7zRSdQc {
  background-image: url("../../../assets/images/post-man-studio-portrait-logo4-small-1500x1046.jpg");
}
.cid-tgACQch9IT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tgACQch9IT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgACQch9IT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgACQch9IT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgACQch9IT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgACQch9IT .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgACQch9IT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgACQch9IT .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgACQch9IT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgACQch9IT .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA7O3IlFP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA7OZdtqD {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA7OZdtqD .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA7OZdtqD .social-list a:focus {
  text-decoration: none;
}
.cid-tgA89NwDeI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tgA89NwDeI h2 {
  text-align: center;
}
.cid-tgA89NwDeI h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA89NwDeI p {
  color: #767676;
}
.cid-tgA89NwDeI img {
  object-fit: cover;
}
.cid-tgA89NwDeI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA89NwDeI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA89NwDeI .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA89NwDeI .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA89NwDeI .card-title {
  font-weight: 500;
}
.cid-tgA89NwDeI .card-img {
  text-align: inherit;
}
.cid-tgA89NwDeI .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA89NwDeI .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA89NwDeI .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA89NwDeI .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA89NwDeI .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgA89NwDeI .mbr-section-title {
  color: #4479d9;
}
.cid-tgA8b9q4fw {
  background-image: url("../../../assets/images/47501918061-0d48c8f35f-k-2000x1429.jpg");
}
.cid-tgA8curiOH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tgA8curiOH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA8curiOH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA8curiOH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA8curiOH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA8curiOH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA8curiOH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA8curiOH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA8curiOH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA8curiOH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA8eIRPDU {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-tgA8eIRPDU .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tgA8eIRPDU .video-block {
    width: 100% !important;
  }
}
.cid-tgAAXuCqkt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tgAAXuCqkt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgAAXuCqkt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgAAXuCqkt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgAAXuCqkt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgAAXuCqkt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgAAXuCqkt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgAAXuCqkt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgAAXuCqkt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgAAXuCqkt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA8hagQz5 {
  background-image: url("../../../assets/images/post-man-studio-portrait-logo4-small-1500x1046.jpg");
}
.cid-tgA8jg26GS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA8jVkF7r {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA8jVkF7r .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA8jVkF7r .social-list a:focus {
  text-decoration: none;
}
.cid-tgA8Tz0HHI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tgA8Tz0HHI h2 {
  text-align: center;
}
.cid-tgA8Tz0HHI h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA8Tz0HHI p {
  color: #767676;
}
.cid-tgA8Tz0HHI img {
  object-fit: cover;
}
.cid-tgA8Tz0HHI .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA8Tz0HHI .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA8Tz0HHI .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA8Tz0HHI .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA8Tz0HHI .card-title {
  font-weight: 500;
}
.cid-tgA8Tz0HHI .card-img {
  text-align: inherit;
}
.cid-tgA8Tz0HHI .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA8Tz0HHI .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA8Tz0HHI .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA8Tz0HHI .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA8Tz0HHI .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tgA8Tz0HHI .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tgA8Tz0HHI .mbr-section-title {
  color: #4479d9;
}
.cid-tgA8WsKaEQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tgA8WsKaEQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA8WsKaEQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA8WsKaEQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA8WsKaEQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA8WsKaEQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA8WsKaEQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA8WsKaEQ .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA8WsKaEQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA8WsKaEQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA90VkXRI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA91EZEfk {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA91EZEfk .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA91EZEfk .social-list a:focus {
  text-decoration: none;
}
.cid-tgA9IGZ9LF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tgA9IGZ9LF h2 {
  text-align: center;
}
.cid-tgA9IGZ9LF h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgA9IGZ9LF p {
  color: #767676;
}
.cid-tgA9IGZ9LF img {
  object-fit: cover;
}
.cid-tgA9IGZ9LF .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgA9IGZ9LF .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgA9IGZ9LF .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgA9IGZ9LF .mbr-section-subtitle {
  color: #767676;
}
.cid-tgA9IGZ9LF .card-title {
  font-weight: 500;
}
.cid-tgA9IGZ9LF .card-img {
  text-align: inherit;
}
.cid-tgA9IGZ9LF .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgA9IGZ9LF .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgA9IGZ9LF .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgA9IGZ9LF .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgA9IGZ9LF .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgA9IGZ9LF .mbr-section-title {
  color: #4479d9;
}
.cid-tTXTM51zuU {
  background-image: url("../../../assets/images/ulkopuolella-kansi-small-1754x2500.jpg");
}
.cid-tgA9Luy2Mt {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tgA9Luy2Mt .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgA9Luy2Mt .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgA9Luy2Mt .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgA9Luy2Mt .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgA9Luy2Mt .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA9Luy2Mt .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgA9Luy2Mt .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgA9Luy2Mt .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgA9Luy2Mt .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgA9NK1guf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgA9OmyM7r {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgA9OmyM7r .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgA9OmyM7r .social-list a:focus {
  text-decoration: none;
}
.cid-tgAaPkoM5X {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tgAaPkoM5X h2 {
  text-align: center;
}
.cid-tgAaPkoM5X h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgAaPkoM5X p {
  color: #767676;
}
.cid-tgAaPkoM5X img {
  object-fit: cover;
}
.cid-tgAaPkoM5X .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgAaPkoM5X .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgAaPkoM5X .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgAaPkoM5X .mbr-section-subtitle {
  color: #767676;
}
.cid-tgAaPkoM5X .card-title {
  font-weight: 500;
}
.cid-tgAaPkoM5X .card-img {
  text-align: inherit;
}
.cid-tgAaPkoM5X .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgAaPkoM5X .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgAaPkoM5X .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgAaPkoM5X .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgAaPkoM5X .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgAaPkoM5X .mbr-section-title {
  color: #4479d9;
}
.cid-tTXSkzdZfe {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tTXSkzdZfe .mbr-text {
  text-align: center;
}
.cid-tTXSkzdZfe .mbr-section-subtitle {
  text-align: center;
}
.cid-tgAaQ9BRV2 {
  background-image: url("../../../assets/images/rooman-rajoilla-colored.jpg");
}
.cid-tgAaR1obcI {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgAaR1obcI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgAaR1obcI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgAaR1obcI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgAaR1obcI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgAaR1obcI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgAaR1obcI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgAaR1obcI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgAaR1obcI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgAaR1obcI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgAaSt6Cgb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgAaTrBhcg {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgAaTrBhcg .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgAaTrBhcg .social-list a:focus {
  text-decoration: none;
}
.cid-tgAborgHNf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tgAborgHNf h2 {
  text-align: center;
}
.cid-tgAborgHNf h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tgAborgHNf p {
  color: #767676;
}
.cid-tgAborgHNf img {
  object-fit: cover;
}
.cid-tgAborgHNf .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tgAborgHNf .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tgAborgHNf .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tgAborgHNf .mbr-section-subtitle {
  color: #767676;
}
.cid-tgAborgHNf .card-title {
  font-weight: 500;
}
.cid-tgAborgHNf .card-img {
  text-align: inherit;
}
.cid-tgAborgHNf .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tgAborgHNf .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgAborgHNf .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tgAborgHNf .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tgAborgHNf .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tgAborgHNf .mbr-section-title {
  color: #4479d9;
}
.cid-tgAbpHrc7W {
  background-image: url("../../../assets/images/04-juha-mats-sarjakuva-1-1500x1235.jpg");
}
.cid-tgAbqnDojK {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tgAbqnDojK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgAbqnDojK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgAbqnDojK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgAbqnDojK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgAbqnDojK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgAbqnDojK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgAbqnDojK .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tgAbqnDojK .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tgAbqnDojK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tgAbrM407T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-tgAbsuNFP4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tgAbsuNFP4 .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tgAbsuNFP4 .social-list a:focus {
  text-decoration: none;
}
.cid-tG8u2OKHRk {
  background-image: url("../../../assets/images/4-2000x1333.jpg");
}
.cid-tG8u2OKHRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG8u2OKHRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG8u2OKHRk .mbr-text,
.cid-tG8u2OKHRk .mbr-section-btn {
  color: #232323;
}
.cid-tG8yEEYaAR {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG8yEEYaAR .carousel {
    min-height: 800px;
  }
  .cid-tG8yEEYaAR .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tG8yEEYaAR .carousel {
    min-height: 520px;
  }
  .cid-tG8yEEYaAR .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tG8yEEYaAR .carousel {
    min-height: 440px;
  }
  .cid-tG8yEEYaAR .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tG8yEEYaAR .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG8yEEYaAR .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG8yEEYaAR .carousel,
.cid-tG8yEEYaAR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG8yEEYaAR .item-wrapper {
  width: 100%;
}
.cid-tG8yEEYaAR .carousel-caption {
  bottom: 40px;
}
.cid-tG8yEEYaAR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG8yEEYaAR .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG8yEEYaAR .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG8yEEYaAR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG8yEEYaAR .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tG8yEEYaAR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG8yEEYaAR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG8yEEYaAR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tG8yEEYaAR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tG8yEEYaAR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tG8yEEYaAR .carousel-indicators li.active,
.cid-tG8yEEYaAR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tG8yEEYaAR .carousel-indicators li::after,
.cid-tG8yEEYaAR .carousel-indicators li::before {
  content: none;
}
.cid-tG8yEEYaAR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tG8yEEYaAR .carousel-indicators {
    display: none !important;
  }
}
.cid-tG8yEHBoYJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG8yEHBoYJ .carousel {
    min-height: 800px;
  }
  .cid-tG8yEHBoYJ .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tG8yEHBoYJ .carousel {
    min-height: 520px;
  }
  .cid-tG8yEHBoYJ .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tG8yEHBoYJ .carousel {
    min-height: 440px;
  }
  .cid-tG8yEHBoYJ .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tG8yEHBoYJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG8yEHBoYJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG8yEHBoYJ .carousel,
.cid-tG8yEHBoYJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG8yEHBoYJ .item-wrapper {
  width: 100%;
}
.cid-tG8yEHBoYJ .carousel-caption {
  bottom: 40px;
}
.cid-tG8yEHBoYJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG8yEHBoYJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG8yEHBoYJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG8yEHBoYJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG8yEHBoYJ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tG8yEHBoYJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG8yEHBoYJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG8yEHBoYJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tG8yEHBoYJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tG8yEHBoYJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tG8yEHBoYJ .carousel-indicators li.active,
.cid-tG8yEHBoYJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tG8yEHBoYJ .carousel-indicators li::after,
.cid-tG8yEHBoYJ .carousel-indicators li::before {
  content: none;
}
.cid-tG8yEHBoYJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tG8yEHBoYJ .carousel-indicators {
    display: none !important;
  }
}
.cid-tG8B5QPpA9 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tG8B5QPpA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG8B5QPpA9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG8B5QPpA9 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tG8B5QPpA9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tG8B5QPpA9 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-tG8B5QPpA9 .card-title {
  color: #767676;
  text-align: center;
}
.cid-sFCAOqBTxa {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #4479d9;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-tTXJvVv56M {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tTXJvVv56M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTXJvVv56M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTXJvVv56M .mbr-section-subtitle {
  color: #767676;
}
.cid-tTXLtBpg6d {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTXLtBpg6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTXLtBpg6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tTXLtBpg6d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tTXLtBpg6d .row {
  flex-direction: row-reverse;
}
.cid-tTXLtBpg6d img {
  width: 100%;
}
.cid-tTXTwxcZFD {
  background-image: url("../../../assets/images/kansikuva-tekstillkansikuva-tekstill-1759x2500.jpg");
}
.cid-tTXM0dJQn5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tTXM0dJQn5 img,
.cid-tTXM0dJQn5 .item-img {
  width: 100%;
}
.cid-tTXM0dJQn5 .item:focus,
.cid-tTXM0dJQn5 span:focus {
  outline: none;
}
.cid-tTXM0dJQn5 .item-wrapper {
  position: relative;
}
.cid-tTXM0dJQn5 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTXM0dJQn5 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTXM0dJQn5 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tTXM0dJQn5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTXM0dJQn5 .mbr-section-title {
  color: #232323;
}
.cid-tTXM0dJQn5 .mbr-text,
.cid-tTXM0dJQn5 .mbr-section-btn {
  text-align: left;
}
.cid-tTXM0dJQn5 .item-title {
  text-align: left;
}
.cid-tTXM0dJQn5 .item-subtitle {
  text-align: left;
}
.cid-tTXM0dJQn5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tTXM0dJQn5 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tTXM0dJQn5 .embla__button--next,
.cid-tTXM0dJQn5 .embla__button--prev {
  display: flex;
}
.cid-tTXM0dJQn5 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tTXM0dJQn5 .embla__button {
    display: none;
  }
}
.cid-tTXM0dJQn5 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tTXM0dJQn5 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tTXM0dJQn5 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTXM0dJQn5 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTXM0dJQn5 .embla__button {
    top: auto;
  }
}
.cid-tTXM0dJQn5 .embla {
  position: relative;
  width: 100%;
}
.cid-tTXM0dJQn5 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tTXM0dJQn5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tTXM0dJQn5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tTXM0dJQn5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tTXM0uH41e {
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tTXM0uH41e img,
.cid-tTXM0uH41e .item-img {
  width: 100%;
}
.cid-tTXM0uH41e .item:focus,
.cid-tTXM0uH41e span:focus {
  outline: none;
}
.cid-tTXM0uH41e .item-wrapper {
  position: relative;
}
.cid-tTXM0uH41e .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTXM0uH41e .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTXM0uH41e .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tTXM0uH41e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTXM0uH41e .mbr-section-title {
  color: #232323;
}
.cid-tTXM0uH41e .mbr-text,
.cid-tTXM0uH41e .mbr-section-btn {
  text-align: left;
}
.cid-tTXM0uH41e .item-title {
  text-align: left;
}
.cid-tTXM0uH41e .item-subtitle {
  text-align: left;
}
.cid-tTXM0uH41e .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tTXM0uH41e .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tTXM0uH41e .embla__button--next,
.cid-tTXM0uH41e .embla__button--prev {
  display: flex;
}
.cid-tTXM0uH41e .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tTXM0uH41e .embla__button {
    display: none;
  }
}
.cid-tTXM0uH41e .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tTXM0uH41e .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tTXM0uH41e .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTXM0uH41e .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTXM0uH41e .embla__button {
    top: auto;
  }
}
.cid-tTXM0uH41e .embla {
  position: relative;
  width: 100%;
}
.cid-tTXM0uH41e .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tTXM0uH41e .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tTXM0uH41e .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tTXM0uH41e .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tTXOm1ptcE {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-3-1500x1115.jpg");
}
.cid-tTXOmrGNe4 {
  padding-top: 75px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-tTXOmrGNe4 .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-tTXOmrGNe4 .social-list a:focus {
  text-decoration: none;
}
.cid-umtYQjvw7z {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-umtYQjvw7z h2 {
  text-align: center;
}
.cid-umtYQjvw7z h3 {
  text-align: center;
  font-weight: 300;
}
.cid-umtYQjvw7z p {
  color: #767676;
}
.cid-umtYQjvw7z img {
  object-fit: cover;
}
.cid-umtYQjvw7z .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-umtYQjvw7z .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-umtYQjvw7z .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-umtYQjvw7z .mbr-section-subtitle {
  color: #767676;
}
.cid-umtYQjvw7z .card-title {
  font-weight: 500;
}
.cid-umtYQjvw7z .card-img {
  text-align: inherit;
}
.cid-umtYQjvw7z .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-umtYQjvw7z .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-umtYQjvw7z .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-umtYQjvw7z .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-umtYQjvw7z .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-umtYQjvw7z .mbr-section-title {
  color: #4479d9;
}
.cid-umtYQjZxkv {
  background-image: url("../../../assets/images/img-20240822-wa0003-1080x810.jpg");
}
.cid-umtYQkn2FO {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-umtYQkn2FO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-umtYQkn2FO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umtYQkn2FO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umtYQkn2FO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-umtYQkn2FO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-umtYQkn2FO .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-umtYQkn2FO .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-umtYQkn2FO .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-umtYQkn2FO .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-umtYQkUZMl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-umtYQlf5LJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-umtYQlf5LJ .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-umtYQlf5LJ .social-list a:focus {
  text-decoration: none;
}
.cid-utUN7XIKzR {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-utUN7XIKzR h2 {
  text-align: center;
}
.cid-utUN7XIKzR h3 {
  text-align: center;
  font-weight: 300;
}
.cid-utUN7XIKzR p {
  color: #767676;
}
.cid-utUN7XIKzR img {
  object-fit: cover;
}
.cid-utUN7XIKzR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-utUN7XIKzR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-utUN7XIKzR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-utUN7XIKzR .mbr-section-subtitle {
  color: #767676;
}
.cid-utUN7XIKzR .card-title {
  font-weight: 500;
}
.cid-utUN7XIKzR .card-img {
  text-align: inherit;
}
.cid-utUN7XIKzR .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-utUN7XIKzR .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-utUN7XIKzR .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-utUN7XIKzR .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-utUN7XIKzR .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-utUN7XIKzR .mbr-section-title {
  color: #4479d9;
}
.cid-utUN7Ye694 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-utUN7Ye694 .mbr-text {
  text-align: center;
}
.cid-utUN7Ye694 .mbr-section-subtitle {
  text-align: center;
}
.cid-utUN7YtKGd {
  background-image: url("../../../assets/images/susitaival-takakansi-vaalea-1077x1500.jpg");
}
.cid-utUN7YO8qv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-utUN7YO8qv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-utUN7YO8qv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utUN7YO8qv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utUN7YO8qv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-utUN7YO8qv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-utUN7YO8qv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-utUN7YO8qv .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-utUN7YO8qv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-utUN7YO8qv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-utUN7Zc13X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-utUN7ZDspK {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-utUN7ZDspK .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-utUN7ZDspK .social-list a:focus {
  text-decoration: none;
}
.cid-utV1gagUOo {
  padding-top: 60px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/128-1100x1500.jpg");
}
.cid-utV1gagUOo .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-utV1gagUOo .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-utV1gagUOo .separline {
  position: relative;
}
.cid-utV1gagUOo .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-utV1gagUOo .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-utV1gagUOo .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utV1gagUOo .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-utV1gagUOo .mbr-section-title {
  color: #4479d9;
}
.cid-utV1gb3lIq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-utV1gbkX1U {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-utV1gbkX1U .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-utV1gbkX1U .social-list a:focus {
  text-decoration: none;
}
.cid-utV5pPClSJ {
  padding-top: 60px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/128-1100x1500.jpg");
}
.cid-utV5pPClSJ .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-utV5pPClSJ .step {
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
.cid-utV5pPClSJ .separline {
  position: relative;
}
.cid-utV5pPClSJ .separline:after {
  top: 24px;
  left: 8px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (10px + 4px) * 2);
  background-color: #efefef;
}
.cid-utV5pPClSJ .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-utV5pPClSJ .media-block {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utV5pPClSJ .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-bottom: 2rem;
  }
}
.cid-utV5pPClSJ .mbr-section-title {
  color: #4479d9;
}
.cid-utV5pQmJvB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc03367-1-1500x1115.jpg");
}
.cid-utV5pQCUGn {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-utV5pQCUGn .mbr-iconfont-social {
  font-size: 32px;
  color: #149dcc;
}
.cid-utV5pQCUGn .social-list a:focus {
  text-decoration: none;
}
