/*
	Theme Name: paustian
	Author: paustian
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
font-family: 'Helvetica', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000;
}

body.home{
  background: #000;
}

body p {
  font-size: 16px;
  line-height: 21px;
    font-weight: 300;
}

.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
}

a:focus,
a:hover,
a:active,
input:focus {
  outline: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.j-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.j-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-weight: 700;
}

.wp-block-heading{
  margin-top: 0;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}

.header {
  position: relative;
  background: #000;
}

.headerRight {
  display: flex;
  justify-content: center;
  margin-left: auto;
}

.iconsMenu {
  gap: 19px;
}

.iconsMenu img {
  width: 18px;
  min-width: 18px;
    filter: brightness(0) invert(1);
}

.iconsMenu .search-toogle:hover {
  cursor: pointer;
}

.search-toogle img{
  filter: brightness(0) invert(1);
}

.iconsMenu .top-search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  padding: 0 10px;
}

.iconsMenu .top-search-form form {
  width: 100%;
  position: relative;
  border: 1px solid #000;
}

.iconsMenu .top-search-form input[type="search"],
.iconsMenu .top-search-form input[name="s"],
.iconsMenu .top-search-form input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  padding-right: 70px;
}

.iconsMenu .top-search-form .search-submit,
.iconsMenu .top-search-form button[type="submit"],
.iconsMenu .top-search-form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  outline: none;
  color: #0f2f45;
  background: transparent;
  padding: 0 16px;
  cursor: pointer;
}

.logo {
  max-width: 140px;
  float: left;
  margin-top: 20px;
  margin-bottom: 22px;
}

.logo-img {
  width: 100%;
}

.headerRight .nav {
  display: none;
}
.nav {
  position: static;
}

.nav > ul {
  display: flex;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  position: static;
}

.nav > ul > li {
  display: inline-block;
}

.nav > ul > li > a {
  font-weight: bold;
  color: #fff;
  font-size: 13px;
  display: block;
  padding: 32px 5px;
  transition: all .3s ease;
}

/* big white dropdown panel */
.nav > ul > li > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  width: 100%;
  background: #000;
  border: 1px solid #000;
  padding: 30px;
  z-index: 999;
  white-space: normal;
  box-sizing: border-box;
}

/* show first level dropdown */
.nav > ul > li:hover > .sub-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

/* items inside mega menu */
.nav > ul > li > .sub-menu > li {
  width: 25%;
  padding: 0 20px 12px 0;
  box-sizing: border-box;
}

/* links inside mega menu */
.nav > ul > li > .sub-menu > li > a {
  display: block;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
}

.nav > ul > li > .sub-menu > li > a:hover {
  color: #666;
}

/* deeper levels keep classic flyout if ever needed */
.nav ul ul ul {
  top: 0;
  left: 100%;
  width: 260px;
  padding: 0;
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #000;
}

.nav ul ul li:hover > ul {
  display: block;
}

.nav ul ul ul li {
  width: 100%;
}

.nav ul ul ul li a {
  padding: 9px 10px;
  display: block;
  border-bottom: 1px solid #000;
}

.nav ul ul ul li:last-child a {
  border-bottom: 0;
}

/* Currency switcher */
.headerCurrencySwitcher {
    display: flex;
    align-items: center;
    margin: 0;
}

.headerCurrencySwitcher .wcuCurrencySwitcherWidget {
    margin: 0 !important;
    width: auto !important;
}

.chosen-container.chosen-with-drop .chosen-drop{
  top: 5px;
}

.chosen-drop .headerCurrencySwitcher .chosen-results{
  padding: 0!important;
}

.chosen-container .chosen-results li.active-result{
  padding-left: 0!important;
  padding-right: 0!important;
  text-align: center;
}

/* Main container */
.headerCurrencySwitcher .chosen-container {
    width: auto !important;
    min-width: 0 !important;
    font-family: inherit;
    font-size: 14px !important;
    line-height: 1;
}

/* Closed state */
.headerCurrencySwitcher .chosen-container .chosen-single {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: 1 !important;
    padding: 0 18px 0 0 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px !important;
}

.headerCurrencySwitcher .chosen-container .chosen-single span {
    margin-right: 0 !important;
    overflow: visible !important;
    text-overflow: unset !important;
    font-size: 14px !important;
     color: #fff !important;
}

/* Arrow */
.headerCurrencySwitcher .chosen-container .chosen-single div {
    width: 12px !important;
    right: 2px !important;
}

.headerCurrencySwitcher .chosen-container .chosen-single div b {
    background: none !important;
    position: relative;
}

.headerCurrencySwitcher .chosen-container .chosen-single div b::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 4px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #8f8f8f;
    border-bottom: 2px solid #8f8f8f;
    transform: translateY(-70%) rotate(45deg);
}

.headerCurrencySwitcher .chosen-container.chosen-with-drop .chosen-single div b::after {
    transform: translateY(-30%) rotate(-135deg);
}

/* Dropdown */
.headerCurrencySwitcher .chosen-drop {
    margin-top: 8px !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 !important;
    background: #fff !important;
}

/* Remove search */
.headerCurrencySwitcher .chosen-container-single .chosen-search {
    display: none !important;
}

/* Options list */
.headerCurrencySwitcher .chosen-results {
    margin: 0 !important;
    padding: 6px 0 !important;
}

.headerCurrencySwitcher .chosen-results li {
    padding: 6px 12px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    color: #1d1d1b !important;
    background: transparent !important;
}

.headerCurrencySwitcher .chosen-results li.highlighted,
.headerCurrencySwitcher .chosen-results li:hover {
    background: #f5f5f5 !important;
    color: #1d1d1b !important;
}

.headerCurrencySwitcher .chosen-results li.result-selected {
    font-weight: 700;
}
/* Privat/erhverv */
.shopUtility .wp-block-wdevs-tax-switch {
  margin: 0;
  min-width: 105px;
}

