/************************************************************************************
COLORS
*************************************************************************************/
html {
  --text-color: #222;
  --pine: #1C3835;
  --gecko: #55AB8A;
  --sorbet: #BAE3C8;
  --dune: #EAE6D6;
  --coral: #DE6A59;
  --merlot: #754143;
  --electric: #6280E0;
  --apricot: #E6A48a;
  --retro: #948568;
  --frosty: #B3C2F7;
}

/************************************************************************************
BASICS
*************************************************************************************/
html {
  --border-radius: 20px;
  --header-height: 150px;
}

/************************************************************************************
GLOBALS
*************************************************************************************/
/* ==============================================================
RESPONSIVE SETTINGS
================================================================*/
/************************************************************************************
RESET
*************************************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0px;
  padding: 0px;
  border: 0;
  outline: 0;
  font-size: 100.01%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  margin: 0px;
  padding: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, p {
  margin: 0px;
  padding: 0px;
  line-height: 1;
}

textarea {
  overflow: auto;
}

input {
  border: 0px solid white;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/************************************************************************************
CSS BASICS
*************************************************************************************/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

html, body {
  height: 100%;
  color: var(--text-color);
  background: var(--dune);
}

body {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

*:focus-visible {
  outline: 1px solid var(--cliff);
}

/************************************************************************************
GLOBALS
*************************************************************************************/
#wrapper {
  height: 100%;
}

.half {
  width: 50%;
}

.relative {
  position: relative;
}

.shadow {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  -moz-box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
  box-shadow: 0px 0px 30px 0px rgba(48, 48, 48, 0.17);
}

.shadow--small {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  -moz-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
}

.middle {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  z-index: 200;
  position: relative;
}

.middle--small {
  max-width: 720px;
}

.middle--medium {
  max-width: 1000px;
}

.middle--big {
  max-width: 1800px;
}

.v-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}

.v-middle-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.rounded {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

.btn {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color: var(--coral);
  color: #fff;
  font-size: 1.6rem;
  margin-top: 36px;
  display: inline-block;
  padding: 17px 32px;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  position: relative;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 7px 0px var(--pine);
}

.btn:hover {
  filter: brightness(1.04);
  box-shadow: 0 9px 0px var(--pine);
}

.btn + .btn {
  margin-left: 30px;
}

.btn--electric {
  background-color: var(--electric);
}

.btn--sorbet {
  background-color: var(--sorbet);
}

.btn--small {
  padding: 12px 30px;
  min-width: 100px;
  font-size: 14px;
}

.read-more {
  font-weight: 300;
  color: var(--blue);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 3rem;
  justify-content: center;
  align-items: center;
  display: inline-block;
  margin-top: 40px;
}

.read-more:after {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  content: "\f178";
  color: var(--blue);
  font-weight: 300;
  margin-left: 12px;
  font-size: 2.4rem;
}

.read-more-left:before {
  content: "\f351";
}

.hide {
  display: none;
}

.no-overflow {
  overflow: hidden;
}

.background-center {
  background-size: cover;
  background-position: center center;
}

#container {
  z-index: 50;
  position: relative;
  overflow: hidden;
}

.top-gradient {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(22, 53, 90, 0.2), rgba(22, 53, 90, 0.75) 90%);
}

.filter {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 100;
}

.filter-10 {
  background: #000;
  opacity: 0.1;
  filter: alpha(opacity=1);
}

.filter-20 {
  background: #000;
  opacity: 0.2;
  filter: alpha(opacity=2);
}

.filter-30 {
  background: #000;
  opacity: 0.3;
  filter: alpha(opacity=3);
}

.filter-40 {
  background: #000;
  opacity: 0.4;
  filter: alpha(opacity=4);
}

.object-fit {
  position: relative;
  overflow: hidden;
}
.object-fit > img, .object-fit .g-objectfit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.bordered {
  display: flex;
  width: 100%;
  /* Optional: 
  A normal dashed border can be set as a fallback, particularly if older browsers need to be supported. Notes:
  - the 4px width here is overwritten with any border-image-width value
  - a border-image-width can be omitted if it is the same value as the dashed border width
  */
  border-top: dashed 2px var(--grey); /*optional*/
  /* the initial value of border-style is "none", so it must be set to a different value for the border-image to show*/
  border-style: dashed;
  /* Individual border image properties */
  border-image-source: url("https://i.stack.imgur.com/wLdVc.png");
  border-image-slice: 2;
  border-image-repeat: round;
  /* or use the shorthand border-image */
  border-image: url("https://i.stack.imgur.com/wLdVc.png") 1.2 round;
  opacity: 0.3;
}

/*The border image of this one creates wider gaps*/
.largeGaps {
  border-image-source: url("https://i.stack.imgur.com/LKclP.png");
  margin: 0 20px;
}

/************************************************************************************
IMPORT
*************************************************************************************/
@font-face {
  font-family: "BobbyBold";
  src: url("../fonts/F37Bobby-Bold.woff") format("woff2"), url("../fonts/F37Bobby-Bold.woff2") format("woff2");
  font-weight: 100;
}
/************************************************************************************
GLOBAL TYPO
*************************************************************************************/
h1, h2, h3, h4, h5 {
  font-family: "BobbyBold", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

h1 {
  font-size: 8.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 100;
}
h1 b, h1 strong {
  color: var(--sorbet);
  font-weight: 100;
}

.block--page-top h1 {
  font-size: 6rem;
}

h2 {
  font-size: 7rem;
  margin-bottom: 35px;
  line-height: 1.2;
  font-weight: 100;
}

.special-header {
  margin-left: -180px;
  z-index: 100;
}
.special-header h2 {
  font-size: 10rem;
}

.image-right .special-header {
  margin-left: auto;
  margin-right: -250px;
  width: calc(100% + 250px);
}

h3 {
  font-size: 4.1rem;
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 100;
}

h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.5;
}

