@charset "UTF-8";
.bg-dark-blue {
  background-color: #0c2739;
}

.bg-mid-blue {
  background-color: #b0dce8;
}

.text-dark-blue {
  color: #0c2739;
}

.text-mid-blue {
  color: #b0dce8;
}

.text-white {
  color: white;
}

/* Will be placed after min-width */
/*--------------------------------------------------------------
** Phone
--------------------------------------------------------------*/
/* 384px (24 * 16) */
/* 476px (29.75 * 16) */
/* 637px (39.8 * 16) */
/*--------------------------------------------------------------
** Tablet
--------------------------------------------------------------*/
/* 749px (46.8 * 16) */
/* 768px (48 * 16) */
/* 800px (50 * 16) */
/*--------------------------------------------------------------
** Desktop
--------------------------------------------------------------*/
/* 960px (60 * 16) */
/* 1032px (64.5 * 16) */
/* 1120px (70 * 16) */
/*--------------------------------------------------------------
** Large desktop
--------------------------------------------------------------*/
/* 1200px (75 * 16) */
/* 1280px (80 * 16) */
/* 1440px (90 * 16) */
.site-header {
  width: 100%;
  position: relative;
}
.site-header .top-design-container {
  position: absolute;
  width: 100%;
  height: 43px;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: start;
  justify-content: start;
  overflow: hidden;
}
.site-header .top-design-container img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.site-header .scroll {
  top: 0 !important;
}
.site-header .hamburger-button {
  background-color: #0c2739;
  top: 73px;
  right: 0;
  padding: 22px;
  position: fixed;
  z-index: 999;
  cursor: pointer;
  display: inline-block;
  gap: 10px;
  transition: 0.8s;
}
.site-header .hamburger-button div {
  margin: 4px 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  float: right;
  clear: both;
  transition: 0.3s ease;
}
.site-header .hamburger-button .bar:nth-child(1) {
  top: 33%;
}
.site-header .hamburger-button .bar:nth-child(2) {
  width: 40px;
}
.site-header .hamburger-button .bar:nth-child(3) {
  top: 66%;
}
.site-header .hamburger-button.opened div:nth-child(1) {
  width: 40px;
  transform: rotate(-45deg) translate(-8px, 8px);
}
.site-header .hamburger-button.opened div:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-button.opened div:nth-child(3) {
  width: 40px;
  transform: rotate(45deg) translate(-6px, -6px);
}
.site-header .overlay {
  overflow: scroll;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 900;
  transform: translateX(100%);
  pointer-events: none;
  display: flex;
}
.site-header .overlay .wrapper {
  max-width: 100%;
  height: 100%;
  flex: 1;
}
.site-header .overlay .wrapper .social-icons {
  transform: translateY(30px);
  opacity: 0;
}
.site-header .overlay .wrapper .social-icons i {
  margin-right: 0.8rem;
}
.site-header .overlay .wrapper .social-icons i:hover {
  transform: scale(1.1);
  transition: transform 0.1s ease-in-out;
}
.site-header .overlay .wrapper ul {
  padding: 0;
}
.site-header .overlay .wrapper ul li {
  list-style: none;
  transform: translateY(30px);
  opacity: 0;
}
.site-header .overlay .wrapper ul li a {
  text-decoration: none;
  display: inline-block;
}
.site-header .overlay .wrapper ul li a:hover {
  transform: scale(1.1);
  transition: transform 0.1s ease-in-out;
}
.site-header .overlay .wrapper:nth-child(1) {
  padding-left: 87px;
  background-color: #b0dce8;
}
.site-header .overlay .wrapper:nth-child(1) .overlay-logo {
  width: 266px;
  height: 70px;
  margin-top: 106px;
  margin-bottom: 147px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.site-header .overlay .wrapper:nth-child(1) .wrapper-short {
  color: #0c2739;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(30px);
  opacity: 0;
}
.site-header .overlay .wrapper:nth-child(1) a {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 2vh);
  color: #0c2739;
}
.site-header .overlay .wrapper:nth-child(2) {
  padding-top: 323px;
  padding-left: 87px;
  background-color: #0c2739;
}
.site-header .overlay .wrapper:nth-child(2) .wrapper-short {
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(30px);
  opacity: 0;
}
.site-header .overlay .wrapper:nth-child(2) a {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  color: white;
}
.site-header .overlay .wrapper.img-spacer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.site-header .logo-holder {
  top: 64px;
  padding: 16px;
  padding-left: 64px;
  position: absolute;
  z-index: 100;
  width: auto;
  left: 16px;
  opacity: 1;
  visibility: visible;
}
.site-header .logo-holder img {
  width: 266px;
  height: auto;
  max-width: 100%;
}

