/*
Theme name: Limtek
Description: Custom Theme
Version: 9.0.1
*/

/* 
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component 
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  --clr-primary400: #de373c; 
  --clr-primary500:  #d62127;
  --clr-secondary400: #2c8ac0;
  --clr-secondary500: #1b7ab0;
  --clr-greyscale100: #FAFAFA;
  --clr-greyscale200: #E5E5E5;
  --clr-greyscale300: #CCCCCC;
  --clr-greyscale400: #B3B3B3;
  --clr-greyscale500: #999999;
  --clr-greyscale600: #7F7F7F;
  --clr-greyscale700: #666666;
  --clr-greyscale800: #4C4C4C;
  --clr-greyscale900: #252525;

  --clr-text: var(--clr-greyscale900);
  --clr-text-light: var(--clr-greyscale600);
  --clr-text-reverse: white;

  /* heights */
  --height-header: 140px;
  --height-header-slim: 100px;
  --height-adminbar: 0px;
  /* widths */
  --width-content: 1400px;
  --width-gutter: 60px;
  /* spacing */
  --b-space: 120px;
  --b-space-lg: 170px;
  --b-space-sm: 74px;
  /* font family */
  --ff-body: "Poppins", sans-serif;
  --ff-heading: var(--ff-body);
  /* font sizes */
  --fs-h1: 5rem;
  --fs-h2: 2.75rem;
  --fs-h3: 2.125rem;
  --fs-h4: 1.8rem;
  --fs-h5: 1.5rem;
  --fs-p: 1rem;
  --fs-p-lg: 1.125rem;
  --fs-p-sm: .875rem;
}

.admin-bar {
  --height-adminbar: 32px;
}


@media screen and (max-width: 980px) {

  :root {
      --width-gutter: 3.75rem;
  }

}

@media screen and (max-width:600px) {
  :root {

      --height-header: 100px;
      --height-header-slim: var(--height-header);

      --width-gutter: 2rem;

      /* font sizes */
      --fs-h1: 3rem;
      --fs-h2: 2rem;
      --fs-h3: 1.5rem;
      --fs-h4: 1.25rem;
      --fs-h5: 1rem;

      /* spacing */
      --b-space: 60px;
      --b-space-sm: 42px;
      --b-space-lg: 76px;
  }
} 

/* utilities */

.u-wc {
  width:100%;
  max-width: var(--width-content);
  padding: 0 var(--width-gutter);
  margin:0 auto;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
}

.u-wc--full {
  max-width: 100%;
}

.u-wc--narrow {
  max-width: 830px;
}

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

.u-text-reverse {
  color: var(--clr-text-reverse);
}


.u-vh {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: white;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-p);
  margin: 0;
  color: var(--clr-text);
  position: relative;
  line-height: 1.6;
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
}

.u-primary500-color {
  color: var(--clr-primary500);
}

.u-white-color {
  color: #ffffff;
}

.u-greyscale600-color {
  color: var(--clr-greyscale600);
}

.u-black-background-color {
  background: black;
  color: white;
}

.u-primary500-background-color {
  background: var(--clr-primary500);
  color: white;
}

.u-greyscale200-background-color {
  background-color: var(--clr-greyscale200);
}

b, strong {
  font-weight: 600;
}

a {
  outline: none;
  text-decoration: none;
  transition: .3s color;
}

a:focus {
  outline: none;
}

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


.content-wrap {
  overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
  margin:0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  text-decoration: none;
}

h1 {
  font-weight: 600;
  font-size: var(--fs-h1);
  line-height: 1.2;
  margin: 0 0 .625rem 0;
  letter-spacing: -.01em;
}

h1 + h2 {
  margin-top: 0;
}

h2 {
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin: 3rem 0 1rem;
  letter-spacing: -.03em;
}

h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.3;
  font-weight: 500;
  margin: 3rem 0 .75rem;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  font-family: var(--ff-body);
  line-height: 1.3;
  margin: 1.5rem 0 .75rem;
}