h4 + h4 {
  margin-top: 30px;
}

h5 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 18px;
  margin-top: 26px;
}

p {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.block .text ul li, .block .text ol li {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.4;
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.block .text ul li a, .block .text ol li a {
  text-decoration: underline;
}

.block .text ol li {
  list-style-type: decimal;
  margin-left: 25px;
}

p + h3, p + h2, ul + h3, ul + h2, ul + p, p + ul, ol + p, p + ol {
  margin-top: 45px;
}

p + p {
  margin-top: 35px;
}

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

p a {
  text-decoration: underline;
}

strong, b {
  font-weight: 600;
}

.center {
  text-align: center;
}

/************************************************************************************
ENTRY CONTENT
*************************************************************************************/
.entry-content p + h3, .entry-content ul + h2, .entry-content ul + h3 {
  margin-top: 50px;
}
.entry-content p + ul {
  margin-top: 30px;
}
.entry-content p + h2 {
  margin-top: 50px;
}
.entry-content strong, .entry-content b {
  font-weight: 700;
}
.entry-content h1 {
  margin-bottom: 50px;
}
.entry-content h2 {
  margin-bottom: 20px;
}
.entry-content h4 {
  margin-bottom: 50px;
  line-height: 1.4;
}
.entry-content li h4 {
  margin-bottom: 0px;
}
.entry-content ul, .entry-content ol {
  margin-top: 30px;
  margin-bottom: 40px;
}
.entry-content ul li, .entry-content ol li {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 8px;
  line-height: 1.3;
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 500;
}
.entry-content ol li {
  list-style-type: decimal;
  margin-left: 30px;
}
.entry-content a {
  color: var(--blue);
}
.entry-content img {
  margin-top: 30px;
  margin-bottom: 30px;
}

/************************************************************************************
SINGLE
*************************************************************************************/
/************************************************************************************
HEADER
*************************************************************************************/
#header {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 40;
  height: var(--header-height);
  z-index: 260;
  top: 0px;
  padding: 0px;
  position: relative;
}
#header .middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#header .logga {
  height: 100%;
  display: flex;
  align-self: center;
}
#header img {
  height: auto;
  width: 160px;
  margin: auto;
}
#header .btn {
  margin-top: 0px;
  padding: 27px 60px;
  box-shadow: none;
  background: var(--gecko);
  color: var(--pine);
  text-transform: uppercase;
}

#header.header-down, #header.header-up {
  position: fixed;
  width: 100%;
  background: var(--dune);
  height: 100px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  -moz-box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
}
#header.header-down img, #header.header-up img {
  height: auto;
  width: 140px;
  margin: auto;
}
#header.header-down .menu-menu-1-container > ul, #header.header-up .menu-menu-1-container > ul {
  display: flex;
  gap: 50px;
  padding: 20px 70px;
}
#header.header-down .btn, #header.header-up .btn {
  padding: 20px 60px;
}

/************************************************************************************
MENU
*************************************************************************************/
#header .menu-menu-1-container {
  background: #fff;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
#header .menu-menu-1-container > ul {
  display: flex;
  gap: 50px;
  padding: 27px 80px;
}
#header .menu-menu-1-container > ul > li {
  position: relative;
}
#header .menu-menu-1-container > ul > li a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}
#header .menu-menu-1-container > ul > li > a {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 1.6rem;
  position: relative;
}
#header .menu-menu-1-container > ul > li > a:hover:before {
  position: absolute;
  border-radius: 3px;
  background: var(--gecko);
  height: 5px;
  content: "";
  bottom: 10px;
  right: 0;
  left: 0;
}
#header .menu-menu-1-container > ul > li.current-menu-item > a:before, #header .menu-menu-1-container > ul > li.current-page-ancestor > a:before {
  position: absolute;
  border-radius: 3px;
  background: var(--gecko);
  height: 5px;
  content: "";
  bottom: 10px;
  right: 0;
  left: 0;
}

/************************************************************************************
BLOCK
*************************************************************************************/
.block {
  min-width: 100%;
  background-position: center center;
  background-size: cover;
}

.block--padding-small {
  padding-top: 100px;
  padding-bottom: 100px;
}

.block--padding-normal {
  padding-top: 150px;
  padding-bottom: 150px;
}

.block--padding-big {
  padding-top: 160px;
  padding-bottom: 160px;
}

.remove-padding-bottom {
  padding-bottom: 0px !important;
}

.remove-padding-top {
  padding-top: 0px !important;
}

.block.padding-top-small {
  padding-top: 100px;
}

.block.padding-bottom-small {
  padding-bottom: 100px;
}

.bg-white {
  background-color: #fff;
}

.bg-pine {
  background-color: var(--pine);
  color: var(--dune);
}

.bg-apricot {
  background-color: var(--apricot);
}

.bg-sorbet {
  background-color: var(--sorbet);
}