/*--------------------------------------------------------------
** Mediaqueries
--------------------------------------------------------------*/
@media all and (max-width: 80em) {
  .img-spacer {
    display: none;
  }
}
@media all and (max-width: 60em) {
  .logo-holder img {
    width: 200px !important;
  }
  .overlay {
    flex-direction: column;
    background-color: #0c2739;
    max-width: 100vw !important;
  }
  .overlay .wrapper {
    height: auto !important;
    max-width: 100% !important;
    contain: paint !important;
    padding: 1px 32px 32px !important;
  }
  .overlay .wrapper a {
    margin-bottom: 1rem !important;
  }
  .overlay .wrapper:nth-child(1) {
    display: flex;
    flex-direction: column;
  }
  .overlay .wrapper:nth-child(1) .overlay-logo {
    align-self: center;
    margin-bottom: 3rem !important;
  }
  .overlay .wrapper:nth-child(2) {
    padding-top: 4rem !important;
  }
}
@media all and (max-width: 46.8em) {
  .hamburger-button {
    padding: 10px !important;
    top: 16px !important;
  }
  .logo-holder {
    padding-left: 32px !important;
  }
  .logo-holder img {
    width: 150px !important;
  }
  .hero-container {
    padding: 16px;
  }
  .hero-container .overlay-logo {
    width: 130px !important;
    background-size: contain !important;
  }
  .header-logo {
    width: 120px !important;
    height: 30px !important;
  }
}
footer {
  width: 100%;
  height: auto;
  background-color: #b0dce8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-top-design-container {
  margin-top: -1.5rem;
  width: 80%;
  height: 4rem;
  object-fit: contain;
  background-size: cover;
  background-position: center;
  z-index: 10;
}
footer .site-info {
  width: 100%;
  position: relative;
  color: #0c2739;
}
footer .site-info .wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4em 2em 2em;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
footer .site-info .wrapper .contact-item {
  padding: 1em 0;
}
footer .site-info .wrapper .contact-item img {
  height: auto;
  width: 200px;
}
footer .site-info .wrapper .contact-item h3 {
  margin-bottom: 0;
}
footer .site-info .wrapper .contact-item a {
  color: #0c2739;
  text-decoration: none;
}
footer .site-info .wrapper .contact-item a:hover {
  text-decoration: underline;
}
footer .site-info .wrapper .contact-item p {
  margin: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}
footer .site-info .wrapper .contact-item p a {
  color: #0c2739;
  text-decoration: none;
}
footer .site-info .wrapper .contact-item p a:hover {
  text-decoration: underline;
}
footer .by-klevland {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c2739;
  font-size: 0.8rem;
  color: white;
  display: flex;
  cursor: pointer;
}
footer .by-klevland i {
  margin-left: 1rem;
  display: none;
}
footer .by-klevland.closed .fa-circle-plus {
  display: inline;
}
footer .by-klevland.opened .fa-circle-minus {
  display: inline;
}
footer .made-by {
  background-color: #222;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  text-align: left;
  display: flex;
  justify-content: center;
}
footer .made-by iframe {
  max-width: 700px;
}
footer .by-klevland.opened + .made-by {
  max-height: 300px;
}