.shopUtility .wdevs-tax-switch.wdevs-tax-buttons {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.shopUtility .wdevs-tax-button {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer;
  transition: .2s ease;
  text-decoration: none !important;
}

.shopUtility .wdevs-tax-button:hover {
  color: #fff !important;
}

.shopUtility .wdevs-tax-button.wdevs-tax-button-active {
  color: #fff !important;
}

.shopUtility .wdevs-tax-button+.wdevs-tax-button:before {
  content: "/";
  display: inline-block;
  margin: 0 4px 0 2px;
  color: #6f6f6f;
  font-weight: 700;
}

.wp-block-wdevs-tax-switch.is-style-inline .wdevs-tax-buttons .wdevs-tax-button:first-child:after {
  display: none !important;
}
.headerCurrencySwitcher{
  margin-top: -3px;
}
.headerCurrencySwitcher,
.shopUtility {
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	animation: shopUtilityFadeIn .35s ease forwards;
	animation-delay: .6s;
	will-change: opacity, transform;
}

@keyframes shopUtilityFadeIn {
	from {
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}
/* cart */
.headerCart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.headerCart img {
  width: 18px;
  display: block;
  filter: brightness(0) invert(1);
}

.headerCart__count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #fff;
}
.wpmm-button{
  display: flex;
}

@media(max-width:480px){
  .header{
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  body:not(.page-template-default, .home) .header .wrapper{
    flex-direction: column;
  }
  body:not(.page-template-default, .home) .headerRight{
    margin-right: auto;
  }
}

/* banner/video */
.bannerHero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bannerHero__slider {
  width: 100%;
  border-bottom: 20px solid #000;
}

.bannerHero__slide {
  position: relative;
  width: 100%;
}

.bannerHero__img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}

.bannerHero__videoWrap {
  position: relative;
  width: 100%;
}

.bannerHero__video {
  display: block;
  width: 100%;
  object-fit: cover;
}

.bannerHero__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 16px;
  pointer-events: none;
}

.bannerHero__textInner{
  max-width: 1380px;
  width: 100%;
  color: #fff;
font-size: var(--banner-font-mobile);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.bannerHero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
}

.bannerHero__prev {
  left: 14px;
}

.bannerHero__next {
  right: 14px;
}

.bannerHero__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.bannerHero__next::before {
  transform: rotate(-45deg);
}

/* welcome */
.welcome{
  background: #000;
}
.welcome.subpage_welcome{
  background: #fff;
  color: #000;
}

.welcome.subpage_welcome p,
.welcome.subpage_welcome li,
.welcome.subpage_welcome a{
  color: #000;
}

.png{
  padding: 40px 0;
}
.mrg {
  margin: 40px 0;
}

.mainHeadline {
  font-size: clamp(28px, 3vw + 16px, 72px);
  line-height: .9;
  max-width: 700px;
  margin-top: 0;
  color: #000;
}

.mainHeadline.white {
  color: #fff;
}

.welcome__text {
  max-width: 600px;
}

.welcome p {
  color: #fff;
  font-size: clamp(16px, 0.5vw + 14px, 19px);
  line-height: clamp(21px, 0.8vw + 18px, 26px);
}

.welcome p:last-child {
  margin-bottom: 0;
}

.btnMain {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 30px;
  border: 1px solid #000;
  transition: .3s linear;
}

.btnMain.white {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btnMain.white.border{
  border-color: #000;
}

.btnMain:hover {
  background: #fff;
  color: #000;
}

.btnMain.white:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.btnMain.serviceTile__label {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  text-align: center;
  border: none;
  z-index: 2;
  font-size: 10px;
  padding: 10px;
}
.servicesSliderSection {
    background: #000;
    padding: 60px 0;
    overflow: hidden;
}

.servicesSliderSection .wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding-right: 0;
}

.servicesSlider {
    overflow: visible;
    margin-bottom: 40px;
}

.serviceSlide img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.serviceSlide__title {
    margin: 0 0 22px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

@media (min-width: 768px) {
    .servicesSliderSection {
        padding: 80px 0;
    }

    .servicesSliderSection .wrapper {
        width: calc(100% - ((100vw - 1400px) / 2));
        max-width: none;
        margin-left: max(20px, calc((100vw - 1400px) / 2));
        margin-right: 0;
    }

    .serviceSlide img {
        height: 340px;
    }
}
/* cases */
.casesPage{
  padding-top: 50px;
}

.caseBlock {
  background: #000;
  padding: 40px 0;
}

.caseBlock .mainHeadline {
  margin-bottom: 40px;
}

.caseBlock__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.caseBlock__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.caseBlock__img {
  position: relative;
  overflow: hidden;
}

.caseBlock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caseBlock__img.is-big {
  grid-row: span 2;
}

.caseBlock__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
}

.caseBlock__text p {
  margin: 0 0 16px;
}

h3 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 16px;
}

.caseBlock__btn {
  display: inline-block;
  margin-top: 14px;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

/* Logo slider */
.logoSlider .swiper-wrapper {
  align-items: center;
}

/* history */
.historyBlock {
  background: #000;
}

.historyBlock__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.historyBlock__left {
  padding: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.historyBlock__headline {
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.historyBlock__media {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.historyBlock__img,
.historyBlock__video {
  width: 100%;
  height: auto;
  display: block;
}
.historyBlock__mediaLink {
	display: block;
	text-decoration: none;
	color: inherit;
}
.historyBlock__overlay {
  position: absolute;
  left: -45px;
  bottom: -25px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(28px, 3vw + 12px, 56px);
  line-height: .95;
  z-index: 2;
}

.historyBlock__right {
  display: none;
}

.historyBlock__imgBig {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* footer */
.footer {
  padding: 70px 0;
  background: #000;
}

.footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .widget_text {
  width: 100%;
  padding: 0 10px;
}

.footer .textwidget p {
  font-size: 14px;
  margin: 0 0 14px;
  color: #fff;
}

.footer #text-2 p:first-child {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer #text-2 a[href^="mailto:"],
.footer #text-2 a[href^="tel:"] {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  color: #fff;
}

.footer #text-2 .column{
 margin-bottom: 22px;
}

.footer .social-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}

.footer .social-link img {
  width: 16px;
  height: 16px;
  display: block;
}

.footer .scrolltotop {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
  color: #fff;
}

.footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0;
  color: #fff;
}

.footer .footer-menu li {
  position: relative;
  gap: 0;
}

.footer .footer-menu a {
  font-size: 14px;
  text-decoration: underline;
  color: #fff;
}

.footer .footer-menu a:hover {
  text-decoration: underline;
}

.footer-cols {
  position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
}

.footer-col > p:first-child{
  font-weight: 700;
}

.footer-col--logo {
    display: flex;
    align-items: flex-end;
    flex: 0 0 auto;
}

.footer-location {
    font-size: 16px;
    margin: 0 0 12px;
}

.footer-newsletter {
    display: block;
    font-size: 12px;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 14px;
}

.footer-newsletter:hover {
    opacity: 0.7;
}

.footer-logo-img {
    max-width: 120px!important;
    height: auto;
    display: block;
}

.socials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.socials__item {
    display: flex;
}

.socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #000 !important;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.socials__link:hover {
    background: #e0e0e0;
}