/************************************************************************************
HERO
*************************************************************************************/
.block--hero {
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.block--hero .middle {
  height: 50vh;
  min-height: 600px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  overflow: hidden;
  display: flex;
}
.block--hero .text {
  max-width: 1000px;
  position: relative;
  width: 90%;
  z-index: 200;
}
.block--hero h1 {
  color: #fff;
}
.block--hero h2 {
  font-size: 8.5rem;
}
.block--hero.text-left .text {
  margin-bottom: 60px;
  margin-top: auto;
  margin-left: 60px;
}
.block--hero.text-center .text {
  align-self: center;
  text-align: center;
  margin: auto;
}

/************************************************************************************
PAGE TOP
*************************************************************************************/
.block--page-top.has-media {
  margin-bottom: 150px;
}
.block--page-top .middle {
  display: flex;
  height: 400px;
}
.block--page-top .middle .image {
  width: 34%;
  position: absolute;
  right: 0px;
  padding-bottom: 34%;
  bottom: -60%;
}
.block--page-top .middle .text {
  width: 60%;
  max-width: 870px;
  padding-right: 100px;
  align-self: end;
}
.block--page-top .image-pattern-image {
  left: auto;
  right: -180px;
  bottom: auto;
  top: 0px;
}
.block--page-top .image-pattern-image path {
  fill: var(--sorbet);
  stroke: var(--sorbet);
}

.page-menu {
  display: none;
  position: absolute;
  bottom: -33px;
  width: 100%;
  z-index: 100;
}
.page-menu.page-menu-show {
  display: block;
}
.page-menu .page-menu__middle {
  width: 90%;
  max-width: 1800px;
  margin: auto;
  z-index: 900;
}
.page-menu .page-menu__middle .menu {
  background: var(--sorbet);
  background-clip: border-box;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 5px solid var(--sorbet);
  display: inline-block;
  padding-right: 40px;
}
.page-menu .page-menu__middle .menu ul {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}
.page-menu .page-menu__middle .menu li.menu-title {
  padding: 20px 48px;
  background: var(--gecko);
  background-clip: border-box;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box;
  font-weight: 600;
}
.page-menu .page-menu__middle .menu li {
  margin-right: 20px;
}

.single .block--page-top .middle {
  height: 300px;
}

/************************************************************************************
STANDARD
*************************************************************************************/
.block--standard .image {
  height: 480px;
  margin-bottom: 75px;
  border-radius: 20px;
}
.block--standard .text img {
  margin-top: 40px;
  margin-bottom: 40px;
}

/************************************************************************************
MAP
*************************************************************************************/
.map-bg {
  background-image: url(../img/karta.png);
  position: absolute;
  height: 150vh;
  width: 100%;
  max-width: 1600px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}

/************************************************************************************
TEXT AND IMAGE
*************************************************************************************/
.block--text-and-image .middle {
  display: flex;
}
.block--text-and-image .image {
  border-radius: var(--border-radius);
  min-height: 500px;
  width: 40%;
}
.block--text-and-image.image-right .middle {
  flex-direction: row-reverse;
}
.block--text-and-image .text {
  width: 60%;
}
.block--text-and-image .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.block--text-and-image .text .read-more {
  margin-top: 30px;
  display: inline-block;
}
.block--text-and-image .text .btn {
  margin-right: auto;
}
.block--text-and-image.bg-sand-light .text {
  background: #fff;
}

.image-left .text {
  padding: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 0px;
}

.image-round .image {
  border-radius: 50%;
  height: 0px;
  min-height: 0px;
  padding-bottom: 40%;
}

.image-pattern-image {
  position: absolute;
  width: 802px;
  bottom: -125px;
  z-index: 200;
  left: -30%;
}

.image-e-icon .object-fit .g-objectfit {
  object-fit: inherit;
  position: relative;
  height: auto;
}

.image-e-icon .image {
  margin-top: -180px;
}

.image-e-no-crop .object-fit .g-objectfit {
  object-fit: contain;
}

/************************************************************************************
TEXT AND IMAGE BOXED
*************************************************************************************/
.block--text-and-image-boxed .middle {
  max-width: 1600px;
}

.block--text-and-image-boxed .text {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 82%;
  border-radius: 20px;
  padding-top: 85px;
  padding-bottom: 85px;
}
.block--text-and-image-boxed.image-left .text {
  margin-left: -23%;
  padding-left: 35%;
  padding-right: 85px;
}

.block--text-and-image-boxed.image-right .text {
  margin-right: -23%;
  padding-right: 35%;
  padding-left: 85px;
}

/************************************************************************************
CENTER TEXT
*************************************************************************************/
.block--center-text {
  display: flex;
  justify-content: center;
}
.block--center-text .text {
  width: 90%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.block--center-text p {
  font-size: 2.5rem;
  max-width: 100%;
  line-height: 1.5;
}
.block--center-text .read-more {
  margin-top: 30px;
}

/************************************************************************************
PUSH BOXES
*************************************************************************************/
.block-intro {
  margin-bottom: 100px;
}

.push-boxes {
  display: grid;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 150px 100px;
}

.push-boxes-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
}

.push-boxes-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  max-width: 1400px;
}

.push-boxes__image {
  width: 100%;
  padding-bottom: 70%;
  margin-bottom: 30px;
}
.push-boxes__image img {
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}
.push-boxes__image a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 2;
  opacity: 0.2;
}
.push-boxes__image a:hover {
  background: var(--grey);
}