h5 {
  font-size: var(--fs-h5);
  font-family: var(--ff-body);
  line-height: 1.2;
  margin: 1.5rem 0 .75rem;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  h2, h3  {
    margin-top: 2rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

.has-lg-font-size {
  font-size: var(--fs-p-lg);
}

.has-primary-500-background-color {
  --clr-text: white;
  color: var(--clr-text);
  background-color: var(--clr-primary500);
}


.has-black-background-color {
  background-color: black;
  color: var(--clr-text-reverse);
}


.has-white-background-color {
  background-color: white;
  color: var(--clr-text);
}

.has-grey-900-background-color {
  background-color: var(--clr-greyscale900);
  color: var(--clr-text-reverse);
}

.has-grey-800-background-color {
  background-color: var(--clr-greyscale800);
  color: var(--clr-text-reverse);
}

.has-grey-700-background-color {
  background-color: var(--clr-greyscale700);
  color: var(--clr-text-reverse);
}

.has-grey-600-background-color {
  background-color: var(--clr-greyscale600);
  color: var(--clr-text-reverse);
}

.has-grey-500-background-color {
  background-color: var(--clr-greyscale500);
  color: var(--clr-text-reverse);
}

.has-grey-400-background-color {
  background-color: var(--clr-greyscale400);
  color: var(--clr-text);
}

.has-grey-300-background-color {
  background-color: var(--clr-greyscale300);
  color: var(--clr-text);
}

.has-grey-200-background-color {
  background-color: var(--clr-greyscale200);
  color: var(--clr-text);
}

.has-grey-100-background-color {
  background-color: var(--clr-greyscale100);
  color: var(--clr-text);
}

.has-primary-500-color {
  color: var(--clr-primary500);
}

.has-white-color {
  color: white;
}

.has-grey-100-color {
  color: var(--clr-greyscale100);
}

.has-grey-200-color {
  color: var(--clr-greyscale200);
}

.has-grey-300-color {
  color: var(--clr-greyscale300);
}

.has-grey-400-color {
  color: var(--clr-greyscale400);
}

.has-grey-500-color {
  color: var(--clr-greyscale500);
}

.has-grey-600-color {
  color: var(--clr-greyscale600);
}

.has-grey-700-color {
  color: var(--clr-greyscale500);
}

.has-grey-800-color {
  color: var(--clr-greyscale800);
}

.has-grey-900-color {
  color: var(--clr-greyscale900);
}

.c-mainHeader {
  height: var(--height-header);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(0,0,0,0);
  transition: .3s background, .3s height;
}

/* 
.is-scrolled .c-mainHeader {
  background: rgba(0,0,0,.6);
  height: var(--height-header-slim);
} */

.c-mainHeader .u-wc {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: calc(var(--width-gutter) + 80px);
}

.c-mainHeader__tel {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: .05em;
  margin-left: auto;
}

@media screen and (max-width: 780px) {

  .c-mainHeader__plant {
      display: none !important;
  }

  .c-mainHeader__tel { 
      display: none;
  }
}

@media screen and (max-width: 600px) {
  .c-mainHeader__logo {
      max-width: 140px;
  }
}


.c-section {
  padding: var(--b-space) 0;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.content-wrap .c-section:first-child {
  padding-top: calc(var(--b-space) + var(--height-header));
}

.content-wrap .c-section--lg:first-child {
  padding-top: calc(var(--b-space-lg) + var(--height-header));
}

.c-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.75);
}

.c-section .u-wc {
  position: relative;
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-portfolioBtn {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  width: 45px;
  color: white;
  font-size: .875rem;
  letter-spacing: .02rem;
  transform: translateY(-50%);
  transition: .3s background;
}

.c-portfolioBtn:hover {
  background: var(--clr-greyscale900);
}

.c-portfolioBtn span {
  padding: 1.5rem 0;
  display: block;
  writing-mode: vertical-rl;
}

.c-portfolioBtn span span {
  color: var(--clr-primary500);
  display: inline;
  padding: 4px 0 0 0;
}

@media screen and (max-width: 600px) {
  .c-portfolioBtn {
      display: none;
  }
}

.c-scrollBtn {
  background: linear-gradient(to top right, var(--clr-primary500) 50%, transparent 50%);
  width: 290px;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-scrollBtn span {
  border: 2px solid white;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--fs-p-sm);
  transition: .3s background, .3s border, .3s color;
}

.c-scrollBtn span:hover {
    background: black;
    color: white;
    border: 2px solid black;
}

@media screen and (max-width: 900px) {
  .c-scrollBtn {
      display: none;
  }
}

.c-hero {
  padding: calc(var(--b-space) + var(--height-header)) 0 0;
  background: url('imgs/hero-bg.jpg') center center / cover;
  color: white;
  position: relative;
}


.c-hero h1 span {
  font-size: 2.5rem;
  vertical-align: middle;
  padding: 0 8px;
}

.c-hero h1 + h2 {
  font-size: 1.9rem;
  max-width: 612px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: .01em;
  line-height: 1.4;
}

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

.c-hero__overview p {
  max-width: 515px;
  margin-inline: auto;
}

.c-hero__slogan {
  font-size: 0;
  width: 165px;
  height: 166px;
  background: url('imgs/circle-logo.png') center center / 165px 166px;
  display: block;
  margin-left: auto;
  margin-top: -48px;
  position: relative;
}

.c-hero__slogan:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('imgs/circle-text.png') no-repeat center center / 165px 166px;
  animation: slowSpin 55s linear infinite;
}


@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.c-hero__actions {
  padding: 60px 0 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.c-hero__actions .c-btns {
  margin-top: 0;
}

@media screen and (max-width:960px) {
  .c-hero__actions {
    justify-content: center;
    padding: 0;
  }

  .c-hero__slogan {
    margin: 32px auto;
  }

  .c-hero {
      padding: calc(var(--b-space) + var(--height-header) - 48px) 0  var(--b-space);
  }
}

@media screen and (max-width:600px) {
  .c-hero__actions {
      flex-direction: column;
  }


  .c-hero h1 + h2 {
    font-size: 1.5rem;
}
}

.c-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-btn {
  background: var(--clr-primary500);
  padding: 1.2rem 2rem;
  letter-spacing: .05em;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  line-height: 1;
  display: block;
  width: max-content;
  transition: .3s background;
}

.c-btn:focus {
  outline: none;
}

.c-btn:hover {
  background: var(--clr-primary400);
}

.c-btn--secondary {
  background: var(--clr-secondary500);
}

.c-btn--secondary:hover {
  background: var(--clr-secondary400);
}

.c-btn--black {
  background: black;
}

.c-btn--black:hover {
  background: var(--clr-greyscale800);
}

.c-btn--full {
  width: 100%;
  text-align: center;
}

@media screen and (max-width:480px) {
  .c-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: .75rem;
  }
  .c-btns .c-btn {
    width: 100%;
    text-align: center;
  }
}

.c-scrollbar {
  position: relative;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #D5D5D5;
}

.c-scrollbar__handle {
  position: absolute;
  height: 100%;
  background-color: var(--clr-primary500);
}

.c-serviceItems {
  padding-left:  calc((100% - var(--width-content) + var(--width-gutter) * 2) / 2);
  padding-right: calc((100% - var(--width-content) + var(--width-gutter) * 2) / 2);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  white-space: nowrap;
  margin-top: 48px;
  padding-bottom: 48px;
  user-select: none;
  min-width: 0;
}

@media screen and (max-width: 1400px) {
  .c-serviceItems {
    padding-left: var(--width-gutter);
    padding-right: var(--width-gutter);
  }
}

@media screen and (max-width:600px) {
  .c-serviceItems {
    margin-top: 32px;
    padding-bottom: 34px;
  }
}

.c-serviceItem {
  position: relative;
  background: black;
  width: 100%;
  flex-grow: 1;
  width: min(530px, 75vw);
  /* max-height: calc(100vh - (var(--b-space) * 2) - 200px); */
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  color: white;
  padding: 3rem 3.5rem;
  flex-direction: column;
  white-space: normal;
}

@media screen and (max-width: 600px) {
  .c-serviceItem {
    width: 300px;
  }
}

.c-serviceItem:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.2);
  transition: .3s background;
}