@media all and (min-width: 48em) {
  footer .site-info .wrapper {
    flex-direction: row;
  }
  footer .site-info .wrapper .contact-item {
    padding: 2em 0 4em;
    text-align: left;
  }
  footer .site-info .wrapper .contact-item h3 {
    margin-top: 0;
  }
}
.more-section {
  position: relative;
}
.more-section .wrapper-order {
  display: flex;
  flex-direction: column;
}
.more-section .wrapper-order .menu-mini-meny-container {
  order: 1;
  padding: 32px 16px;
  align-items: center;
  display: flex;
  background-color: #0c2739;
}
.more-section .wrapper-order .menu-mini-meny-container .menu {
  padding: 0;
}
.more-section .wrapper-order .menu-mini-meny-container .menu svg {
  width: clamp(1.6rem, 4vw, 38px);
  height: clamp(1.6rem, 4vw, 38px);
  margin-left: 30px;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
}
.more-section .wrapper-order .menu-mini-meny-container .menu li {
  list-style: none;
  margin: 1.5rem 0;
  display: block;
}
.more-section .wrapper-order .menu-mini-meny-container .menu li:hover svg {
  margin-left: 40px;
}
.more-section .wrapper-order .menu-mini-meny-container .menu li a {
  color: #b0dce8;
  text-decoration: none;
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 600;
}
.more-section .wrapper-order .social-box {
  order: -1;
  max-height: 105px;
  position: relative;
  display: flex;
  align-items: center;
}
.more-section .wrapper-order .social-box h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-right: 1.5rem;
  z-index: 5;
}
.more-section .wrapper-order .social-box a {
  z-index: 5;
}
.more-section .wrapper-order .social-box a:hover {
  transform: scale(1.1);
}
.more-section .wrapper-order .social-box a i {
  color: #0c2739;
}
.more-section .wrapper-order .social-box .social-box-img {
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
}
.more-section .center-content {
  min-height: 100vmin;
}

@media (min-width: 46.8em) {
  .more-section .container {
    display: flex;
  }
  .more-section .container .wrapper {
    flex: 1;
  }
  .more-section .container .wrapper .center-content {
    min-height: 250px;
    height: 100%;
  }
}
@media (min-width: 60em) {
  .more-section {
    margin-top: 10rem;
  }
  .more-section .wrapper .menu-mini-meny-container {
    padding: 100px 64px;
  }
  .more-section .wrapper .social-box {
    padding: 16px 64px;
  }
}
@media (min-width: 75em) {
  .more-section {
    margin-bottom: 7.5rem;
  }
  .more-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .more-section .container .wrapper:nth-last-child(2n) {
    margin-right: 8px;
  }
  .more-section .container .wrapper .social-box {
    margin-bottom: 16px;
  }
  .more-section .container .wrapper:last-child {
    margin-left: 8px;
  }
}
.reference-gallery-page {
  margin: 2rem 0;
}
.reference-gallery-page .container {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
.reference-gallery-page .container .reference-item {
  width: 100%;
  height: 250px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin: 8px 0;
}
.reference-gallery-page .container .reference-item .reference-fade {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 10rem;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(255, 255, 255, 0) 100%);
}
.reference-gallery-page .container .reference-item .reference-item-content {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  z-index: 3;
}
.reference-gallery-page .container .reference-item .reference-item-content .left-content .hero-short {
  color: #b0dce8;
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 800;
}
.reference-gallery-page .container .reference-item .reference-item-content .left-content h3 {
  margin-top: 0;
  font-weight: 600;
}
.reference-gallery-page .container .reference-item .reference-item-content .right-content {
  display: flex;
  align-items: center;
}
.reference-gallery-page .container .reference-item .reference-item-content .right-content img {
  height: 30px;
}
.reference-gallery-page .button-wrapper {
  margin-top: 1rem;
  justify-self: center;
}