.paymentIcons {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.paymentIcons img {
  height: 30px;
  width: auto;
  display: block;
  filter: grayscale(1);
}

/* project block */
.project-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.project-hero__image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.project-hero__content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 250px;
}

.project-hero__title {
    margin: 0 0 28px;
    color: #fff;
    font-size: 28px;
    line-height: .92;
    font-weight: 900;
}

.project-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    padding: 12px 18px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

@media (min-width: 960px) {
  .project-hero__content{
    max-width: 570px;
  }

    .project-hero,
    .project-hero__image {
        min-height: 520px;
    }

    .project-hero__title {
        font-size: 64px;
    }
    .footer #text-2 .column {
      flex-direction: row;
      gap: 40px;
  }
  .footer .footer-menu{
    display: flex;
    gap: 20px;
  }
  .footer .footer-menu li{
    display: inline-block;
  }
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
.page-id-371{
  background: #000;
}
.fcBanner {
	position: relative;
	overflow: hidden;
}

.fcBanner:before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	z-index: 1;
	pointer-events: none;
}

.fcBanner__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
}

.page-id-23 .fcBanner__img {
	object-position: top;
}

.fcBanner__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	z-index: 2;
	margin-bottom: 20px;
	will-change: transform;
}

.fcBanner__content {
	color: #fff;
	max-width: 510px;
	will-change: transform;
}

.fcBanner__title {
	margin: 0;
}

.fcBanner__text p {
	font-size: 16px;
}

.fcBanner__text p:last-child {
	margin-bottom: 0;
}

.fcBanner__text--desktop {
	display: none;
}

.fcBanner__text--mobile {
	display: block;
	color: #000;
}

.fcBanner__mobileTextWrap {
	display: block;
	padding: 24px 10px;
}


/* custom slider */
.customCasesBlock {
	padding: 0 0 80px 0;
	overflow: hidden;
}

.customCases {
	position: relative;
	width: 100%;
	--gap: 12px;
	--case-slide-width: 220px;
	--case-slide-width-hover: 286px;
	--case-card-height: 320px;
	--case-card-height-hover: 430px;
	--case-text-panel-height-hover: [that height];
}

.customCases__viewport {
	overflow: hidden;
	width: 100%;
}

.customCases__track {
	display: flex;
	gap: var(--gap);
	will-change: transform;
	transition: transform .45s ease;
	align-items: end;
	overflow: visible;
}

.customCases__slide {
	position: relative;
	flex: 0 0 var(--case-slide-width);
	transition: flex-basis .35s ease, z-index .35s ease;
	z-index: 1;
	overflow: visible;
}

.customCases__slide.is-hovered {
	flex-basis: var(--case-slide-width-hover);
	z-index: 30;
}

.customCases__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: var(--case-card-height);
	transition: height .35s ease;
	overflow: hidden;
	background: #fff;
}

.customCases__slide.is-hovered .customCases__card {
	height: var(--case-card-height-hover);
}

.customCases__textPanel {
	height: 0;
	overflow: hidden;
	background: #fff;
	flex: 0 0 auto;
	transition: height .35s ease;
}

.customCases__slide.is-hovered .customCases__textPanel {
	height: var(--case-text-panel-height-hover);
}

.customCases__textPanelInner {
  height: 100%;
      display: flex;
    flex-direction: column;
    justify-content: flex-end;
	padding: 10px;
	opacity: 0;
	transform: translateY(8px);
transition:
		opacity .18s ease .32s,
		transform .18s ease .32s;
}

.customCases__slide.is-hovered .customCases__textPanelInner {
	opacity: 1;
	transform: translateY(0);
}

.customCases__imagePanel {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
  border: none;
  background: none;
}

.customCases__imagePanel img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.customCases__title {
	position: absolute;
	left: 18px;
	top: 18px;
	right: 18px;
	color: #fff;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
	opacity: 1;
	visibility: visible;
	transition: opacity .18s ease, visibility .18s ease;
	z-index: 2;
}

.customCases__slide.is-hovered .customCases__title {
	opacity: 0;
	visibility: hidden;
}

.customCases__hoverTitle {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: .95;
	font-weight: 700;
	color: #000;
}

.customCases__hoverText {
	color: #000;
  margin-bottom: 20px;
}

.customCases__hoverText p {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
}

.servicesSlider .customCases__textPanel{
  background: #000;
}
.servicesSlider .customCases__hoverText p,
.servicesSlider .customCases__hoverTitle{
  color: #fff;
}


.customCases__btn {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #000;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	z-index: 3;

	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity .18s ease .38s,
		transform .18s ease .38s,
		visibility 0s linear .38s;
}

