@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #353640;
  --black: black;
  --primary: black;
  --white: white;
  --secondary: #f66b34;
  --color: #f8f8f8;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--dark);
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong {
  font-weight: bold;
}

.nav-dropdown-toggle {
  letter-spacing: .5px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition: opacity .3s;
}

.nav-dropdown-toggle:hover {
  opacity: .7;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.secondary-button {
  background-color: var(--white);
  color: var(--secondary);
  text-align: center;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  transition-property: all;
  display: flex;
}

.secondary-button:hover {
  background-color: var(--secondary);
  color: var(--color);
}

.secondary-button.utility.w--current {
  margin-top: 24px;
}

.nav-item-title {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: color .3s;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-icon {
  color: #fff;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 15px;
  font-size: 14px;
}

.nav-dropdown-link {
  width: 100%;
  padding: 8px 8px 8px 0;
  transition: all .15s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--secondary);
  font-weight: 400;
}

.brand-tablet {
  display: none;
}

.nav-link {
  color: #fff;
  letter-spacing: .5px;
  text-transform: capitalize;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition-property: opacity;
}

.nav-link:hover {
  opacity: .7;
}

.nav-link.w--current {
  color: #fff;
}

.nav-link.last {
  margin-right: 16px;
}

.nav-dropdown-link-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #687a774d;
  border-radius: 12px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  width: auto;
  margin-top: -5px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.navbar {
  z-index: 4;
  background-color: #0000;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  inset: 0% 0% auto;
}

.base-container {
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.base-container.justify {
  justify-content: center;
}

.description-left-banner-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.subtitle-label {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-transform: uppercase;
  background-color: #ffffff1a;
  border-radius: 50px;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  display: flex;
}

.subtitle-label.primary {
  background-color: var(--secondary);
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  transition-property: all;
  display: flex;
}

.primary-button:hover {
  border-color: var(--white);
  color: var(--primary);
  background-color: #fff;
}

.primary-button.white {
  background-color: var(--white);
  color: var(--primary);
}

.button-wrapper-home-2 {
  grid-column-gap: 30px;
  display: flex;
}

.hero-heading {
  color: #fff;
  max-width: 620px;
  font-weight: 700;
}

.white-text-weight-400 {
  color: #fff;
  align-items: center;
  display: flex;
}

.white-text-weight-400.home-2 {
  max-width: 470px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.section-hero {
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  height: 720px;
  padding-top: 90px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-block {
  width: 100%;
}

.dot {
  margin-top: -3px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 0;
}

.link-with-border {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.block-horizontal {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.service-paragraph {
  margin-top: 20px;
  margin-bottom: 24px;
}

.service-wrapper {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.service-wrapper.bgr {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.line-bottom {
  background-color: var(--primary);
  width: 100%;
  height: 1px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.light-background {
  background-color: #f8f8f8;
}

.section.legal-banner {
  background-color: var(--black);
  background-image: linear-gradient(#00000080, #00000080), url('../images/mercedes.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.section.green-bgr {
  background-color: var(--primary);
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.service-title {
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.paragraph-with-margin {
  margin-top: 20px;
  margin-bottom: 50px;
}

.primary-bg {
  z-index: 10;
  background-color: var(--primary);
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.primary-bg.z-index {
  z-index: 1;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-cover.radius {
  border-radius: 12px;
}

.image-cover.radius.cover-bottom {
  object-position: 50% 100%;
}

.image-cover.radius.cover-top {
  object-position: 50% 0%;
}

.image-cover.height-500 {
  border-radius: 10px;
  height: 500px;
}

.full-block-width {
  grid-column-gap: 50px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-full-block {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.description-full-block {
  flex-direction: column;
  align-items: flex-start;
  max-width: 470px;
  display: flex;
}

.block-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.image-left-wrapper {
  flex: none;
  width: 470px;
  height: 370px;
  margin-bottom: 95px;
  margin-right: 30px;
  position: relative;
}

.image-left-wrapper.home-2 {
  margin-left: 30px;
  margin-right: 0;
}

.image-left-wrapper.margin {
  margin-bottom: 0;
  margin-right: 0;
}

.image-left-wrapper.margin.larger {
  height: 450px;
}

.green-block-absolute {
  grid-row-gap: 10px;
  background-color: #f8f8f8;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-right: -30px;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: auto 0% -95px auto;
}

.green-block-absolute.position {
  margin-left: -30px;
  margin-right: 0;
  inset: auto auto -95px 0%;
}

.paragraph-maxw {
  max-width: 470px;
}

.heading-project-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.none-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.description-right-wrapper {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.description-right-wrapper.no-margins {
  grid-row-gap: 0px;
}

.services-wrapper {
  width: 100%;
  margin-top: 80px;
}

.block-content-wrapper {
  grid-column-gap: 50px;
  width: 100%;
  display: flex;
}

.block-content-wrapper.two-columns {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.block-content-wrapper._02 {
  justify-content: space-between;
  margin-top: 50px;
}

.link {
  color: #353640;
  cursor: pointer;
  transition-property: opacity;
}

.link:hover {
  color: var(--primary);
}

.left-block {
  text-align: left;
}

.footer-links-wrapper {
  grid-column-gap: 60px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--black);
  transition: all .3s;
}

.footer-link:hover {
  opacity: .7;
}

.right-block {
  grid-column-gap: 60px;
  display: flex;
}

.footer-brand-description {
  text-align: left;
  max-width: 500px;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.05em;
}

.footer-copyright {
  width: 100%;
  display: inline;
}

.footer-logo-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 50px;
}

.footer-wrapper {
  border-bottom: 1px solid #dbdbdb;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 50px;
  display: flex;
}

.footer-brand-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta-block {
  background-color: var(--primary);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 70px 40px 80px;
  display: flex;
}

.white-text {
  color: #fff;
}

.white-text.services {
  max-width: 550px;
}

.white-text.maxw-main {
  max-width: 650px;
}

.white-text.tablet-left-margin {
  margin-left: 15px;
}

.white-text.cta-text {
  text-align: center;
}

.paragraph-white-block {
  color: #fff;
  text-align: center;
  max-width: 616px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.brand-image {
  object-fit: contain;
  height: 52px;
}

.space {
  height: 24px;
}

.space._160 {
  height: 160px;
}

.space._60 {
  height: 60px;
}

.bgr-projects {
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.bgr-projects.moottorikorjaukset {
  background-image: linear-gradient(#00000080, #00000080), url('../images/engine-repair.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.yleiset-autonkorjaukset {
  background-image: linear-gradient(#00000080, #00000080), url('../images/musta-auto.jpg');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.kority-t-ja-maalaus {
  background-image: linear-gradient(#00000080, #00000080), url('../images/keraaminen-pinnoite.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.vahaukset {
  background-image: linear-gradient(#00000080, #00000080), url('../images/vahaus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.keraamiset-pinnoitteet {
  background-image: linear-gradient(#00000080, #00000080), url('../images/keraaminen-pinnoite.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.tummennukset {
  background-image: linear-gradient(#00000080, #00000080), url('../images/tummennus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.rengaspalvelut {
  background-image: linear-gradient(#00000080, #00000080), url('../images/auto-musta-tausta.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.muut-palvelut {
  background-image: linear-gradient(#0000008c, #0000008c), url('../images/bmw.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-with-height {
  background-image: linear-gradient(#1178654d, #1178654d), linear-gradient(#000000b3, #000000b3);
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.section-with-height.services-details {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(#1178654d, #1178654d), linear-gradient(#000000b3, #000000b3);
  background-position: 50%, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: cover, auto, auto;
  background-attachment: fixed, scroll, scroll;
  position: relative;
}

.section-with-height.default {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/mercedes.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.service-details-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.rich-text-style h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 24px;
}

.rich-text-style h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 42px;
}

.rich-text-style ul {
  margin-bottom: 24px;
}

.rich-text-style li {
  margin-bottom: 8px;
}

.rich-text-style sub {
  font-size: 15px;
  font-style: italic;
}

.service-details-content {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.accordion-item {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: static;
}

.accordion-item.mb {
  margin-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.legal-rich-text-block {
  max-width: 675px;
  margin-bottom: 80px;
}

.legal-rich-text-block h2 {
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 20px;
}

.bg-primary {
  z-index: 10;
  background-color: var(--primary);
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.form-block {
  border-radius: 10px;
}

.input-wrapper {
  grid-column-gap: 20px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.contacts-wrapper {
  grid-column-gap: 50px;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.success-message {
  color: #005450;
  background-color: #0000;
  border-radius: 10px;
  font-weight: 500;
}

.gray-radius-bgr {
  background-color: var(--color);
  border-radius: 30px;
  margin-left: 5px;
  margin-right: 5px;
  padding-bottom: 20px;
  position: relative;
  inset: 0%;
}

.container-gray-block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px 40px;
}

.heading-wrapper-with-border {
  grid-column-gap: 100px;
  border-bottom: 1px solid #3536404d;
  justify-content: space-between;
  padding-bottom: 50px;
  display: flex;
}

.contacts-input {
  background-color: #fff;
  border: 1px solid #0000;
  border-radius: 12px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 16px;
  transition: all .2s;
}

.contacts-input:focus {
  color: #fff;
  border: 1px solid #005450;
  font-size: 18px;
}

.contacts-input::placeholder {
  color: #aaa;
  font-size: 16px;
}

.contacts-form-wrapper {
  background-color: #f8f8f8;
  border-radius: 10px;
  flex: none;
  width: 50%;
  padding: 30px;
}

.contacts-textarea {
  background-color: #fff;
  border: 1px solid #0000;
  border-radius: 12px;
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 16px;
}

.contacts-textarea:focus {
  color: #005450;
  border: 1px solid #005450;
  font-size: 16px;
}

.contacts-textarea::placeholder {
  color: #aaa;
  font-size: 16px;
}

.form-contact-us {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.contacts-title {
  max-width: 470px;
}

.error-message {
  color: #ffc776;
  text-align: center;
  background-color: #0000;
  flex: none;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}

.subtitle-block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 470px;
  display: flex;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

.paragraph-large.contact-margins {
  margin-bottom: 10px;
}

.paragraph-large.contact-margins.more-margin {
  margin-bottom: 20px;
}

.contacts-form-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 38px;
}

.contact-heading {
  margin-bottom: 24px;
  font-size: 42px;
}

.google-maps-wrapper {
  margin-top: 50px;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-bold {
  font-weight: 600;
}

.h4-styling {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 46px;
}

.service-wrapper-default {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.sidebar {
  flex: none;
}

.other-services {
  margin-bottom: 64px;
}

.service-line {
  background-color: var(--secondary);
  height: 2px;
  margin-bottom: 24px;
}

.div-block-2 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.category-link {
  color: #1c1a17;
  margin-bottom: 3px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  transition: all .14s;
}

.category-link:hover {
  transform: translate(5px);
}

.category-link.w--current {
  color: var(--secondary);
  font-weight: 600;
}

.main-service {
  flex: 0 auto;
}

.service-rich-text h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 34px;
}

.sidebar-heading {
  margin-bottom: 14px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.bullet-span {
  margin-right: 10px;
  font-size: 10px;
  line-height: 1em;
  display: inline-block;
}

.pricing-plans-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.white-paragraph-with-margin {
  color: #fff;
  max-width: 350px;
  margin-bottom: 30px;
}

.green-button {
  color: #fff;
  text-align: center;
  background-color: #068466;
  border: 1px solid #068466;
  border-radius: 8px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  display: flex;
}

.green-button:hover {
  color: #005450;
  background-color: #fff;
}

.pricing-plan-price {
  font-size: 56px;
}

.top-description-item {
  margin-bottom: 30px;
}

.pricing-plan-currency-icon {
  margin-right: 2px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.features-wrapper-2 {
  justify-content: center;
  display: flex;
}

.pricing-plan-item-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.primary-button-2 {
  color: #fff;
  text-align: center;
  background-color: #005450;
  border: 1px solid #005450;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  transition-property: all;
  display: flex;
}

.primary-button-2:hover {
  color: #005450;
  background-color: #fff;
  border-color: #005450;
}

.google-maps-wrapper-block {
  grid-row-gap: 40px;
  flex-direction: column;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team-description-2 {
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  inset: auto 0% 0%;
}

.pricing-plan-price-wrapper {
  align-items: flex-start;
  margin-top: 30px;
  display: flex;
}

.cart-content-right {
  margin-top: 50px;
  padding-left: 15px;
  padding-right: 15px;
}

.grid-2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.pricing-plan-item {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 40px 30px 30px;
  display: flex;
}

.team-block {
  height: 440px;
  position: relative;
}

.small-text-2 {
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
}

.section-title-green {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.paragraph-pricing {
  color: #121212;
  font-size: 18px;
  line-height: 1.5em;
}

.location-heading-wrapper {
  width: 100%;
}

.background-image {
  z-index: -999;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.language-flag {
  object-fit: cover;
  border-radius: 2px;
  width: 24px;
  height: 14px;
  margin-top: -2px;
  margin-right: 16px;
}

.language-flag.flag-no-margin {
  margin-top: 0;
  margin-right: 0;
}

.image {
  object-fit: contain;
}

.footer-image {
  width: 220px;
  margin-bottom: 60px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-toggle.padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.accordion-wrap {
  width: 50%;
  margin-right: 15px;
}

.accordion-wrap.mr {
  margin-right: 30px;
}

.accordion-list {
  background-color: #0000;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-title {
  color: var(--dark);
  align-items: center;
  font-weight: 600;
  display: flex;
}

.accordion-icon {
  color: #005450;
  width: 15px;
  height: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 17px;
  line-height: 24px;
}

.accordion-list-content {
  width: 90%;
  margin-top: 0;
}

.image-2 {
  width: 15px;
  height: 15px;
}

.link-2 {
  text-decoration: underline;
}

.link-color-secondary {
  color: var(--secondary);
}

.partners-block {
  grid-column-gap: 30px;
  width: 100%;
  margin-top: 100px;
  display: flex;
  overflow: hidden;
}

.partners-content {
  grid-column-gap: 42px;
  flex: none;
  justify-content: space-between;
  width: 100%;
  margin-left: 42px;
  margin-right: 42px;
  display: flex;
}

.partners-image-wrapper.invert {
  filter: invert();
}

.partners-image {
  height: 34px;
}

.partners-image.fennia {
  height: 32px;
}

.partners-image.axa {
  height: 40px;
}

@media screen and (min-width: 1280px) {
  .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .nav-link.last {
    padding-left: 20px;
    padding-right: 20px;
  }

  .base-container.display {
    grid-column-gap: 30px;
    flex-direction: row;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.legal-banner {
    padding-top: 220px;
  }

  .section.green-bgr {
    overflow: hidden;
  }

  .image-left-wrapper.home-2 {
    margin-left: 130px;
  }

  .image-left-wrapper.margin {
    width: 520px;
  }

  .green-block-absolute.position {
    margin-left: -130px;
  }

  .paragraph-maxw {
    max-width: none;
  }

  .services-wrapper {
    margin-top: 100px;
  }

  .block-content-wrapper {
    grid-column-gap: 80px;
  }

  .block-content-wrapper._02 {
    justify-content: flex-start;
    margin-top: 100px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .white-text.services {
    max-width: 850px;
  }

  .white-text.maxw-main {
    max-width: 750px;
  }

  .section-with-height {
    min-height: 570px;
    padding-top: 220px;
    padding-bottom: 130px;
  }

  .contacts-wrapper {
    grid-column-gap: 100px;
    margin-bottom: 110px;
  }

  .gray-radius-bgr {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 20px;
  }

  .container-gray-block {
    padding-top: 110px;
  }

  .pricing-plans-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .google-maps-wrapper-block {
    margin-top: 130px;
  }

  .cart-content-right {
    flex-direction: row;
    width: 100%;
    margin-top: 0;
    padding-left: 0;
    display: flex;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-title-green {
    text-align: left;
    flex: none;
    align-items: flex-start;
    width: 100%;
    max-width: 320px;
    margin-right: auto;
  }

  .partners-block {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1440px) {
  .base-container.display {
    grid-column-gap: 70px;
  }

  .pricing-plans-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .cart-content-right {
    right: 0%;
  }
}

@media screen and (min-width: 1920px) {
  .nav-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .section-hero {
    min-height: 100vh;
  }

  .features-wrapper-2 {
    grid-column-gap: 30px;
  }

  .pricing-plan-item {
    width: 360px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    max-width: 60%;
  }

  .nav-menu {
    background-color: var(--black);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .secondary-button.nav-margins {
    margin-top: 28px;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-dropdown-icon {
    color: #fff;
    margin-right: 0;
    display: block;
    inset: 0% 0 0% auto;
    overflow: auto;
  }

  .nav-dropdown-link {
    color: #fff;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-link:hover, .nav-dropdown-link.w--current {
    color: #fff;
  }

  .image-burger {
    filter: invert();
    margin-bottom: 4px;
  }

  .brand-tablet {
    display: block;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.last {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .close-menu-button {
    background-color: #0000;
    padding: 0 10px 0 0;
  }

  .close-menu-button.w--open {
    filter: invert();
    background-color: #0000;
    padding: 0 10px 0 0;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
    display: block;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .nav-dropdown-list {
    background-color: #0000;
    border-style: none;
    flex-direction: column;
    width: 320px;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .menu-wrap {
    background-color: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .description-left-banner-block {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .primary-button {
    display: block;
  }

  .section-hero {
    height: auto;
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .block-horizontal {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .service-wrapper {
    width: 47.9%;
  }

  .section.legal-banner {
    padding-top: 150px;
  }

  .full-block-width {
    flex-direction: column;
  }

  .image-full-block {
    width: 100%;
    height: 450px;
  }

  .description-full-block {
    text-align: center;
    align-items: center;
    margin-bottom: 50px;
  }

  .block-wrap {
    justify-content: center;
  }

  .image-left-wrapper.margin {
    flex: 0 auto;
    width: 100%;
  }

  .paragraph-maxw {
    max-width: none;
  }

  .description-right-wrapper {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }

  .description-right-wrapper.no-margins {
    margin-top: 0;
  }

  .block-content-wrapper {
    flex-direction: column;
  }

  .block-content-wrapper._02 {
    align-items: center;
  }

  .footer-links-wrapper {
    justify-content: center;
    width: 100%;
  }

  .right-block {
    grid-column-gap: 30px;
  }

  .footer-brand-description {
    text-align: center;
  }

  .footer-logo-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-bottom-wrapper {
    align-items: flex-start;
  }

  .cta-block {
    text-align: center;
  }

  .section-with-height {
    padding-top: 155px;
  }

  .banner-title-wrapper {
    text-align: center;
    align-items: center;
  }

  .service-details-content-wrapper {
    width: 100%;
  }

  .service-details-content {
    flex-direction: column;
  }

  .contacts-wrapper {
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-wrapper-with-border {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .contacts-form-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-content-wrapper {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .subtitle-block {
    align-items: center;
    margin-top: 20px;
  }

  .contacts-form-title {
    font-size: 28px;
  }

  .h4-styling {
    font-size: 36px;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .sidebar {
    width: auto;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .team-image-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .white-paragraph-with-margin {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .features-wrapper-2 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .primary-button-2 {
    display: block;
  }

  .pricing-plan-item {
    max-width: 360px;
  }

  .section-title-green {
    text-align: center;
  }

  .partners-content.tablet-hidden {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .secondary-button.nav-margins {
    margin-top: 28px;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .nav-link {
    margin-left: 0;
  }

  .subtitle-label {
    line-height: 1.2em;
  }

  .section-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .service-wrapper {
    width: 100%;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.legal-banner {
    padding-top: 120px;
  }

  .paragraph-with-margin {
    margin-bottom: 30px;
  }

  .image-cover.height-500 {
    height: 350px;
  }

  .image-full-block {
    width: 100%;
    height: 400px;
  }

  .description-full-block {
    max-width: 100%;
  }

  .image-left-wrapper.margin.larger {
    height: 350px;
  }

  .services-wrapper {
    margin-top: 60px;
  }

  .block-content-wrapper.two-columns {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .block-content-wrapper._02 {
    margin-top: 30px;
  }

  .footer-links-wrapper {
    grid-column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-brand-description {
    margin-bottom: 30px;
    font-size: 52px;
  }

  .footer-bottom-wrapper {
    grid-row-gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .cta-block {
    padding: 50px 30px;
  }

  .section-with-height {
    padding-top: 125px;
    padding-bottom: 60px;
  }

  .service-details-content-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .service-details-content {
    width: 100%;
  }

  .contacts-wrapper {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .container-gray-block {
    padding-top: 40px;
  }

  .contacts-form-wrapper, .contacts-content-wrapper {
    width: 100%;
  }

  .contacts-title {
    max-width: 100%;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .other-services {
    margin-bottom: 32px;
  }

  .main-service {
    margin-bottom: 0;
  }

  .service-rich-text {
    margin-right: 0;
  }

  .service-rich-text h2 {
    font-size: 28px;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .white-paragraph-with-margin {
    margin-bottom: 30px;
  }

  .google-maps-wrapper-block {
    margin-top: 60px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .pricing-plan-item {
    max-width: none;
  }

  .team-block {
    height: 350px;
  }

  .section-title-green {
    text-align: center;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .accordion-wrap.mr {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .partners-block {
    margin-top: 60px;
  }

  .partners-content {
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 479px) {
  .secondary-button.nav-margins {
    margin-top: 28px;
  }

  .nav-dropdown-link {
    font-size: 15px;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .nav-link {
    width: 99%;
  }

  .navbar {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .button-wrapper-home-2 {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 1.15em;
  }

  .section-hero {
    padding-top: 140px;
  }

  .block-horizontal {
    margin-top: 30px;
  }

  .service-wrapper {
    text-align: center;
    align-items: center;
  }

  .image-full-block {
    height: 350px;
  }

  .image-left-wrapper {
    width: 100%;
    margin-bottom: 160px;
    margin-right: 0;
  }

  .image-left-wrapper.home-2 {
    margin-left: 0;
  }

  .image-left-wrapper.margin {
    width: 100%;
  }

  .green-block-absolute {
    margin-right: -10px;
  }

  .green-block-absolute.position {
    margin-left: 30px;
  }

  .heading-project-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .block-content-wrapper.two-columns {
    grid-template-columns: 1fr;
  }

  .block-content-wrapper.row-gap-32 {
    grid-row-gap: 32px;
  }

  .left-block {
    text-align: center;
  }

  .footer-links-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 10px;
    justify-content: center;
  }

  .footer-brand-description {
    font-size: 42px;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer {
    text-align: left;
  }

  .footer-wrapper {
    grid-row-gap: 42px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .white-text.services {
    font-size: 38px;
  }

  .white-text.maxw-main {
    font-size: 42px;
  }

  .white-text.cta-text {
    font-size: 36px;
  }

  .banner-title-wrapper {
    text-align: center;
    align-items: center;
  }

  .rich-text-style h2 {
    font-size: 32px;
  }

  .input-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .heading-wrapper-with-border {
    padding-bottom: 20px;
  }

  .contact-heading {
    font-size: 32px;
  }

  .sidebar {
    width: 100%;
  }

  .white-paragraph-with-margin {
    margin-bottom: 30px;
  }

  .cart-content-right {
    margin-top: 50px;
  }

  .pricing-plan-item {
    padding: 30px 30px 20px;
  }

  .footer-image {
    margin-bottom: 60px;
  }

  .partners-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .partners-image.axa {
    height: 46px;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f1161545-7148-626a-5637-8747559aa966-28752f66, #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-28752f92, #w-node-_68c5d8cf-f0cb-128d-330d-ec6f836ba115-28752f94, #w-node-_116a65ed-2051-7a56-6916-dae81f3c5699-28752f97, #w-node-f1161545-7148-626a-5637-8747559aa966-ef931ed4, #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-2d383ce9, #w-node-_116a65ed-2051-7a56-6916-dae81f3c5699-b5ceabda, #w-node-_68c5d8cf-f0cb-128d-330d-ec6f836ba115-891533e2 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f1161545-7148-626a-5637-8747559aa966-28752f66 {
    grid-row: 2 / 3;
  }

  #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-28752f92 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-f1161545-7148-626a-5637-8747559aa966-ef931ed4 {
    grid-row: 2 / 3;
  }

  #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-2d383ce9 {
    grid-area: 1 / 1 / 3 / 2;
  }
}


@font-face {
  font-family: 'Cabinetgrotesk';
  src: url('../fonts/CabinetGrotesk-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinetgrotesk';
  src: url('../fonts/CabinetGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinetgrotesk';
  src: url('../fonts/CabinetGrotesk-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cabinetgrotesk';
  src: url('../fonts/CabinetGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}