@media (min-width: 46.8em) {
  .reference-gallery-page .container {
    flex-direction: row !important;
  }
  .reference-gallery-page .container::after, .reference-gallery-page .container::before {
    content: "";
    flex: 1 0 48%;
    visibility: hidden;
    height: 0;
    order: 9999;
  }
  .reference-gallery-page .container .reference-item {
    margin: 0;
    flex: 1 0 48%;
    height: 400px;
  }
  .reference-gallery-page .container .reference-item .reference-item-content {
    padding: 1rem 2rem;
  }
}
@media (min-width: 75em) {
  .reference-gallery-page .container::after, .reference-gallery-page .container::before {
    content: "";
    flex: 1 0 32%;
    visibility: hidden;
    height: 0;
    order: 9999;
  }
  .reference-gallery-page .container .reference-item {
    flex: 1 0 32% !important;
  }
}
@media (min-width: 80em) {
  .reference-gallery-page {
    margin-top: 2rem !important;
  }
}
.contact-form {
  background-color: #0c2739;
  max-width: 1368px;
  margin: 0 auto;
  margin-top: 2em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form .form-container {
  max-width: 846px;
  margin-left: 25px;
  margin-right: 25px;
}
.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 80px;
}
.contact-form p {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 300;
}
.contact-form .info {
  margin-bottom: 3rem;
}
.contact-form .form-row {
  height: auto;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.contact-form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form .form-row .form-group p {
  margin: 0;
}
.contact-form .form-row .form-group p label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 100px;
}
.contact-form .form-row .form-group p input {
  height: 48px;
}
.contact-form .form-row .form-group p input,
.contact-form .form-row .form-group p textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: none;
  background: white;
}
.contact-form .form-row .form-group p textarea {
  resize: none;
  height: 96px;
}
.contact-form .form-row.full-width {
  width: 100%;
}
.contact-form .checkbox-group {
  display: flex;
  align-items: start;
  margin-left: 0;
}
.contact-form .checkbox-group .wpcf7-list-item {
  margin-left: 0;
}
.contact-form .checkbox-group .first {
  display: flex;
  align-items: center;
}
.contact-form .checkbox-group span {
  height: auto;
}
.contact-form .checkbox-group input[type=checkbox] {
  margin-right: 1rem;
  max-width: 18px;
  min-width: 18px;
  max-height: 18px;
  min-height: 18px;
  background-color: white;
}
.contact-form .form-row:last-child {
  justify-content: flex-end;
}
.contact-form .hidden-submit {
  display: none; /* Döljer den inbyggda submit-knappen */
}

@media (max-width: 60em) {
  .contact-form {
    height: auto;
    padding: 3em 0;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
}
.intro_section {
  position: relative;
  border-top: 32px solid #b0dce8;
}
.intro_section .hero-main-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.intro_section .hero-main-container .hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-left: 16px solid #b0dce8;
  border-right: 16px solid #b0dce8;
  border-bottom: 16px solid #b0dce8;
  min-height: 80vh;
  padding-top: 64px;
  padding-bottom: 64px;
  background-position: 30%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}