.customCases__slide.is-hovered .customCases__btn {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.customCases__bullets {
	display: none;
	gap: 12px;
	margin-top: 36px;
	justify-content: center;
	align-items: center;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 8px 6px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.customCases__bullets::-webkit-scrollbar {
	display: none;
}

.customCases__bullet,
.imageText__pagination .swiper-pagination-bullet {
	flex: 0 0 auto;
	width: 11px;
	height: 11px;
	border: 1px solid #000;
	border-radius: 50%;
	background: transparent;
	padding: 0;
	cursor: pointer;
	box-sizing: border-box;
	opacity: 1;
}

.customCases__bullet.is-active,
.imageText__pagination .swiper-pagination-bullet-active {
	background: #000;
}

.customCasesBlock.black .customCases__bullet {
	border-color: #fff;
	background: transparent;
}

.customCasesBlock.black .customCases__bullet.is-active {
	background: #fff;
}

@media only screen and (min-width: 768px) {
	.customCases {
		--case-slide-width: 220px;
		--case-slide-width-hover: 286px;
		--case-card-height: 320px;
		--case-card-height-hover: 500px;
	}

	.customCases__hoverTitle {
		font-size: 34px;
	}

	.customCases__hoverText {
		font-size: 15px;
		line-height: 1.32;
	}
  .historyBlock__right {
    display: block;
    position: relative;
    height: 100%;
  }
}

@media only screen and (min-width: 1200px) {
	.customCases__hoverTitle {
		font-size: 38px;
	}
}

/* popup */
.casePopup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.casePopup.is-open {
  display: block;
}

.casePopup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.casePopup__dialog {
  position: relative;
  max-height: 90vh;
  margin: 5vh auto 0;
  background: #fff;
  overflow: auto;
  padding-top: 50px;
}

.casePopup__inner {
  padding: 0 0 20px;
}

.casePopup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: none;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.casePopup__headingRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

.casePopup__title {
  width: 100%;
  margin: 0;
  font-size: 42px;
  line-height: .95;
  padding-left: 20px;
  letter-spacing: -0.03em;
}

.casePopup__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.casePopup__metaItem {
  min-width: 110px;
}

.casePopup__metaLabel {
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.casePopup__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.casePopup__content {
  padding: 0 20px;
  height: 100%;
}

.casePopup__text {
    scrollbar-width: auto;
}

.casePopup__text::-webkit-scrollbar {
    width: 12px;
}

.casePopup__text::-webkit-scrollbar-track {
    background: transparent;
}

.casePopup__text::-webkit-scrollbar-thumb {
    background: transparent;
}

.casePopup__text::-webkit-scrollbar-button:single-button {
    display: block;
    height: 18px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}

.casePopup__text::-webkit-scrollbar-button:single-button:vertical:decrement {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 6l3-3 3 3' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.casePopup__text::-webkit-scrollbar-button:single-button:vertical:increment {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 4l3 3 3-3' fill='none' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.casePopup__text p {
  margin: 0 0 18px;
}

.case_wrapper{
  margin: 20px auto!important;
}

.casePopup__bigImage img {
  display: block;
  width: 100%;
  height: auto;
}

.casePopup__galleryWrap {
  margin-top: 10px;
}

.casePopup__galleryStatic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.casePopup__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
}

.casePopup__gallery.swiper {
  overflow: hidden;
}

.casePopup__gallery .swiper-slide {
  width: auto;
}

body.case-popup-open {
  overflow: hidden;
}

.case_wrapper__certificatesBlock{
  margin-top: 20px;
}

.case_wrapper__certificatesHeadline{
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.case_wrapper__certificates {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
  align-items: center;
}

.case_wrapper__certificate {
    display: block;
    width: auto;
    height: auto;
    max-height: 50px;
    margin: 0 auto;
}

/* statement */
.statementRow__grid {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  gap: 20px;
}

.statementRow__item {
  font-size: clamp(24px, 7vw, 116px);
  line-height: .9;
  font-weight: 700;
  text-align: center;
}

/* logo list */
.brandsLinks {
  background: #000;
  color: #fff;
}

.brandsLinks .wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.brandsLinks__bar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brandsLinks__headline {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.brandsLinks__toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.brandsLinks__toggle:before,
.brandsLinks__toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.brandsLinks__toggle:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.brandsLinks__toggle.is-open:after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.brandsLinks__panel{
	display: none;
	padding-top: 40px;
}

.brandsLinks__panel.is-open{
	display: block;
}

.brandsLinks__groups{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 40px;
}

.brandsLinks__group{
	min-width: 0;
}

.brandsLinks__letter{
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

.brandsLinks__items{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.brandsLinks__item{
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 1.25;
	text-decoration: none;
} 

.brandsLinks__item:hover{
	text-decoration: underline;
}

.brandsLinks__item--button {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.brandsLinks__item--button:hover {
	text-decoration: underline;
}

/* logos grid */
.brandLogos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  align-items: center;
}

.brandLogos__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brandLogos__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.brandLogos__link img {
  display: block;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

/* 3 columns */
.threeColumns {
  background: #000;
  color: #fff;
  padding: 40px 0;
}

.threeColumns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.threeColumns__item {
  color: #fff;
}

.threeColumns__headline {
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .95;
  margin: 0 0 40px;
  font-weight: 700;
}

.threeColumns__text,
.threeColumns__text p,
.threeColumns__text a,
.threeColumns__text strong {
  color: #fff;
}

.threeColumns__text p {
  margin: 0 0 14px;
}

.threeColumns__text p:last-child {
  margin-bottom: 0;
}

.threeColumns__text a {
  text-decoration: none;
}

.threeColumns__text a:hover {
  text-decoration: underline;
}

/* team */
.teamGrid__headline {
  margin-bottom: 40px;
}

.teamGrid__grid {
  display: grid;
grid-template-columns: repeat(2, 1fr);
  gap: 40px 12px;
}

.teamGrid__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.teamGrid__role {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.teamGrid__imageWrap {
  margin-bottom: 16px;
  margin-top: auto;
}

.teamGrid__image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.teamGrid__name {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
}

.teamGrid__line,
.teamGrid__city {
  margin-bottom: 6px;
}

.teamGrid__line a {
  text-decoration: none;
}

.teamGrid__line a:hover {
  text-decoration: underline;
}

.teamGrid__city {
  margin-top: 20px;
}

/* contact */
.contactSection {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

.contactSection__headline {
  margin-bottom: 40px;
  max-width: 100%;
}

.contactSection__form {
  color: #fff;
  max-width: 800px;
}

.contactForm {
  color: #fff;
}

.contactForm__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.contactForm__submit p,
.contactForm__field p {
  margin: 0;
}

.contactForm__field label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.contactForm__field input,
.contactForm__field textarea {
  width: 100%;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: none;
  border-radius: 0;
}

.contactForm__field textarea {
  height: 160px;
  resize: vertical;
}

.contactForm__submit {
  margin-top: 16px;
  text-align: right;
}

.contactForm__submit input[type="submit"] {
  min-width: 140px;
  height: 39px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s linear;
}

.contactForm__submit input[type="submit"]:hover {
  background: #fff;
  color: #000;
}

.contactForm .wpcf7-spinner {
  margin-left: 10px;
  position: absolute;
  bottom: -15px;
  right: 0px;
}

/* timeline history */
.timelineHistory {
  background: #000;
  color: #fff;
  padding: 60px 0;
}

.timelineHistory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.timelineHistory__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: flex-start;
}

.timelineHistory__year {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .45);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  transition: .25s ease;
}

.timelineHistory__year:hover {
  color: rgba(255, 255, 255, .75);
}

.timelineHistory__year.is-active {
  color: #fff;
  transform: scale(1.2);
}

.timelineHistory__content {
  min-width: 0;
}

.timelineHistory__pane {
  display: none;
}

.timelineHistory__pane.is-active {
  display: block;
}

.timelineHistory__top {
  margin-bottom: 24px;
}

.timelineHistory__yearBig {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .95;
  font-weight: 700;
}

.timelineHistory__headline {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  font-weight: 700;
  margin: 0;
  max-width: 520px;
}

.timelineHistory__text {
  max-width: 540px;
  margin-bottom: 28px;
}

.timelineHistory__text,
.timelineHistory__text p {
  color: #fff;
}

.timelineHistory__text p {
  margin: 0 0 18px;
}

.timelineHistory__text p:last-child {
  margin-bottom: 0;
}

.timelineHistory__imageWrap {
  max-width: 100%;
}

.timelineHistory__image {
  display: block;
  width: 100%;
  height: auto;
}

/* Image text */
.imageText {
	overflow-x: hidden;
}

.imageText .wrapper {
	padding: 0;
}

.imageText__grid {
	display: flex;
	flex-direction: column;
}

.imageText__content {
	order: 1;
	width: 100%;
	margin-bottom: 40px;
}

.imageText__media {
	display: none;
}

.imageText__img {
	display: block;
	width: 100%;
	height: 100%;
  object-fit: cover;
}

.imageText__wysiwyg {
	padding: 0 10px;
}

.imageText__wysiwyg h2 {
	margin-top: 0;
	margin-bottom: 10px;
}

.imageText__wysiwyg > *:first-child {
	margin-top: 0;
}

.imageText__wysiwyg > *:last-child {
	margin-bottom: 0;
}

.imageText__contentImage {
	display: none;
}

.imageText__contentImg {
	display: block;
	width: 100%;
	height: auto;
}

.imageText__buttonWrap {
	padding: 0 10px;
	margin-top: 24px;
}

.imageText__mobileGallery {
	margin-top: 30px;
	padding: 0 10px;
}

.imageText__slider {
	overflow: visible;
}

.imageText__slideImg {
	display: block;
	width: 100%;
	height: auto;
}

.imageText__pagination {
	position: static;
	margin-top: 20px;
	line-height: 0;
}

/* images row*/
.imageRow__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.imageRow__item {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageRow__img {
  display: block;
  max-height: 180px;
  object-fit: contain;
}
.imageRow--hideMobile {
	display: none;
}
/*------------------------------------*\
    Woocommerce
\*------------------------------------*/
.categoryHero {
  margin: 40px 0;
}

.categoryHero__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product,
.archivePattern__products li.product,
.archivePattern__fallback li.product,
ul.products li.product{
  padding: 10px;
	transition: box-shadow .25s ease, transform .25s ease;
}

.archivePattern__products li.product:hover,
.archivePattern__fallback li.product:hover,
ul.products li.product:hover{
	box-shadow: 0 12px 30px rgba(0,0,0,.12);
	transform: translateY(-3px);
}

.categoryHero__content {
  order: 1;
  width: 100%;
  min-width: 0;
}

.categoryHero__imageWrap {
  order: 2;
  width: 100%;
  min-width: 0;
}

.categoryHero__image {
  display: block;
  width: 100%;
  height: auto;
}

.categoryHero .page-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: clamp(21px, 5vw, 68px);
}

.categoryHero .term-description p:last-child {
  margin-bottom: 0;
}

.categoryHero__children {
  margin-top: 30px;
}

.categoryHero__childrenList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.categoryHero__childrenList li {
  margin-bottom: 6px;
}

.categoryHero__childrenList a {
  text-decoration: none;
}

.categoryHero__childrenList a:hover {
  text-decoration: underline;
}

.categoryHero__childrenList .current-cat a {
  font-weight: 700;
  text-decoration: underline;
}

.products .product .woocommerce-loop-product__title {
  margin-bottom: 8px;
}

.productLoop__excerpt {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.35;
}

.productLoop__excerpt p {
  margin: 0;
}

.products .product .price {
  display: block;
  margin-top: 10px;
}

.wts-price-container {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}
.woocommerce ul.products li.product .price,
.wts-price-container .price,
.wts-price-incl .woocommerce-Price-amount {
    font-weight: 500 !important;
    color: #000000 !important;
    font-size: 16px !important;
    margin: 0;
    text-transform: initial;
    margin-top: auto;
    padding: 0;
}

/* Product slider — aligned prices */
.up-sells.products .swiper-wrapper,
.related.products .swiper-wrapper {
    align-items: stretch;
}

.up-sells.products .swiper-slide,
.related.products .swiper-slide {
    height: auto;
}

.up-sells.products .woocommerce-loop-product__link,
.related.products .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.up-sells.products .price-title-row,
.related.products .price-title-row {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.up-sells.products .price-title-row .price,
.related.products .price-title-row .price {
    margin-top: auto;
    padding-top: 8px;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link{
  display: flex;
}

/* loop */
.archivePattern {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
  clear: both;
}

.archivePattern__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.archivePattern__block.archivePattern__block--image-right .archivePattern__promo {
  order: 1;
}

.archivePattern__block.archivePattern__block--image-right .archivePattern__products {
  order: 2;
}

.archivePattern__promo {
	position: relative;
	min-width: 0;
	overflow: hidden;
}

.archivePattern__promo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.archivePattern__promoOverlay{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px;
	color: #fff;
}

.archivePattern__promoOverlay.addOverlay{
	background: rgba(0,0,0,.38);
	backdrop-filter: blur(2px);
}

.archivePattern__promoLabel{
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: rgba(255,255,255,.9);
}

.archivePattern__promoHeadline{
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 56px);
	line-height: .95;
	font-weight: 700;
	color: #fff;
}

.archivePattern__promoText{
	margin-bottom: 14px;
	color: #fff;
}

.archivePattern__promoText,
.archivePattern__promoText p{
	font-size: 14px;
	line-height: 1.35;
}

.archivePattern__promoText p{
	margin: 0;
}

.archivePattern__promoBtn{
	min-width: 0;
}

.archivePattern__products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  min-width: 0;
}

.archivePattern__products li.product {
  width: 100%;
  margin: 0 !important;
  float: none !important;
  min-width: 0;
  height: max-content;
}

.archivePattern__products--six {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archivePattern__products--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.archivePattern__block--no-image .archivePattern__promo {
  display: none;
}

.archivePattern__products img {
  width: 100%;
  height: auto;
  display: block;
}
.archivePattern__fallback{
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	gap: 24px;
  clear: both;
}

.archivePattern__fallback li.product{
	width: 100%;
	margin: 0 !important;
	float: none !important;
	min-width: 0;
}

.archivePattern__fallback--5{
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Archive product grid */
ul.archivePattern__fallback li.product {
    display: flex;
    flex-direction: column;
}

ul.archivePattern__fallback li.product .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    flex: 1;
}

ul.archivePattern__fallback li.product .price {
    margin-top: auto;
    padding-top: 8px;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */

section{
  clear: both;
}

.single-product .summary .product_title{
    margin: 0 0 20px;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1;
}

.single-product .summary .price{
	margin: 0 0 24px !important;
}

/* TOP PRICE — hide, only shown in add-to-cart area */
/*
.product .summary > .price,
.product-layout__summary > .price,
.product-layout__summary > p.price {
*/
.product-type-variable .product-layout__summary > p.price {
    display: none !important;
}

/* SHORT DESCRIPTION */
.single-product .woocommerce-product-details__short-description{
	margin-bottom: 30px;
}

.single-product .woocommerce-product-details__short-description p{
	margin: 0;
	font-size: 18px;
	line-height: 1.45;
}

/* VARIATIONS TABLE */
.single-product .variations{
	margin-bottom: 0!important;
	border-collapse: collapse;
  width: 99%!important;
}

.single-product .variations tbody,
.single-product .variations tr,
.single-product .variations td,
.single-product .variations th{
	display: block;
	width: 100%;
}

.single-product .variations th.label{
	width: 100%;
	padding: 0 0 10px;
}

.single-product .variations th.label label{
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.single-product .variations td.value{
	width: 100%;
	padding: 0;
}

.single-product .variations select{
	width: 99%!important;
	height: 52px;
	padding: 0 48px 0 16px;
	border: 1px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-size: 16px;
	line-height: 1;
	box-shadow: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.single-product .reset_variations{
	display: inline-block;
	margin-top: 10px;
	margin-left: 0;
	font-size: 14px;
	color: #000;
	text-decoration: underline;
}

.single-product .variations select:focus{
	outline: none;
	box-shadow: none;
}

.single-product .reset_variations{
	margin-left: 14px;
	font-size: 14px;
	color: #000;
	text-decoration: underline;
}

/* HIDE DUPLICATED VARIATION PRICE / DESC / AVAILABILITY */
.single-product .woocommerce-variation-price{ display: none !important; }
.single-product .woocommerce-variation-description{ display: none !important; }


/* QTY + BUTTON */
.single-product .variations_button{
	display: flex;
	align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.woocommerce div.product form.cart .button{
  min-width: 50%;
}

.single-product .quantity .qty{
	width: 72px;
	height: 52px;
	border: 1px solid #000;
	padding: 0 10px;
	font-size: 18px;
	text-align: center;
}

.single-product .single_add_to_cart_button{
	height: 52px;
	padding: 0 28px !important;
	border: 1px solid #000 !important;
	background: #000 !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 50px !important;
	text-transform: uppercase;
	transition: .2s ease;
}

.single-product .single_add_to_cart_button:hover{
	background: #fff !important;
	color: #000 !important;
}

/* HIDE META */
.single-product .product_meta{ display: none !important; }

/* fix tax plugin */
.wts-price-container{
	opacity: 0;
	transition: opacity .12s ease;
	-webkit-transition: opacity .12s ease;
	-moz-transition: opacity .12s ease;
	-ms-transition: opacity .12s ease;
	-o-transition: opacity .12s ease;
}

html.wts-prices-ready .wts-price-container,
.wts-price-container.is-ready{
	opacity: 1;
}

.wts-price-excl,
.wts-price-incl{
	display: none !important;
}

.wts-price-excl.wts-active,
.wts-price-incl.wts-active{
	display: inline !important;
}

/* CUSTOM PRICE NEXT TO BUY BUTTON */
.woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 16px;
}
.custom-product-price .wts-price-incl .woocommerce-Price-amount,
.custom-product-price {
    flex: 0 0 auto !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #000 !important;
    white-space: nowrap !important;
}

.custom-product-price .price > span:first-child {
    display: none;
}

.custom-product-price .wts-vat-text {
    display: none;
}

.woocommerce div.product form.cart div.quantity{
  display: none !important;
}

/* WooCommerce cart + checkout buttons */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 28px;
	border: 1px solid #000;
	background: #000;
	color: #fff !important;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	text-decoration: none;
	transition: .2s ease;
	cursor: pointer;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover{
	background: #fff;
	color: #000 !important;
}

.wc-block-components-button__text{
	display: flex;
	align-items: center;
	justify-content: center;
}

/* BREADCRUMB */
.woocommerce-breadcrumb{
    margin: 1em 0 !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce-breadcrumb a{
  font-size: 16px;
  font-weight: 300;
  color: #000!important;
}

.breadcrumb-back {
    margin-left: auto;
    order: 999;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{
    padding: 0 28px !important;
    border: 1px solid #000 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
    border-radius: 3px!important;
    text-transform: uppercase;
    transition: .2s ease;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover{
    background: #fff !important;
    color: #000 !important;
}

/* ============================================================
   SINGLE PRODUCT LAYOUT (content-single-product.php)
   ============================================================ */

/* Hide old WooCommerce gallery — removed via PHP hook too */
.woocommerce-product-gallery {
    display: none !important;
}

/* ROW 1: main image + summary */
.product-layout__row1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.product-layout__gallery {
    width: 100%;
}

.product-layout__summary {
    width: 100%;
}

/* ROW 2: description + gallery2 */
.product-layout__row2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    align-items: flex-start;
}

.product-layout__description {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.product-layout__description p {
    margin-bottom: 16px;
}

.product-layout__description p:last-child {
    margin-bottom: 0;
}

.product-layout__gallery2 {
    width: 100%;
}

/* Desktop: gallery 60%, summary 40% — both rows */
@media (min-width: 960px) {
    .product-layout__row1 {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-layout__gallery {
        width: 70%;
        flex-shrink: 0;
    }

    .product-layout__summary {
        flex: 1;
        min-width: 0;
        margin-top: 60px;
    }

    .product-layout__row2 {
        flex-direction: row;
        align-items: flex-start;
    }

    .product-layout__gallery2 {
        width: 70%;
        flex-shrink: 0;
        order: 2;
    }

    .product-layout__description {
        flex: 1;
        min-width: 0;
        order: 1;
    }
}

/* MAIN GALLERY IMAGE */
.product-main-image {
    position: relative;
    overflow: hidden;
}

.product-main-image > a {
    display: block;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Prev / Next arrows on main image */
.product-gallery-prev,
.product-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.product-gallery-prev { left: 12px; }
.product-gallery-next { right: 12px; }

.product-gallery-prev:hover,
.product-gallery-next:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* GALLERY 2 */
.product-gallery2-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.product-gallery2-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery2-next {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0;
}

.gallery2-next:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* THUMBNAILS */
.product-thumbnails {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.product-thumb {
    width: 70px;
    height: 70px;
    padding: 0;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumb.is-active {
    border-color: #000;
}

.product-thumb:hover {
    border-color: #999;
}

/* SUMMARY META */
.product-brand {
    font-size: 12px;
    color: #999;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-designer {
    font-size: 13px;
    color: #666;
    margin: 0 0 80px;
}

.product-layout__summary .product_title.entry-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

@media (min-width: 960px) {
    .product-layout__summary .product_title.entry-title {
        font-size: 28px;
    }
}

/* ============================================================
   SPECIFIKATIONER TOGGLE
   ============================================================ */

.hs-extras-wrap {
    margin-top: 30px;
}

.hs-extras-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 16px;
}

.hs-extras-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.05em;
}

.hs-extras-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.hs-extras-toggle.is-closed .hs-extras-arrow {
    transform: rotate(180deg);
}

table.hs-extras {
    width: 100%;
    border-collapse: collapse;
}

table.hs-extras td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

table.hs-extras td:first-child {
    font-weight: 700;
    width: 40%;
    color: #000;
}

table.hs-extras td:last-child {
    color: #333;
    padding-left: 12px;
    text-align: right;
}

/* ============================================================
   RELATED / UPSELL PRODUCT SLIDERS
   ============================================================ */

.up-sells.products,
.related.products {
    position: relative;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
    overflow: hidden;
}

.up-sells.products h2,
.related.products h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0!important;
    padding: 0!important;
    color: #000;
}

.products-swiper-wrap {
    position: relative;
    overflow: hidden;
}

.products-swiper {
    overflow: hidden;
}

.products-swiper .swiper-wrapper {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
    padding-right: 4px;
    box-sizing: border-box;
}

.products-swiper .swiper-slide:first-child {
    border-left: none;
    padding-left: 0;
}

.products-swiper .swiper-slide a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #000;
    height: 100%;
}

.products-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
    background: #f9f9f9;
}

.products-swiper .productLoop__excerpt {
margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    text-transform: initial;
}

.price-title-row {
    display: flex;
    flex-direction: column;
font-size: 16px !important;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 21px;
    text-transform: uppercase;
}

.woocommerce-loop-product__title,
.products-swiper .woocommerce-loop-product__title {
    font-size: 16px!important;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 21px;
    text-transform: uppercase;
}

.products-swiper .price,
.products-swiper .wts-price-container {
    color: #000;
}

.loop-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    transition: background 0.2s ease;
}

.loop-btn:hover {
    background: #333;
    color: #fff;
}

.products-swiper__prev,
.products-swiper__next {
    color: #000 !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: background 0.2s ease;
    top: 35% !important;
}

.products-swiper__prev:hover,
.products-swiper__next:hover {
    background: #f5f5f5;
}

.products-swiper__prev::after,
.products-swiper__next::after {
    font-size: 14px !important;
    font-weight: 700;
    color: #000;
}

.swiper-button-disabled {
    opacity: 0.3 !important;
}
.single-product .variations th.label {
    display: none !important;
}
.single-product .variations select option[value=""] {
    display: none;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
  font-family: 'MinionPro';
  src: url('fonts/minionpro-regular-webfont.eot');
  src: url('fonts/minionpro-regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/minionpro-regular-webfont.woff2') format('woff2'),
    url('fonts/minionpro-regular-webfont.woff') format('woff'),
    url('fonts/minionpro-regular-webfont.ttf') format('truetype'),
    url('fonts/MinionPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
	font-family: 'Helvetica';
	src: url('fonts/Helvetica-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Helvetica';
	src: url('fonts/Helvetica-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width: 320px) {}

@media only screen and (min-width: 480px) {
  .teamGrid__name {
    font-size: 16px;
  }
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        max-width: 480px;
    }
    .footer-col.footer-col--socials{
      margin-top: 36px;
    }
    .footer-col--logo{
        position: absolute;
        right: -45px;
        bottom: 60px;
        writing-mode: vertical-rl;
        transform: rotate(270deg);
    }
}

@media only screen and (min-width: 768px) {
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
	.fcBanner__title {
		margin: 0 0 20px;
	}

	.fcBanner__text p {
		font-size: clamp(16px, 1.2vw + 12px, 21px);
	}

	.fcBanner__text--desktop {
		display: block;
	}

	.fcBanner__text--mobile {
		display: none;
	}

	.fcBanner__mobileTextWrap {
		display: none;
	}
  .historyBlock__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer .widget_text {
    width: 50%;
  }

  .customCases__card {
    height: 400px;
  }

  .customCases__slide.is-hovered .customCases__card {
    height: 650px;
  }

  .casePopup__headingRow,
  .casePopup__top {
    grid-template-columns: 1fr 1fr;
  }

  .casePopup__title,
  .casePopup__content {
    padding-left: 30px;
    padding-right: 0;
  }

  .casePopup__meta {
    padding: 0;
  }

  .casePopup__galleryStatic {
    grid-template-columns: repeat(4, 1fr);
  }

  .statementRow__item:nth-child(2) {
    text-align: center;
  }

  .statementRow__item:nth-child(3) {
    text-align: right;
  }

  .brandsLinks__list {
    grid-template-columns: repeat(3, 1fr);
  }

.brandsLinks__groups{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

  .threeColumns {
    padding: 80px 0;
  }

  .threeColumns__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .teamGrid__grid {
    gap: 50px 30px;
  }

  .contactForm__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
  }

  .contactForm__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contactForm__right {
    display: flex;
    flex-direction: column;
  }

  .timelineHistory {
    padding: 80px 0;
  }

  .timelineHistory__grid {
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
  }

  .timelineHistory__nav {
    flex-direction: column;
    gap: 14px;
  }

  .timelineHistory__top {
    grid-template-columns: 180px 1fr;
    gap: 26px;
    margin-bottom: 30px;
  }

  .timelineHistory__imageWrap {
    max-width: 520px;
  }

	.imageText .wrapper {
		padding: 0 20px;
	}

	.imageText__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 40px;
	}

	.imageText__content {
		margin-bottom: 0;
	}

	.imageText__media {
		display: block;
		width: 100%;
		padding: 0;
	}

	.imageText__wysiwyg {
		padding: 0;
	}

	.imageText__contentImage {
		display: block;
		margin-top: 30px;
	}

	.imageText__buttonWrap {
		padding: 0;
	}

	.imageText__mobileGallery {
		display: none;
	}

	.imageText--reverse .imageText__content {
		order: 1;
	}

	.imageText--reverse .imageText__media {
		order: 2;
	}
.imageRow--hideMobile {
		display: block;
	}
  .imageRow__grid {
    flex-wrap: nowrap;
  }

  .imageRow__item {
    flex: 1 1 0;
  }

  .categoryHero__grid {
    flex-direction: row;
    align-items: stretch;
  }

  .categoryHero__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }

  .categoryHero__content {
    min-width: 0;
  }

  .categoryHero__imageWrap {
    min-width: 0;
  }

  .categoryHero__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

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

  .archivePattern__block--image-right {
    grid-template-columns: 1fr 1fr;
  }

  .archivePattern__products--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .archivePattern__products--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archivePattern__block.archivePattern__block--image-right .archivePattern__promo {
    order: 2;
  }

  .archivePattern__block.archivePattern__block--image-right .archivePattern__products {
    order: 1;
  }
  	.archivePattern__fallback--4{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
   .bannerHero__textInner {
        font-size: var(--banner-font-tablet, 36px);
    }
    .btnMain.servicesGrid__btn {
      position: absolute;
      top: calc(100% - 36px);
      right: 10px;
      margin: 0;
    }
    .btnMain.serviceTile__label {
      left: 20px;
      right: auto;
      bottom: 20px;
      min-width: 250px;
      font-size: 16px;
      padding: 10px 30px;
    }
    .fcBanner__overlay {
      align-items: center;
      margin: 0 auto;
  }
  .woocommerce div.product div.images{
    width: 58%;
  }

  .woocommerce div.product div.summary{
    width: 38%;
  }
}

@media only screen and (min-width: 960px) {
  .header{
    padding: 30px 0;
  }
  #mmenu_button {
    display: none;
  }

  .headerRight {
    width: 100%;
    margin-left: 10px;
  }

  .headerRight .nav {
    display: block;
  }
  .png{
    padding: 80px 0;
  }
  .mrg {
    margin: 80px 0;
  }

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

  .caseBlock {
    padding: 80px 0;
  }

  .caseBlock .mainHeadline {
    margin-bottom: 80px;
  }

  .historyBlock__overlay {
    left: -70px;
    bottom: -45px;
  }

  .footer #text-2 p:first-child {
    font-size: 48px;
    line-height: 46px;
    max-width: 355px;
        margin-bottom: 60px;
  }
.footer #text-2 a[href^="mailto:"], .footer #text-2 a[href^="tel:"]{
  font-size: 21px;
}
.footer #text-2 .column{
  margin-bottom: 60px;
}
.footer-cols{
  margin-top: 80px;
}
  .casePopup__dialog {
    padding-top: 100px;
  }

  .casePopup__title {
    font-size: 60px;
  }
  .case_wrapper,
  .casePopup__title,
  .casePopup__text {
    max-width: 500px;
    margin: 0 auto;
    padding-left: 0;
  }

  .casePopup__content {
    padding-left: 0;
  }

  .casePopup__metaLabel {
    font-size: 21px;
  }

  .casePopup__metaValue {
    font-size: 18px;
  }

  .brandsLinks .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brandsLinks__headline {
    font-size: 24px;
  }

  .brandsLinks__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .brandLogos__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 90px 50px;
  }

  .brandLogos__link img {
    max-height: 70px;
  }

  .threeColumns__grid {
    gap: 70px;
  }

  .teamGrid__headline {
    margin-bottom: 70px;
  }

  .teamGrid__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 42px;
  }

  .timelineHistory__grid {
    grid-template-columns: 200px 1fr;
    gap: 55px;
  }

  .timelineHistory__imageWrap {
    max-width: 620px;
  }
  .customCasesBlock {
    padding: 80px 0;
  }
  .casesPage{
  padding-top: 100px;
}
    .footer-cols {
        margin-left: auto;
    }
}

@media only screen and (min-width: 1024px) {
  .bannerHero__textInner {
        font-size: var(--banner-font-desktop, 48px);
    }
    .nav ul>li>a {
      font-size: 14px;
      padding: 32px 6px;
    }
}
@media only screen and (min-width: 1140px) {
  .headerRight{
    margin-left: 40px;
  }
  .nav ul>li>a {
    font-size: 15px;
    padding: 32px 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .nav ul>li>a {
    font-size: 16px;
    padding: 32px 12px;
  }
}

@media only screen and (min-width: 1400px) {
  .historyBlock__overlay {
    left: -90px;
  }
      .footer #text-2 p:first-child {
        margin-bottom: 80px;
    }
    .footer #text-2 .column {
      margin-bottom: 80px;
  }
  .footer-cols{
    margin-top: 120px;
  }
}


@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " ("attr(href) ")";
  }

  abbr[title]:after {
    content: " ("attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* CUSTOM */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border:none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  display: none !important;
}