.push-boxes__item {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.push-boxes__item__text {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.push-boxes__item__text p {
  margin-bottom: 50px;
}
.push-boxes__item__text .btn {
  margin-left: 0px;
  margin-right: auto;
  margin-top: auto;
}

.push-boxes + .read-more {
  margin-top: 60px;
  text-align: center;
  width: 100%;
}

.push-boxes--icon {
  margin-top: 160px;
  padding-top: 240px;
}

.push-boxes-color-block {
  position: absolute;
  top: 0px;
  height: 400px;
  width: 100%;
}
.push-boxes-color-block img {
  width: 450px;
  height: auto;
  position: absolute;
  right: 10%;
  top: -220px;
}

/************************************************************************************
BIG IMAGE
*************************************************************************************/
.block--big-image {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  height: 60vh;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.block--big-image.text-white {
  color: #fff;
}
.block--big-image.text-left {
  justify-content: flex-start;
  text-align: left;
}
.block--big-image.text-left .text {
  margin-left: 10%;
}
.block--big-image.text-right {
  justify-content: flex-end;
  text-align: left;
}
.block--big-image.text-right .text {
  margin-right: 10%;
}
.block--big-image .text {
  width: 30%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/************************************************************************************
CONTACT PERSON RANDOM
*************************************************************************************/
.block--contact-person .image {
  width: 50%;
  padding-bottom: 50%;
}
.block--contact-person .text {
  width: 50%;
}

.text.profile-card ul h4, .profile-card .text ul h4 {
  font-size: 2.7rem;
}
.text.profile-card ul li, .profile-card .text ul li {
  margin-bottom: 8px;
  margin-left: 0px;
  list-style: none;
}
.text.profile-card ul li.title, .profile-card .text ul li.title {
  margin-bottom: 30px;
  margin-top: -6px;
  font-size: 1.8rem;
  opacity: 0.8;
}

/************************************************************************************
CONTACT PERSON
*************************************************************************************/
.profile-cards {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 120px;
}
.profile-cards .profile-card .image {
  padding-bottom: 100%;
}
.profile-cards .profile-card .text {
  padding-top: 40px;
  padding-left: 40px;
}
.profile-cards .profile-card .text .title {
  font-size: 1.4rem;
}

/************************************************************************************
CONTACT CARD
*************************************************************************************/
.block--contact-card .card {
  padding: 70px;
}
.block--contact-card .card ul li {
  list-style-type: none;
  margin-left: 0px;
}
.block--contact-card .card .some {
  position: absolute;
  right: 50px;
  top: 70px;
  display: flex;
  gap: 20px;
}
.block--contact-card .card .some i {
  font-size: 2.5rem;
  color: var(--coral);
}

/************************************************************************************
Gallery
*************************************************************************************/
.block--gallery {
  padding: 80px 0px;
}
.block--gallery ul {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
  justify-content: center;
  gap: 65px;
}
.block--gallery ul li {
  display: flex;
  justify-content: center;
}
.block--gallery ul li img {
  margin-bottom: auto;
  margin-top: auto;
  max-height: 100px;
  width: auto;
  max-width: 100%;
  height: auto;
}

/************************************************************************************
FORM
*************************************************************************************/
/************************************************************************************
FORM
*************************************************************************************/
.form-entry {
  margin-bottom: 40px;
}

.form-entry.accept {
  display: flex;
  gap: 10px;
}

.form-entry input, .form-entry textarea {
  border-radius: var(--border-radius);
  background-clip: padding-box;
  padding: 15px 30px;
  background: #fff;
  border: 0px;
  font-size: 16px;
  resize: none;
  width: 100%;
  font-family: "Inter", sans-serif;
}

.form-entry.input-field label {
  margin-left: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-entry input.wpcf7-submit {
  border: 0px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  padding: 15px 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--coral);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  display: inline-block;
  padding: 20px 32px;
  min-width: 150px;
  text-align: center;
  background-clip: padding-box;
  margin-right: 0px;
  cursor: pointer;
  width: auto;
  margin-left: auto;
  box-shadow: 0 7px 0px var(--pine);
}
.form-entry input.wpcf7-submit:hover {
  filter: brightness(1.04);
  box-shadow: 0 9px 0px var(--pine);
}

.form-entry-submit p {
  display: flex;
  flex-direction: column;
}

.form-entry .wpcf7-list-item {
  margin-left: 0px;
}

.form-entry.accept p {
  display: inline;
}
.form-entry.accept p a {
  color: var(--blue);
}

.form-entry .wpcf7-acceptance input {
  height: 16px;
  width: 16px;
  margin-right: 7px;
}

.block .wpcf7 form.sent .wpcf7-response-output {
  font-size: 2.2rem;
  border-radius: var(--border-radius);
  background: var(--sorbet);
}

.block .wpcf7 form .wpcf7-response-output {
  margin: 0px;
  padding: 40px;
  font-size: 2rem;
  border-radius: var(--border-radius);
  border: 0px;
  background: var(--apricot);
  width: 100%;
  padding: 40px;
}

select {
  position: relative;
  border: 2px solid white;
  padding: 15px 30px;
  padding-right: 75px;
  background: #fff;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  color: var(--text-color);
  z-index: 2;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

/*  =========================================================
CONTACT FROM 7
============================================================*/
.wpcf7-form {
  font-size: 16px;
  display: flex;
  gap: 10%;
  flex-wrap: wrap;
}
.wpcf7-form .col-1, .wpcf7-form .col-2 {
  width: 45%;
}
.wpcf7-form select::-ms-expand {
  display: none;
}
.wpcf7-form textarea,
.wpcf7-form input[type=text],
.wpcf7-form input[type=phone],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email],
.wpcf7-form input[type=number] {
  display: block;
  width: 100%;
  padding: 25px;
  border: 0;
  border: 1px solid transparent;
}
.wpcf7-form textarea:focus,
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=phone]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=number]:focus {
  outline: none;
  border: 1px solid var(--frosty);
}
.wpcf7-form .wpcf7-form-control-wrap {
  margin: 0;
  display: block;
}
.wpcf7-form p {
  margin: 0;
  margin-bottom: 8px;
  font-size: 2rem;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 10px;
  color: var(--coral);
}
.wpcf7-form .select-style {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  border-radius: 5px;
}
.wpcf7-form .select-style::-ms-expand {
  display: none;
}
.wpcf7-form .select-style select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  outline: 0;
  left: 0;
  top: 0;
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 1em;
}
.wpcf7-form .select-style select:focus {
  box-shadow: 0px 0px 20px 0px rgba(48, 48, 48, 0.08);
  outline: none;
  border-bottom: 4px solid #16355A;
}
.wpcf7-form .select-style .select-style__icon {
  top: 0.8em;
  position: absolute;
  right: 1em;
  pointer-events: none;
  color: #16355A;
  z-index: 3;
}
.wpcf7-form .select-style .select-style__icon i {
  color: #16355A;
}

/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
  position: relative;
  z-index: 40;
}
#footer a {
  color: var(--dune);
}
#footer a.btn {
  color: var(--pine);
  margin-left: auto;
}
#footer ul li {
  line-height: 1;
}
#footer .middle {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#footer .logo-footer img {
  width: 130px;
  margin-bottom: 30px;
}
#footer .footer--left ul li {
  margin-bottom: 8px;
}
#footer .footer--left ul li a {
  text-decoration: underline;
}
#footer .footer-bottom-nav {
  margin-top: 20px;
}
#footer .footer-bottom-nav ul {
  display: flex;
  gap: 20px;
}
#footer .footer-bottom-nav ul li a {
  text-decoration: none;
  font-size: 1.3rem;
}
#footer .bottom-extra-text {
  margin-top: 7px;
  opacity: 0.6;
}
#footer .bottom-extra-text p, #footer .bottom-extra-text a {
  font-size: 1.3rem;
}
#footer .footer--right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#footer .footer--right ul.menu {
  display: flex;
  gap: 120px;
}
#footer .footer--right ul.menu > li > a {
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
}
#footer .footer--right ul.menu .sub-menu {
  margin-top: 20px;
}
#footer .footer--right ul.menu .sub-menu li {
  margin-top: 14px;
}
#footer .footer--right ul.menu .sub-menu li a {
  font-size: 1.45rem;
  font-weight: 300;
}
#footer .social {
  margin-top: 100px;
}
#footer .social ul {
  display: flex;
  gap: 20px;
}
#footer .social i {
  font-size: 2rem;
  color: var(--sorbet);
}