.intro_section .hero-main-container .hero-container.hero--other {
  text-align: center;
  justify-content: center;
  min-height: 200px;
}
.intro_section .hero-main-container .hero-container .hero-img-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(7, 23, 35, 0.4784313725);
}
.intro_section .hero-main-container .hero-container .hero-video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.intro_section .hero-main-container .hero-container .hero-img-container {
  object-fit: cover;
  position: absolute;
  height: auto;
  min-height: 100%;
  width: 100%;
  min-width: 100%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.intro_section .hero-main-container .hero-container .hero-content {
  position: relative;
  padding: 16px;
  width: 100%;
  max-width: 900px;
  z-index: 2;
  text-align: center;
}
.intro_section .hero-main-container .hero-container .hero-content h1 {
  margin: 31px 0 0px;
  color: white;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 300;
  white-space: wrap;
}
.intro_section .hero-main-container .hero-container .hero-content h1 .no-break {
  white-space: nowrap;
}
.intro_section .hero-main-container .hero-container .hero-content .hero-short {
  color: #b0dce8;
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 800;
}
.intro_section .hero-main-container .hero-container .hero-content .hero-text {
  color: white;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
}
.intro_section .hero-main-container .hero-container .hero-content .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.intro_section .hero-main-container .right-bar {
  background-color: #0c2739;
  position: relative;
  width: 100%;
  height: 70px;
  z-index: 2;
}
.intro_section .hero-main-container .start-text {
  width: 100%;
  padding: 1rem 1rem 2rem;
  background-color: white;
  z-index: 2;
}
.intro_section .hero-main-container .start-text .item {
  text-decoration: none;
  background-color: #0c2739;
  max-width: 1148.8px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  font-size: 1rem;
  color: white;
  padding: 2rem 2rem;
}
.intro_section .hero-main-container .start-text .item .text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-box-list {
  width: 100%;
  padding: 0rem 1rem 2rem;
  background-color: white;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  z-index: 2;
}
.service-box-list .item {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  background-color: #0c2739;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  font-size: 4vw;
  transition: background-color 0.3s ease;
  color: white;
}
.service-box-list .item:hover {
  background-color: white;
}
.service-box-list .item:hover strong {
  transition: color 0.3s ease;
  color: #e49929;
}
.service-box-list .item:hover p {
  transition: color 0.3s ease;
  color: #0c2739;
}
.service-box-list .item:visited {
  color: white;
}
.service-box-list .item .service-icon {
  margin: 0.5rem 1rem;
  object-fit: contain;
  height: 70px;
  width: 70px;
  max-width: 100%;
  border-radius: 70px;
  padding: 5px;
  background-color: white;
  display: inline-block;
  border-style: none;
}
.service-box-list .item .content {
  padding: 1rem;
  width: 100%;
  flex: 1;
  text-align: center;
}
.service-box-list .item .content strong {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: bold;
  display: block;
}
.service-box-list .item .content p {
  margin: 0;
  font-size: 0.8rem;
}
.service-box-list .item .half-circle-icon {
  display: block;
  margin-left: auto;
  align-self: flex-end;
  width: 40px;
  height: auto;
  max-width: 100%;
}

@media (min-width: 46.8em) {
  .hero-container.hero--other {
    min-height: var(--hero-height, 400px) !important;
  }
  .intro_section .hero-container {
    border-left: 32px solid #b0dce8 !important;
    border-right: 32px solid #b0dce8 !important;
    border-bottom: 32px solid #b0dce8 !important;
  }
  .start-text {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0 !important;
    padding: 0 25.6px !important;
  }
  .start-text .item {
    flex-direction: column !important;
    margin: 2rem;
    flex: 20rem;
    width: calc(50% - 8px);
    font-size: 1.2rem !important;
  }
  .service-box-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3rem;
  }
  .service-box-list .item {
    flex-direction: column !important;
    margin: 0.6rem;
    flex: 20rem;
    width: calc(50% - 8px);
  }
  .service-box-list .item .content {
    flex: 1 !important;
  }
  .service-box-list .item .content strong {
    font-size: 1rem !important;
  }
  .service-box-list .item .content p {
    font-size: 1rem !important;
  }
  .service-box-list .item .half-circle-icon {
    width: 50px !important;
  }
}
@media (min-width: 75em) {
  .hero-container {
    padding-left: 0 !important;
  }
  .service-box-list {
    column-gap: 1%;
    padding: 0 1rem !important;
    background-color: transparent !important;
    margin-top: 5rem;
  }
  .service-box-list .item {
    width: 100px !important;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }
  .service-box-list .item .service-icon {
    border: 1px solid #00273a !important;
    margin: 0 auto !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    border-radius: 80px !important;
    margin-top: 32px !important;
    padding: 8px !important;
    width: 105px !important;
    height: 105px !important;
  }
  .service-box-list .item .content {
    padding: 32px 32px 16px !important;
  }
  .start-text {
    column-gap: 1%;
    padding: 0 1rem !important;
    background-color: transparent !important;
  }
  .start-text .item {
    width: 100px !important;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin: 0.6rem;
  }
  .start-text .item .service-icon {
    border: 1px solid #00273a !important;
    margin: 0 auto !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    border-radius: 80px !important;
    margin-top: 32px !important;
    padding: 8px !important;
    width: 105px !important;
    height: 105px !important;
  }
  .start-text .item .content {
    padding: 32px 32px 16px !important;
  }
}
@media (min-width: 80em) {
  .hero-main-container {
    position: relative;
    height: var(--hero-height, 400px);
  }
  .hero-main-container .hero-container {
    min-height: var(--hero-height, 400px) !important;
  }
  .hero-main-container .right-bar {
    position: absolute !important;
    right: 0;
    top: 0;
    width: 84px !important;
    max-height: calc(100vh - 32px);
    height: var(--hero-height, 500px) !important;
  }
  .service-box-list {
    position: relative;
    max-width: 1100px;
    margin-top: 250px;
  }
  .start-text {
    position: relative;
    margin-top: -160px;
  }
  .start-text .item {
    max-width: 1048.8px !important;
  }
}
.main-content {
  padding-top: 32px;
  padding-bottom: 50px;
}
.main-content h2 {
  position: relative;
  margin-bottom: 30px;
}
.main-content p {
  font-weight: 300;
  margin-bottom: 50px;
  padding: 0 8px;
}
.main-content .button-wrapper {
  display: flex;
  justify-content: center;
}