.c-serviceItem:hover:after {
  background: rgba(0,0,0,.7);
}


.c-serviceItem:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); 
  height: 45%;
}

.c-serviceItem__thumb {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s transform;
}

.c-serviceItem:hover .c-serviceItem__thumb {
  transform: scale(1.1);
}

.c-serviceItem__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  z-index: 3;
  text-align: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.1);
  transition: .3s opacity, .6s transform;
}

.c-serviceItem:hover .c-serviceItem__overlay{
  opacity: 1;
  transform: none;
}


.c-serviceItem__overlay p {
  max-width: 300px;
  margin-inline: auto;
}

.c-serviceItem__title {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: 2.75rem;
  transition: .3s color;
}

.c-serviceItem:hover .c-serviceItem__title {
  color: var(--clr-greyscale600);
}

@media screen and (max-width: 600px) {
  .c-serviceItems {
    gap: 1rem;
  }
  .c-serviceItem__overlay p {
    display: none;
  }
  .c-serviceItem {
    padding: 1.5rem 2rem;
  }
  .c-serviceItem__title {
    font-size: 2rem;
  }
}


@media screen and (max-width: 480px) {
  .c-serviceItem__overlay {
      display: none;
  } 

  .c-serviceItem:before {
      display: none;
  }

  .c-serviceItem__title { 
      margin-top: auto;
  }
}

.c-quoteSection {
  background: url('imgs/tire-img.jpg') no-repeat left center / 170px auto;
}

.c-quote blockquote {
  font-size: var(--fs-h2);
  font-weight: 400;
  margin: 0 0 52px auto;
  max-width: 1040px;
  line-height: 1.4;
  letter-spacing: -.025em;
}

.c-quote blockquote strong {
  text-decoration: underline;
  text-underline-offset: .25em;
  color: var(--clr-primary500);
  font-weight: 400;
}

.c-quote cite {
  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: 160px;
  text-align: right;
}

.c-quote cite h5 {
  font-size: 1.875rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -.025em;
  margin: 0 0 .25rem 0;
}