.single .block--page-top .meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single .block--page-top .meta a {
  color: var(--dune);
}

/************************************************************************************
FAQ
*************************************************************************************/
.single-faq_cpt .text img {
  border-radius: 20px;
}

/************************************************************************************
FAQ
*************************************************************************************/
.block--faq .middle {
  display: grid;
  gap: 60px;
}

.faq-item {
  padding-bottom: 60px;
  border-bottom: 2px solid white;
}
.faq-item h3 a:hover {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--gecko);
}

.filter-bar {
  padding: 40px;
}
.filter-bar ul {
  gap: 30px;
  display: flex;
}
.filter-bar li {
  font-size: 1.7rem;
  font-weight: 600;
  display: inline;
  position: relative;
}
.filter-bar li.current a:before, .filter-bar li a:hover:before {
  position: absolute;
  border-radius: 3px;
  background: var(--gecko);
  height: 5px;
  content: "";
  bottom: -10px;
  right: 0;
  left: 0;
}

.archive .filter-bar li.current-all a::before {
  height: 0px;
}

.archive .filter-bar li.current-all a:hover:before {
  height: 5px;
}

/************************************************************************************
DESKTOP BIG
*************************************************************************************/
@media only screen and (max-width: 2200px) {
  .block--page-top .image-pattern-image {
    left: 80%;
    right: auto;
  }
}
/************************************************************************************
	DESKTOP BIG
	*************************************************************************************/