.main-content-margin {
  margin-top: 128px;
}

@media (min-width: 75em) {
  .main-content {
    padding-top: 92px;
    padding-bottom: 126px;
  }
  .main-content h2 {
    font-size: 2rem;
  }
  .main-content p {
    font-size: 20px;
  }
}
.main-img-content-img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content-img {
  padding-top: 145px;
  padding-bottom: 121px;
  position: relative;
}
.main-content-img .img-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(7, 23, 35, 0.4784313725);
}
.main-content-img h2 {
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 42px;
  z-index: 2;
}
.main-content-img p {
  position: relative;
  font-weight: 300;
  margin-bottom: 60px;
  padding: 0 8px;
  max-width: 40rem;
  line-height: 26px;
  z-index: 2;
  font-size: 18px;
}
.main-content-img .button-wrapper {
  z-index: 2;
}

@media (min-width: 75em) {
  .main-content-img {
    padding-top: 92px;
    padding-bottom: 126px;
  }
  .main-content-img h2 {
    font-size: 2rem;
  }
  .main-content-img p {
    font-size: 20px;
  }
}
.flexible-header {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.flexible-header-thin {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

.flexible-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  padding: 0 1.5rem;
}

.highlight-item {
  display: flex;
  padding: 32px 16px;
}
.highlight-item .left {
  margin-right: 1.2rem;
  margin-top: 10px;
}
.highlight-item .left img {
  height: 98px;
  width: 23px;
}
.highlight-item .right h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.highlight-item .right p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
}

.left-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1350px;
  margin-bottom: 1rem;
  padding: 0 25px;
}
.left-right .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.left-right .text h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.left-right .text ul {
  max-width: 530px;
  padding-left: 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 32px;
}
.left-right .img {
  order: -1;
  max-width: 628px;
  height: clamp(500px, 50vw, 550px);
}
.left-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-left-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1350px;
  margin-bottom: 1rem;
  padding: 0 2rem;
}
.simple-left-right .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.simple-left-right .text h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.simple-left-right .text p {
  max-width: 530px;
  padding-left: 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 32px;
}
.simple-left-right .img {
  order: -1;
  height: clamp(500px, 50vw, 550px);
  width: auto;
}
.simple-left-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.spacer {
  height: 4rem;
}

@media (min-width: 46.8em) {
  .left-right {
    text-align: left;
    gap: 4rem;
  }
  .simple-left-right {
    text-align: left;
    gap: 4rem;
  }
}
@media (min-width: 60em) {
  .spacer {
    height: 110px;
  }
}
@media (min-width: 75em) {
  .left-right {
    flex-direction: row;
  }
  .left-right .img {
    order: 0;
  }
  .simple-left-right {
    flex-direction: row;
  }
  .simple-left-right .img {
    order: 0;
  }
}
.contact-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}
.contact-section .wrapper {
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
  padding: 0em 4em 2em;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}