.c-quote cite h5 span {
  font-size: .8em;
  font-weight: 400;
}

.c-quote cite p {
  font-size: 1rem;
  font-style: normal;
}

@media screen and (max-width: 1400px) {
  .c-quote blockquote {
      margin-left: 200px;
      margin-bottom: 2rem;
  }

  .c-quote cite {
      margin-left: 200px;
      margin-top: 1rem;
      text-align: left;
  }
}

@media screen and (max-width: 900px) {
  .c-quoteSection {
      background-size: 172px auto;
  }
  .c-quote blockquote, .c-quote cite {
      margin-left: 150px;
  }
}

@media screen and (max-width: 800px) {
  .c-quote cite {
    margin-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .c-quoteSection {
      background-position: left var(--b-space);
      background-size: 80px auto;
      background: none;
      padding-bottom: 0;
  }

  .c-quoteSection:after {
    content: '';
    aspect-ratio: 1260 / 268;
    width: 100%;
    background: url('imgs/tire-img-flipped.jpg') center center / cover;
    display: block;
    margin-top: var(--b-space-lg);
  }
  
    .c-quote blockquote {
      margin-left: 0;
  }
  .c-quote cite {
      margin-left: 0;
  }
  .c-quote cite h5 {
      font-size: 1.3rem;
  }
  .c-quote cite p {
      font-size: .875rem;
  }
}

.c-mainFooter {
  background: black;   
  padding: var(--b-space-sm) 0;
}

.c-mainFooter .u-wc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-mainFooter__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-mainFooter__left p {
  margin: 0;
  font-size: .75rem;
  color: #a7a7a7;
}

.c-mainFooter__left p a {
  color: inherit;
}

.c-mainFooter__right {
  display: flex;
}
.c-mainFooter__right p {
  font-size: var(--fs-p-sm);
  color: white;
  padding: .5rem 0;
  margin: 0;
}

.c-mainFooter__right p a {
  color: #8accf6;
}

.c-mainFooter__right p a:hover {
  color: white;
}

@media screen and (min-width: 691px) {
  .c-mainFooter__right p:first-child {
      margin-right: 3rem;
      padding-right: 3rem;
      border-right: 1px solid var(--clr-primary500);
  }
}

@media screen and (max-width: 1000px) {
  .c-mainFooter .u-wc { 
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
  }

  /* .c-mainFooter__left {
    margin-left: auto;
    margin-right: auto;
  } */
}

@media screen and (max-width: 690px) {
  .c-mainFooter__right {
      display: block;
      margin: auto;
      text-align: center;
  }

  .c-mainFooter__right p {
      padding: 0;
  }

  .c-mainFooter__left { 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

}

.c-sloganSection {
  background: url('imgs/logo-lines-bg.png') no-repeat calc(50% - 230px) center / 580px auto;
  padding: var(--b-space-lg) 0;
}

.c-slogan {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 732px;
  margin-left: auto;
}

.c-slogan__logo {
  display: block;
  margin: 0;
}

.c-slogan h2 {
  margin: 0;
}

@media screen and (max-width: 600px) {

  .c-sloganSection {
      background-size: 350px auto;
      background-position: calc(50% - 220px) center;
  }

  .c-slogan__logo {
      max-width: 60px;
  }

  .c-slogan { 
      gap: 1.5rem;
  }
}

.c-blockquote {
  margin: 2rem 0;
}

.c-blockquote:first-child {
  margin-top: 0;
}

.c-blockquote:last-child {
  margin-bottom: 0;
}

.c-blockquote blockquote {
  margin: 0;
  padding: 0;
  display: block;
}

.c-blockquote blockquote {
  margin-bottom: 2rem;
}

.c-blockquote blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
}

.c-blockquote cite {
  width: max-content;
  margin-left: auto;
  display: block;
  font-style: normal;
}

.c-blockquote cite h5 {
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0;
}

.c-blockquote cite h5 span {
  font-size: .8em;
}

.c-blockquote cite p {
  font-size: .71375rem;
}

@media screen and (max-width: 600px) {
  .c-blockquote {
      margin: 1.5rem 0;
  }
  .c-blockquote blockquote {
      margin-bottom: 1rem;
  }
}
.c-usingWrapper {
  position: relative;
}

@media screen and (min-width: 901px) {
  .c-usingWrapper:before {
      content: '';
      background: linear-gradient(to top right, var(--clr-primary500) 50%, transparent 50%);
      width: 300px;
      height: 350px;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 10;
  }
}

.c-using {
  display: flex;
  gap: 4.5rem;
}

.c-using__img {
  margin-left: calc((99.99% - 100vw - var(--scrollbar-width, 0px)) / 2);
  position: relative;
  z-index: 2;
  flex-grow: 1;
  align-self: flex-end;
}

.c-using__img img {
  display: block;
  width: 100%;
  max-height: 485px;
  object-fit: cover;
}

.c-using__content {
  width: 57%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.c-using__content:after {
  content: '';
  position: absolute;
  right: calc(100% + 200px);
  top: calc(var(--b-space) * -1);
  bottom:  calc(var(--b-space) * -1);
  z-index: 2;
  width: 2000px;
  background: white;
}

.c-using__contentCols {
  display: flex;
  gap: 3rem;
}

.c-using__contentCol {
  width: 50%;
}

.c-using__features {
  margin-bottom: 2rem;
}

.c-using__features p {
  font-size: 1.125rem;
  font-weight: 600;
}

@media screen and (max-width: 1380px) {
  .c-using__img {
      align-self: stretch;
  }

  .c-using__img img {
      height: 100%;
      max-height: initial;
  }
}

@media screen and (max-width: 1200px) {
  .c-using__contentCols {
      flex-direction: column;
  }

  .c-using__contentCol { 
      width: 100%;
  }

}

@media screen and (max-width: 900px) {
  .c-using {
      flex-direction: column;
      margin-top: calc(var(--b-space) * -1);
      position: relative;
  }

  .c-using:before {
      content: '';
      position: absolute;
      height: calc(var(--b-space) / 2);
      bottom: calc(100% - (var(--b-space) / 2));
      left: calc(var(--width-gutter) * -1);
      right: calc(var(--width-gutter) * -1);
      background: white;
  }

  .c-using__content {
      width: 100%;
  }

  .c-using__content:after {
      display: none;
  }

}


.c-about {
  padding-bottom: 0;
}

.c-about__top {
  display: flex;
}

.c-about__title {
  padding: 0 7% var(--b-space) 3rem;
  width: 57%;
}

.c-about__title h2 {
  margin: 0;
}

.c-about__solutionsWrap {
  position: relative;
  flex-grow: 1;
}

.c-about__solutions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  padding: 3.25rem 4.75rem 3.75rem;
  color: white;
  margin-top: 100px;
  margin-bottom: -100px;
}

.c-about__solutions h3 {
  font-weight: 600;
  font-size: 4.375rem;
}

.c-about__solutions h3 span {
  font-weight: 500;
  display: block;
  font-size: var(--fs-h3);
  line-height: 1.3;
}

.c-about__solutions:after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  background: black;
  width: 2000px;
}