@media only screen and (max-width: 1600px) {
  .block--page-top .middle {
    height: 40vh;
    min-height: 350px;
    max-height: 390px;
  }
  .block--page-top .image-pattern-image {
    left: 70%;
    right: auto;
  }
  .block--page-top .middle .image {
    width: 40%;
    padding-bottom: 40%;
  }
  .block--text-and-image-boxed.image-right .middle {
    min-width: 100%;
    margin-left: 10%;
  }
  .block--text-and-image-boxed.image-left .middle {
    min-width: 100%;
    margin-left: -10%;
  }
}
/************************************************************************************
DESKTOP MEDIUM
*************************************************************************************/
@media only screen and (max-width: 1440px) {
  html {
    font-size: 58%;
  }
  .push-boxes-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;
  }
  .push-boxes-4 {
    gap: 120px 90px;
  }
  .block--contact-person .text {
    padding-left: 75px;
  }
  .page-menu {
    bottom: -27px;
  }
  .page-menu .page-menu__middle .menu li {
    margin-right: 10px;
  }
  .page-menu .page-menu__middle .menu li.menu-title {
    padding: 18px 38px;
  }
}
/************************************************************************************
DESKTOP SMALL
*************************************************************************************/
@media only screen and (max-width: 1280px) {
  .block--page-top .middle {
    height: auto;
    min-height: 300px;
    max-height: 420px;
  }
  .image-pattern-image {
    left: -40%;
  }
  .block--page-top .image-pattern-image {
    top: -31px;
  }
  h2 {
    margin-bottom: 25px;
  }
  .block--padding-normal {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .block--text-and-image .image {
    min-height: 400px;
  }
  .block--text-and-image .image.image-e-no-crop {
    width: 100%;
  }
  .block-intro {
    margin-bottom: 45px;
  }
  .push-boxes--icon {
    margin-top: 160px;
    padding-top: 210px;
  }
  .special-header h2 {
    font-size: 8rem;
  }
  .block--text-and-image-boxed.image-left .text {
    margin-left: -23%;
    padding-left: 30%;
    padding-right: 85px;
  }
}
/************************************************************************************
IPAD AND LOWER
*************************************************************************************/
@media only screen and (max-width: 1100px) {
  .block--hero .middle {
    height: 40vh;
    min-height: 500px;
  }
  .image-e-normal .image {
    width: 100%;
    max-width: 700px;
    padding-bottom: 50%;
    min-height: auto;
  }
  .image-round .image {
    width: 50%;
    padding-bottom: 50%;
    min-height: auto;
  }
  .image-pattern-image {
    bottom: auto;
    top: 0px;
  }
  .image-e-icon .image {
    width: 25%;
    min-height: auto;
    right: 0px;
    position: absolute;
  }
  .special-header {
    margin-left: 0px;
  }
  .image-right .special-header {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .block--page-top .middle {
    height: auto;
    min-height: 280px;
    max-height: 360px;
  }
  .push-boxes-color-block img {
    width: 280px;
    height: auto;
    position: absolute;
    right: 10%;
    top: -128px;
  }
  .push-boxes--icon {
    margin-top: 95px;
    padding-top: 182px;
  }
  .block--text-and-image-boxed.image-right .middle {
    min-width: 100%;
    margin-left: 10%;
  }
  .block--text-and-image-boxed.image-right .middle .text {
    padding-right: 40%;
    max-width: 100%;
    margin-right: auto;
  }
  .block--text-and-image-boxed.image-right .image {
    position: absolute;
    width: 28%;
    padding-bottom: 28%;
    min-height: auto;
    right: 40px;
  }
  .block--text-and-image-boxed.image-left .middle {
    min-width: 100%;
    margin-right: 10%;
  }
  .block--text-and-image-boxed.image-left .middle .text {
    padding-left: 40%;
    max-width: 100%;
    margin-left: auto;
  }
  .block--text-and-image-boxed.image-left .image {
    position: absolute;
    width: 28%;
    padding-bottom: 28%;
    min-height: auto;
    left: 40px;
  }
  .block--contact-person .text {
    text-align: center;
  }
  .block--contact-person .text .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .special-header h2, .block--hero h2 {
    font-size: 7rem;
  }
  .profile-cards .profile-card .image {
    padding-bottom: 100%;
    width: 100%;
  }
  .block--text-and-image .text {
    width: 100%;
  }
  .block--text-and-image .text {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    max-width: 700px;
  }
  .block--text-and-image .middle {
    flex-direction: column;
    align-items: center;
  }
  .block--text-and-image.image-right .middle {
    flex-direction: column;
  }
  .block--text-and-image-boxed .text {
    padding-bottom: 85px;
  }
  .push-boxes__item__text h3 {
    font-size: 3.8rem;
  }
  .block--big-image .text {
    width: 90%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
  }
  .block--big-image.text-right .text {
    margin-right: 5%;
    margin-left: auto;
  }
  .block--big-image.text-left .text {
    margin-right: auto;
    margin-left: 5%;
  }
  #footer .footer--right ul.menu > li > a {
    font-size: 2rem;
  }
}
/************************************************************************************
LAREGR THAN IPAD
*************************************************************************************/
@media only screen and (min-width: 1080px) {
  .mobile {
    display: none !important;
  }
  .desktop {
    display: block !important;
  }
  header .fa-circle-xmark {
    display: none !important;
  }
  .menu-menu-1-container {
    display: block !important;
  }
  .menu-mobilmeny-container {
    display: none !important;
  }
  #header .menu .sub-menu {
    visibility: hidden;
    top: 55px;
    opacity: 0;
    position: absolute;
    background: var(--sorbet);
    background-clip: border-box;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    border-radius: 20px;
    background-clip: padding-box;
    z-index: 10000;
    padding: 35px;
    margin: 0px;
    margin-top: 0px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  #header .menu .sub-menu li a {
    font-weight: 300;
    text-transform: none;
    padding-bottom: 0px;
    font-size: 2rem;
  }
  #header .menu .sub-menu li > a:hover, #header .menu .sub-menu li.current-menu-item > a, #header .menu .sub-menu li.current-page-ancestor > a {
    text-decoration: underline;
  }
  #header .menu li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 38px;
  }
}
/************************************************************************************
IPAD
*************************************************************************************/
@media only screen and (max-width: 1080px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  #container {
    margin-top: 80px;
  }
  #header {
    height: 80px;
    position: fixed;
    z-index: 900;
    background: var(--dune);
    width: 100%;
  }
  #header .btn {
    display: none;
  }
  #header.header-down, #header.header-up {
    height: 80px;
  }
  #header img, #header.header-down img, #header.header-up img {
    width: 125px;
  }
  .menu-mobilmeny-container {
    display: none;
  }
  .menu-menu-1-container {
    display: none !important;
  }
  #header .menu-mobilmeny-container {
    position: fixed;
    background: var(--sorbet);
    width: 100%;
    height: 100%;
    left: 0px;
    padding: 80px;
    top: 79px;
    display: none;
  }
  #header .menu-mobilmeny-container .menu {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  #header .menu-mobilmeny-container > ul > li.current-menu-item > a, #header .menu-mobilmeny-container > ul > li.current-page-ancestor > a {
    border-bottom: 0px;
    text-decoration: underline;
  }
  #header .menu-mobilmeny-container > ul > li {
    margin-left: 0px;
  }
  #header .menu-mobilmeny-container > ul > li > a {
    padding-bottom: 0px;
    font-size: 3.2rem;
    font-family: "BobbyBold", sans-serif;
  }
  #header .menu-mobilmeny-container > ul > li .sub-menu {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
  }
  #header .menu-mobilmeny-container > ul > li .sub-menu li {
    margin-bottom: 4px;
  }
  #header .menu-mobilmeny-container > ul > li .sub-menu a {
    font-size: 2.35rem;
  }
  #header .menu .sub-menu li.current-menu-item > a, #header .menu .sub-menu li.current-page-ancestor > a {
    text-decoration: underline;
  }
  #header .fa-circle-xmark {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    display: none;
  }
  #header .fa-bars {
    font-size: 28px;
    margin-top: auto;
    margin-bottom: auto;
    color: var(--pine);
  }
  .page-menu {
    display: none;
  }
  .block--page-top .middle .image {
    width: 50%;
    padding-bottom: 50%;
    right: -150px;
    bottom: -70%;
  }
  #footer .footer--right ul.menu {
    flex-direction: column;
    gap: 20px;
  }
  .block--padding-normal {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .push-boxes--icon {
    margin-top: 95px;
    padding-top: 182px;
  }
  #footer .bottom-tabs {
    left: 0px;
    right: auto;
  }
  #footer .bottom-tabs .bottom-tabs__item {
    padding: 10px;
  }
  #footer .bottom-tabs .bottom-tabs__item img {
    max-width: 90px;
    height: auto;
    max-height: 30px;
    width: auto;
    margin: auto;
  }
}
/************************************************************************************
MOBILE
*************************************************************************************/
@media only screen and (max-width: 900px) {
  h2 {
    font-size: 5rem;
  }
  .special-header h2, .block--hero h2 {
    font-size: 6rem;
  }
  h3 {
    font-size: 4rem;
  }
  .block--page-top .middle {
    height: auto;
    max-height: none;
  }
  .block--page-top .middle .image {
    width: 40%;
    padding-bottom: 40%;
    right: -101px;
    bottom: -46%;
  }
  .image-e-icon .image {
    width: 30%;
    min-height: auto;
    right: 0px;
    position: absolute;
  }
  .image-pattern-image {
    bottom: auto;
    top: 0px;
    left: -56%;
    width: 100%;
  }
  .image-e-normal .image {
    width: 100%;
    max-width: 700px;
    padding-bottom: 65%;
    min-height: auto;
  }
  .image-round .image {
    width: 80%;
    padding-bottom: 80%;
    min-height: auto;
  }
  .block--text-and-image-boxed.image-right .middle {
    min-width: 90%;
    margin-left: auto;
  }
  .block--text-and-image-boxed.image-right .image {
    width: 45%;
    padding-bottom: 45%;
  }
  .block--text-and-image-boxed.image-right .middle .text {
    margin-top: 35%;
    z-index: 9;
    padding: 10%;
  }
  .block--text-and-image-boxed.image-left .middle {
    min-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .block--text-and-image-boxed.image-left .image {
    width: 45%;
    padding-bottom: 45%;
  }
  .block--text-and-image-boxed.image-left .middle .text {
    margin-top: 35%;
    z-index: 9;
    padding: 10%;
  }
  .block--page-top .middle .text {
    width: 70%;
  }
  .block.padding-bottom-small {
    padding-bottom: 70px;
  }
  .block.padding-top-small {
    padding-top: 70px;
  }
  .block--page-top.has-media {
    margin-bottom: 120px;
  }
  .block--standard .image {
    height: auto;
    padding-bottom: 67%;
    margin-bottom: 40px;
  }
}
/************************************************************************************
MOBILE
*************************************************************************************/
@media only screen and (max-width: 700px) {
  h1, .block--page-top h1 {
    font-size: 6rem;
  }
  h2, .special-header h2, .block--hero h2 {
    font-size: 5rem;
    font-weight: 400;
  }
  h3 {
    font-size: 4rem;
    font-weight: 300;
  }
  h4 {
    font-size: 2.8rem;
  }
  p, .block .text ul li, .block .text ol li, ol li, ul li {
    font-size: 2rem;
  }
  #header .menu-mobilmeny-container {
    padding: 50px;
    padding-top: 80px;
  }
  .block--page-top.has-media {
    margin-bottom: 0px;
  }
  .block--page-top.has-media .middle {
    min-height: 470px;
  }
  .block--page-top .middle .text {
    width: 100%;
    padding: 0px;
  }
  .block--page-top .image-pattern-image {
    width: 200px;
    left: -100%;
  }
  .block--page-top .middle .image {
    width: 55%;
    padding-bottom: 55%;
    right: -100px;
    bottom: auto;
    top: -100px;
  }
  .push-boxes-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 70px;
  }
  .push-boxes-3 .push-boxes__item {
    justify-self: center;
  }
  .push-boxes__item {
    max-width: 400px;
  }
  .push-boxes-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px 50px;
  }
  .push-boxes-4 p {
    font-size: 1.8rem;
  }
  .push-boxes__item__text h3 {
    font-size: 3rem;
  }
  .push-boxes-color-block {
    height: 300px;
  }
  .block--text-and-image .image.image-e-no-crop {
    min-height: auto;
    border-radius: 0px;
    height: 350px;
  }
  .block--text-and-image .image.image-e-no-crop img {
    position: relative;
  }
  .form-entry input,
  .form-entry textarea,
  .wpcf7-form textarea,
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=phone],
  .wpcf7-form input[type=tel],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=number] {
    padding: 18px;
    border-radius: 15px;
  }
  .wpcf7-form .col-1, .wpcf7-form .col-2 {
    width: 100%;
  }
}
/************************************************************************************
MOBILE
*************************************************************************************/
@media only screen and (max-width: 500px) {
  h1, .block--page-top h1 {
    font-size: 3.6rem;
  }
  h2, .special-header h2, .block--hero h2 {
    font-size: 4rem;
    font-weight: 400;
  }
  h3 {
    font-size: 3.6rem;
    font-weight: 300;
  }
  .block--page-top .middle {
    min-height: 220px;
  }
  .single .block--page-top .middle {
    height: auto;
  }
  .block--padding-small {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .block--hero .middle {
    height: auto;
    min-height: 280px;
  }
  .block--hero .text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .block--hero.text-left .text {
    margin-left: 20px;
    margin-bottom: -30px;
  }
  .btn {
    padding: 15px 25px;
    min-width: 125px;
  }
  .btn + .btn {
    margin-left: 20px;
  }
  .block--page-top .middle .image {
    width: 100%;
    padding-bottom: 100%;
    right: -95px;
    bottom: auto;
    top: -100px;
    opacity: 0.52;
  }
  .block--page-top.has-media .middle {
    min-height: 370px;
  }
  .push-boxes-color-block {
    height: 200px;
  }
  .push-boxes-color-block img {
    display: none;
  }
  .push-boxes--icon {
    margin-top: 0px;
    padding-top: 75px;
  }
  .image-e-icon .image {
    margin-top: -100px;
    width: 42%;
  }
  .image-round .image {
    width: 80%;
    padding-bottom: 80%;
    min-height: auto;
  }
  .image-pattern-image {
    bottom: auto;
    top: 0px;
    left: -147%;
    width: 189%;
  }
  .push-boxes-4, .push-boxes-3, .push-boxes-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 70px;
  }
  .push-boxes-4 .push-boxes__item, .push-boxes-3 .push-boxes__item, .push-boxes-2 .push-boxes__item {
    justify-self: center;
  }
  .push-boxes__item__text p {
    margin-bottom: 30px;
  }
  .block--center-text p, p, ul li {
    font-size: 2rem;
  }
  .block--big-image .text, .block--big-image.text-right .text, .block--big-image.text-left .text {
    margin: 0px;
    width: 100%;
    border-radius: 0px;
    height: 100%;
  }
  .block--gallery ul {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 4fr));
    justify-content: center;
    gap: 30px;
  }
  .block--gallery ul li img {
    max-height: 40px;
  }
  .block--contact-card .card {
    padding: 70px;
    padding-top: 85px;
    padding-left: 50px;
  }
  .block--contact-card .card .some {
    position: absolute;
    right: 32px;
    top: 30px;
    display: flex;
    gap: 12px;
  }
  .block--contact-card .card .some i {
    font-size: 1.7rem;
  }
  .profile-cards {
    padding-top: 40px;
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }
  .profile-cards .profile-card {
    width: 100%;
    max-width: 290px;
  }
  .profile-cards .profile-card .text {
    padding-top: 15px;
  }
  .text.profile-card ul li.title, .profile-card .text ul li.title {
    margin-bottom: 20px;
    margin-top: -6px;
    font-size: 1.6rem;
    opacity: 0.8;
  }
  .block--text-and-image-boxed .image {
    left: auto;
    right: auto;
  }
  .block--text-and-image-boxed .middle .text {
    margin-top: 52%;
  }
  #footer .footer--left ul li {
    font-size: 1.5rem;
  }
  #footer .footer-bottom-nav ul {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  #footer .footer--right ul.menu > li > a {
    font-size: 1.5rem;
  }
  #footer .footer--right ul.menu .sub-menu li a {
    font-size: 1.2rem;
    font-weight: 300;
  }
  #footer .footer--right ul.menu .sub-menu li {
    margin-top: 8px;
  }
}