.contact-section .wrapper .contact-item {
  padding: 1em 0;
}
.contact-section .wrapper .contact-item h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.contact-section .wrapper .contact-item h4 {
  margin-bottom: 0;
  text-wrap: nowrap;
  font-size: 20px;
}
.contact-section .wrapper .contact-item p {
  margin: 0;
  font-size: 18px;
  text-wrap: nowrap;
  font-weight: 600;
}
.contact-section .wrapper .contact-item a {
  text-decoration: none;
  text-wrap: nowrap;
  font-size: 18px;
}
.contact-section .wrapper .contact-item a:hover {
  text-decoration: underline;
}
.contact-section .wrapper .contact-item .contact-sub-item {
  justify-self: center;
}
.contact-section .wrapper .contact-item .contact-sub-item .open-days {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.contact-section .wrapper .contact-item .contact-sub-item .open-days > :first-child {
  font-weight: 300;
}

@media (min-width: 48em) {
  .contact-section {
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-section .wrapper {
    flex-direction: column;
  }
  .contact-section .wrapper .contact-item {
    padding: 2em 0 4em;
    text-align: left;
  }
  .contact-section .wrapper .contact-item .open-days {
    justify-content: start !important;
  }
  .contact-section .wrapper .contact-item h3 {
    margin-top: 0;
  }
  .contact-section .wrapper .contact-item .contact-sub-item-container {
    display: flex;
  }
  .contact-section .wrapper .contact-item .contact-sub-item-container .contact-sub-item {
    padding-right: 4em;
  }
}
@media (min-width: 60em) {
  .contact-section .wrapper {
    flex-direction: row;
  }
  .contact-section .wrapper .contact-item {
    justify-content: start;
  }
}
@media (min-width: 80em) {
  .contact-section .wrapper {
    padding: 4em 2em 2em;
  }
}
.staff-section {
  width: 100%;
  height: auto;
  padding-bottom: 1em;
}
.staff-section .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
}
.staff-section .wrapper .staff-item {
  width: auto;
  margin: 0;
  padding: 16px 24px;
  text-align: center;
}
.staff-section .wrapper .staff-item .position {
  font-size: 1.2rem;
  font-weight: 400;
}
.staff-section .wrapper .staff-item .staff-item-content {
  display: flex;
  justify-content: center;
}
.staff-section .wrapper .staff-item .staff-item-content .left {
  max-height: 98px;
  width: auto;
  margin-right: 4rem;
  display: none;
}
.staff-section .wrapper .staff-item .staff-item-content .left img {
  width: auto;
  height: 100%;
}
.staff-section .wrapper .staff-item .staff-item-content .right {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: auto;
  text-align: center;
  gap: 30px;
}
.staff-section .wrapper .staff-item .staff-item-content .right img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}
.staff-section .wrapper .staff-item .staff-item-content .right .text-container {
  display: flex;
  flex-direction: column;
}
.staff-section .wrapper .staff-item .staff-item-content .right .text-container h4 {
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.staff-section .wrapper .staff-item .staff-item-content .right .text-container a {
  font-size: 1rem;
  text-decoration: none;
}

@media (min-width: 46.8em) {
  .staff-section .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 60em) {
  .staff-section .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-section .wrapper .staff-item {
    text-align: start;
  }
  .staff-section .wrapper .staff-item .staff-item-content {
    justify-content: start;
  }
  .staff-section .wrapper .staff-item .staff-item-content .left {
    display: block;
  }
  .staff-section .wrapper .staff-item .staff-item-content .right {
    flex-direction: row;
    text-align: start;
  }
}
.reference-gallery {
  margin: 2rem 0 8rem;
}
.reference-gallery .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.reference-gallery .container .reference-item {
  width: 100%;
  height: 250px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  margin: 8px 0;
}
.reference-gallery .container .reference-item .reference-fade {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 10rem;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(255, 255, 255, 0) 100%);
}
.reference-gallery .container .reference-item .reference-item-content {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  z-index: 3;
}
.reference-gallery .container .reference-item .reference-item-content .left-content .hero-short {
  color: #b0dce8;
  text-transform: uppercase;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 800;
}
.reference-gallery .container .reference-item .reference-item-content .left-content h3 {
  margin-top: 0;
  font-weight: 600;
}
.reference-gallery .container .reference-item .reference-item-content .right-content {
  display: flex;
  align-items: center;
}
.reference-gallery .container .reference-item .reference-item-content .right-content img {
  height: 30px;
}
.reference-gallery .button-wrapper {
  margin-top: 4rem;
  justify-self: center;
}