.c-about__bottom {
  display: flex;
  gap: 4rem;
}

.c-about__overview {
  width: 29%;
  min-width: 320px;
  flex-shrink: 0;
}

.c-about__img {
  margin-right: calc((99.99% - 100vw - var(--scrollbar-width, 0px)) / 2)
}

.c-about__img img {
  display: block;
  width: 100%;
}


@media screen and (max-width: 1100px) {
  .c-about__top {
      flex-direction: column;
      gap: calc(var(--b-space) / 2);
      margin-bottom: calc(var(--b-space) / 2);
  }

  .c-about__title {
      width: 100%;
      padding: 0;
  }

  .c-about__solutions {
      position: relative;
      margin: 0;
      margin-left: 3.75rem;
  }
}

@media screen and (max-width: 900px) {
  .c-about__bottom {
      flex-direction: column;
  }

  .c-about__overview {
      width: 100%;
      min-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-about__solutions h3 {
      font-size: 3rem;
  }

  .c-about__solutions h3 span {
      margin-top: 0;
  }

  .c-about__solutions {
      margin-left: var(--width-gutter);
      padding: 2rem calc(var(--width-gutter) * 2);
  }
}

.c-solutionsWrapper {
  padding-bottom: 0;
}

.c-navIcon {
  position: fixed;
  right: var(--width-gutter);
  top: calc(40px + var(--height-adminbar));
  z-index: 9999;
  padding: 0;
  width: 58px;
  height: 58px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  background: var(--clr-primary500);
  transition: .3s background;
  border-radius: 50%;
}

.is-contact-section .c-navIcon {
  background: black;
}

/* .c-navIcon--active {
  background: var(--clr-secondary500);
} */

.c-navIcon:before, 
.c-navIcon:after {
  content: "";
  width: 21px;
  height: 2px;
  position: absolute;
  left: 19px;
  background: white;
  transition: .3s transform, .3s top, .3s bottom, .3s width;
}

.c-navIcon span {
  width: 21px;
  height: 2px;
  position: absolute; 
  top: 28px;
  left: 16px;
  background: white;
  transition: .3s opacity;
}

.c-navIcon:before {
  top: 21px;
}

.c-navIcon:after {
  bottom: 21px;
}

.c-navIcon--active:before {
  top: 29px;
  transform: rotate(45deg);
}

.c-navIcon--active:after {
  bottom: 27px;
  transform: rotate(135deg);
}

.c-navIcon--active span  {
  opacity: 0;
}

@media screen and (max-width: 600px) {
  .c-navIcon {
      top: 18px;
  }
}

.c-sidebarModal {
  --topOffset: var(--height-header);
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 90%;
  visibility: hidden;
  opacity: 0;
  padding: calc(var(--topOffset) + 24px) 60px 24px;
  transform: scale(.9);
  overflow-y: auto;
  background: #1e1e1e;
  transition: .3s opacity, .3s transform, 0s visibility .3s;
}

.c-sidebarModal .c-btn + .c-btn {
  margin-top: 16px;
}

.c-sidebarModal--active {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.c-sidebarModal h4 {
  font-size: 1.25rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: .05em;
}


@media screen and (max-width:480px) {
  .c-sidebarModal .c-btn + .c-btn {
    margin-top: .75rem;
  }
}

@media screen and (max-width: 480px) {
  .c-sidebarModal {
    padding: calc(var(--topOffset) + 24px) 36px 24px;
    max-width: 100%;
  }
}

.c-mainMenu {
  padding-bottom:42px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--clr-primary500);
}

.c-mainMenu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}  