@media (min-width: 46.8em) {
  .reference-gallery .container {
    flex-direction: row !important;
  }
  .reference-gallery .container .reference-item {
    margin: 0;
    flex: 1 0 48%;
    height: 400px;
  }
  .reference-gallery .container .reference-item .reference-item-content {
    padding: 1rem 2rem;
  }
}
@media (min-width: 75em) {
  .reference-gallery .reference-item {
    flex: 1 0 32% !important;
  }
}
@media (min-width: 80em) {
  .reference-gallery {
    margin-top: 10rem !important;
  }
}
.image-gallery {
  width: 100%;
}
.image-gallery .image-gallery-content {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
}
.image-gallery .image-gallery-content figure {
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) / 2);
  margin: 0;
  flex-grow: 1;
  aspect-ratio: auto 1024/1024;
}
.image-gallery .image-gallery-content figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.image-gallery .image-gallery-content figure:only-child {
  flex-grow: 0;
  width: 100%;
  max-height: 1000px;
  margin: auto;
}
.image-gallery .image-gallery-content figure:only-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

@media (min-width: 46.8em) {
  .image-gallery .image-gallery-content figure {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667);
  }
}
.search-container {
  padding-bottom: 10em;
}
.search-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-container form .form-content {
  position: absolute;
  z-index: 9999;
  box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.25);
  border-radius: 5px;
  width: 500px;
  max-width: 90%;
}
.search-container form .form-content input {
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 1rem;
}
.search-container form .form-content input:focus {
  border-color: #0c2739;
  outline: none;
}
.search-container form .form-content.search-active input {
  border-radius: 5px 5px 0 0;
}
.search-container form .form-content #search-results {
  background: white;
  border-top: 1px solid #e8eaed;
  border-radius: 0 0 5px 5px;
  width: 100%;
  display: none;
  z-index: 1000;
}
.search-container form .form-content .search-result-item {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #777;
}
.search-container form .form-content .search-no-results {
  padding: 10px;
  color: #777;
}
.search-container form .form-content .search-result-item:hover {
  background: #f5f5f5;
}

.button-wrapper {
  position: relative;
  z-index: 10;
}
.button-wrapper .standard-button {
  position: relative;
  background-color: #b0dce8;
  width: 200px;
  height: 50px;
  text-decoration: none;
  color: #0c2739;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.button-wrapper .standard-button:hover {
  background-color: #98bdc7;
}
.button-wrapper .standard-button::after {
  display: block;
  content: "";
  left: -10px;
  bottom: -14px;
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url("media/svg/arrow.svg");
  background-repeat: no-repeat;
  z-index: -1;
}

@media all and (max-width: 46.8em) {
  .standard-button {
    width: 180px !important;
    height: 50px !important;
    font-size: 0.8rem !important;
  }
  .standard-button::after {
    left: -10px !important;
    bottom: -10px !important;
  }
}
/**
 * Text styling
 */
.text-20px {
  font-size: 20px;
}

.text-24px {
  font-size: 24px;
  font-size: clamp(18px, 4vw, 24px);
}

.uppercase {
  text-transform: uppercase;
}

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

.has-text-align-center {
  text-align: center;
}

.title {
  font-weight: 700;
  font-size: 2rem;
}

/**
 * Size styling
 */
.max-width5 {
  width: 100%;
  max-width: 500px;
}

.max-width6 {
  width: 100%;
  max-width: 600px;
}

.max-width7 {
  width: 100%;
  max-width: 700px;
}

.max-width8 {
  width: 100%;
  max-width: 800px;
}

.max-width9 {
  width: 100%;
  max-width: 900px;
}

.max-width10 {
  width: 100%;
  max-width: 1000px;
}

.max-width {
  width: 100%;
  max-width: 1200px;
}

.max-width14 {
  width: 100%;
  max-width: 1400px;
}

.center-h {
  margin-left: auto;
  margin-right: auto;
}

.padding-all {
  padding: 16px;
}

.bg-img-cover {
  display: block;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Open Sans", serif;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}