.c-mainMenu a {
  color: white;
  /* text-transform: uppercase; */
  /* letter-spacing: -.025em; */
  font-size: 2rem;
  line-height: 1.2;
}

.c-mainMenu a:hover, .c-mainMenu .current-menu-item > a {
  color: var(--clr-primary500);
}

@media screen and (max-width:  600px) {
  .c-mainMenu a {
    font-size: 1.5rem;
  }
}

.c-contact {
  display: flex;
  gap: 10%;
}

.c-contact__details {
  flex-shrink: 0;
  width: 32%;
}

.c-contact__form {
  max-width: 600px;
  margin-left: auto;
}

@media screen and (max-width: 980px) {
  .c-contact {
      flex-direction: column;
      gap: 2rem;
  }

  .c-contact__details {
      width: 100%;
  }

  .c-contact__form {
      max-width: 100%;
  }
}

.c-contact__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.c-contactStep {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.c-contactStep__number {
  background: var(--clr-primary500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 500;
}

.u-primary500-background-color .c-contactStep__number {
  background: black;
  color: white;
}

.c-largeCta {
  display: flex;
  align-items: center;
  margin-top: var(--b-space-lg);
}

.c-largeCta p {
  font-size: 3.4375rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
  max-width: 550px;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.c-largeCta__img {
  margin-left: -24%;
  margin-right: -60px;
}

@media screen and (max-width: 1300px) {
  .c-largeCta__img {
      margin-left: -20%;
  }
}

@media screen and (max-width: 1100px) {
  .c-largeCta p {
      font-size: 2.5rem;
      max-width: 450px;
  }
}


@media screen and (max-width: 600px) {
  .c-largeCta p {
      font-size: 2rem;
  }
  .c-largeCta p {
      max-width: 100%;
  }

  .c-largeCta__img {
      margin-left: -100%;
      opacity: .4;
      margin-right: -100px;
  }
}

.c-form__cols {
  display: flex;
  gap: 1rem;
}

.c-form__col {
  width: calc((100% - 1rem) / 2);
}

.c-form__cols:not(:first-of-type) {
  margin-top: 1rem;
}

@media screen and (max-width: 600px) {
  .c-form__cols {
      flex-direction: column;
  }

  .c-form__col { 
      width: 100%;
  }
}

.c-form {
  margin-top: 2rem;
}

.c-form input[type="submit"] {
  margin-top: 2rem;
  background: var(--clr-secondary500);
}

.c-form input[type="submit"]:hover {
  background: var(--clr-secondary400);
}

label {
  display: block;
  margin: 0 0 .5rem 0;
  font-weight: 500;
}


input[type="text"], 
input[type="tel"],
input[type="email"],
input[type="password"],
textarea,
select {
  background: white;
  color: var(--clr-greyscale900);
  border-radius: 3px;
  padding: calc(1rem - 1px) 1.8rem;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  display: block;
  width: 100%;
}

input[type="text"]:placeholder, 
input[type="phone"]:placeholder,
input[type="email"]:placeholder,
input[type="password"]:placeholder {
  color: #747474;
  opacity: 1;
}

input[type="text"].wpcf7-not-valid:placeholder, 
input[type="phone"].wpcf7-not-valid:placeholder,
input[type="email"].wpcf7-not-valid:placeholder,
input[type="password"].wpcf7-not-valid:placeholder {
  color: white;
  opacity: 1;
}

input[type="text"].wpcf7-not-valid, 
input[type="phone"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  background: red;
  color: white;
}

input[type="text"].wpcf7-not-valid:placeholder, 
input[type="phone"].wpcf7-not-valid:placeholder,
input[type="email"].wpcf7-not-valid:placeholder,
textarea.wpcf7-not-valid:placeholder,
select.wpcf7-not-valid:placeholder {
  color: white;
}

.wpcf7-spinner {
  display: none;
}

textarea {
  height: 152px;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/select-arrow.svg') no-repeat calc(100% - 20px) center / 12px 12px;
  padding-right: 40px;
  color: var(--color-text);
}

select:-ms-expand {
  display: none;
}

.c-sidebarModal[data-modal="quick"] input[type="submit"] {
	background: var(--clr-secondary500);
}


.c-sidebarModal[data-modal="quick"] input[type="submit"]:hover {
	background: var(--clr-secondary400);
}

input[type="submit"] {
  -webkit-appearance: none;
  background: var(--clr-greyscale700);
  padding: 1.2rem 2rem;
  letter-spacing: .05em;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline:none;
  border:none;
  border-radius:0;
  text-decoration:none;
  line-height: 1;
  display: block;
  text-align: center;
  border-radius: 3px;
  transition:.3s background, .3s opacity;
}

.submitting input[type="submit"] {
  opacity: .7;
  cursor: wait;
  pointer-events: none;
}

input[type="submit"]:hover {
  background: var(--clr-primary500); 
}

.c-sidebarModal input[type="submit"] {
  width: 100%;
}

.c-sidebarModal input[type="text"], .c-sidebarModal input[type="tel"], .c-sidebarModal input[type="email"] {
  /* padding: 11px 16px; */
  margin-bottom: 12px;
  /* font-size: .75rem;
  text-align: center;
  letter-spacing: .07em;
  border-radius: 4px; */
}

.c-sidebarModal .wpcf7-not-valid-tip {
  margin-top: -9px;
  margin-bottom: 0;
}

.c-disclaimer {
  font-weight: 400;
  font-size: .75rem;
  display: block;
  margin: 2rem 0 .5rem;
}

.wpcf7-list-item {
  margin: 0;
  display: block;
}

.wpcf7-list-item label {
  margin: 0;
  display: block;
}

.wpcf7-acceptance  input {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 0;
  display: block;
}

.wpcf7-acceptance .wpcf7-list-item-label:after {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: .25rem;
  background: white;
  border: 3px solid white;
  background: white;
  border-radius: 50%;
  outline: none;
  transition: .3s background-color, .3s border;
}

.wpcf7-acceptance input:checked + .wpcf7-list-item-label:after {
  background: var(--clr-secondary500);
}

.wpcf7-not-valid-tip {
  font-size: .75rem;
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 0;
  display: block;
  color: #FF001F;
  text-align: left
}

.u-primary500-background-color .wpcf7-not-valid-tip {
  color: white;
}

.wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0  0 !important;
  border: 0 !important;
  font-weight: 400;
  padding: 0 !important;
  text-align: center;
  font-size: var(--fs-p);
  color: #bebbbb;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  color: red;
}

.u-primary500-background-color .wpcf7 form.invalid .wpcf7-response-output, .u-primary500-background-color .wpcf7 form.unaccepted .wpcf7-response-output {
  color: white;
}


@media screen and (max-width: 600px) {

  label {
    margin: 0 0 10px 0;
  }

  select {
    background-size: 12px 12px;
    background-position: calc(100% - 16px) center;
  }

  textarea {
    height: 200px;
  }

}

.c-articlesSlider {
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 0;
  margin: 32px 0 0;
}

@media screen and (max-width: 800px) {
  .c-articlesSlider {
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-articlesSlider__nav {
  flex-shrink: 0;
}

.c-articlesSlider__slides {
  min-width: 0;
}

.c-articlesSlider__slides .owl-stage-outer {
  overflow: visible;
}

.c-articlesSlider__slides  .owl-stage {
  display: flow-root;
}

.c-articlesSlider__slides .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-articlesSlider__slides .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.owl-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.owl-nav button {
  display: block;
  width: 52px;
  height: 52px;
  background: var(--clr-primary500) url('imgs/icon-arrow-left.png') no-repeat calc(50% - 2px) 50% / 10px auto !important;
  font-size: 0 !important;
  border: none !important;
  border-radius: 50%;
  outline: none;
  transition: .3s background, .3s opacity;
}

.owl-nav button.owl-next {
  background-image: url('imgs/icon-arrow-right.png') !important;
  background-position: calc(50% + 2px) 50% !important;
}

.owl-nav button.disabled {
  pointer-events: none;
  opacity: .5;
  background-color: var(--clr-greyscale600) !important;
}

.owl-nav button:hover {
  background-color: var(--clr-primary400) !important;
}

.single-solution h1 {
  font-size: 4.375rem;
  line-height: 1.1;
  margin: 0;
}

.single-solution h1:after {
  content: '';
  background: url('imgs/heading-sep.png') center center / 59px 35px;
  width: 59px;
  height: 35px;
  display: block;
  margin: 1.5rem auto 2rem;
}

/* .single-solution .content-wrap .u-wc {
  max-width: 1110px;
} */

/* .single-solution h2 {
  font-size: 3.75rem;
}

.single-solution h3 {
  font-size: 2.375rem;
  margin: 60px 0 24px;
  letter-spacing: -.03em;
}

.single-solution h3:first-child {
  margin-top: 0;
}

.single-solution h4 {
  font-size: 1.5rem;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0 0 24px 0;
} */

@media screen and (max-width: 600px) {
  .single-solution h1 {
    font-size: 3rem;
  }
/* 
  .single-solution h2 {
    font-size: 2.25rem;
  }

  .single-solution h3 {
    font-size: 1.75rem;
    margin: 32px 0 16px;
  }

  .single-solution h4 {
    margin: 0 0 16px 0;
  } */
}

.c-imgGallery {
  max-width: 834px;
  margin-left: auto;
  margin-bottom: 60px;
  position: relative;
}

.c-imgGallery:before {
  content: '';
  background: url('imgs/logo-lines-bg.jpg') no-repeat center center / 699px 436px;
  width: 699px;
  height: 436px;
  position: absolute;
  top: calc(50% - 54px);
  transform: translateY(-50%);
  right: calc(100% - 100px);
}

@media screen and (max-width: 800px) {
  .c-imgGallery:before {
    display: none;
  }
}

.c-imgGallery .owl-stage-outer {
  overflow: visible;
}

.c-imgGallery .owl-stage {
  display: flow-root;
}

.c-imgGallery .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

.c-imgGallery .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-imgGallery .c-imgGallery__item {
  display: block;
}

.c-imgGallery .c-imgGallery__item img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.c-imgGallery .owl-nav {
  justify-content: flex-end;
  margin-top: 32px;
}

.c-imgGallery .owl-nav button:not(:hover) {
  background-color: black !important;
}

.c-videoGallery {
  display: flex;
  gap: 40px;
  align-items: center;
}

.c-videoGallery__slider {
  min-width: 0;
}

.c-videoGallery__nav {
  flex-shrink: 0;
}

.c-videoGallery .owl-stage-outer {
  overflow: visible;
}

.c-videoGallery .owl-stage {
  display: flow-root;
}

.c-videoGallery .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

.c-videoGallery .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-videoGallery .c-videoGallery__item {
  display: block;
  position: relative;
}

.c-videoGallery__item:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url('imgs/youtube-logo.svg') no-repeat center center / contain;
}

.c-videoGallery .c-videoGallery__item img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.c-videoGallery .owl-nav button:not(:hover) {
  background-color: black !important;
}

@media screen and (max-width: 800px) {
  .c-videoGallery {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

.c-features {
  display: flex;
  gap: 12%;
  align-items: flex-start;
}

.c-features__slider {
  min-width: 0;
}

.c-features__nav {
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.33);
  border-radius: 16px;
  padding: 32px;
}

.c-features .owl-stage-outer {
  overflow: visible;
}

.c-features .owl-stage {
  display: flow-root;
}

.c-features .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

.c-features .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-features__item h4 {
  color: var(--clr-primary500);
  font-size: 1.875rem;
  font-weight: 400;
  margin: 0 0 16px 0;
}

.c-features__item p {
  font-size: var(--fs-p-lg);
}

@media screen and (max-width: 800px) {
  .c-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media screen and (max-width: 600px) {
  .c-features__item h4 {
    font-size: 1.75rem;
  }

  .c-features__nav {
    padding: 24px;
  }
}

.wp-block-gallery {
	margin-bottom: var(--b-space);
}

.wp-block-columns:last-child {
	margin-bottom: 0;
}

.c-testimonials {
  position: relative;
}

.c-testimonials__slider .owl-stage-outer {
  overflow: visible;
}

.c-testimonials__slider  .owl-stage {
  display: flow-root;
}

.c-testimonials__slider .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-testimonials__slider .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-testimonials__nav {
  position: absolute;
  right: var(--width-gutter);
  bottom: 7px;
  z-index: 10;
}

@media screen and (max-width: 1400px) {
  .c-testimonials__nav {
    position: static;
    margin-top: 32px;
    margin-left: 200px;
  }
}

@media screen and (max-width: 600px) {
  .c-testimonials__nav {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .single-solution .c-contact__details {
    display: none;
  }

  .single-solution .c-contact h2 {
    text-align: center;
  }
}

.grecaptcha-badge { 
  visibility: hidden !important;
}