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

/* CSS vars */

:root {
  /* colors */

  --clr-accent: 56,23,12;
  --clr-accent500: rgba(var(--clr-accent), 1);
  --clr-accent400: rgba(var(--clr-accent), .8);
  --clr-accent300: rgba(var(--clr-accent), .6);
  --clr-accent200: rgba(var(--clr-accent), .4);
  --clr-accent100: rgba(var(--clr-accent), .1);
  --clr-primary: 167,197,44;
  --clr-primary500: rgba(var(--clr-primary), 1);
  --clr-primary400: rgba(var(--clr-primary), .8);
  --clr-primary300: rgba(var(--clr-primary), .6);
  --clr-primary200: rgba(var(--clr-primary), .4);
  --clr-primary100: rgba(var(--clr-primary), .1);
  --clr-text: #323232;
  --clr-text-reverse: white;

  --overlap: 200px;
  /* heights */
  --height-header: 68px;
  /* spacing */
  --b-space: 190px;
  --b-space-sm: 65px;
  --b-space-xsm: 40px;
  /* font family */
  --ff-body: 'Montserrat', sans-serif;
  --ff-heading: 'Montserrat', sans-serif;
  /* font sizes */
  --fs-h1: 22px;
  --fs-h2: 20px;
  --fs-h3: 15px;
  --fs-p: 16px;
}


@media screen and (max-width:600px) {
  :root {
    --spacingSmall: 32px;
    --spacing: 66px;
    --spacingSmallTablet: 40px;
    /* font sizes */
    --fs-h1: 20px;
    --fs-h2: 18px;
    --fs-h3: 15px;
    --fs-p: 15px;
    /* spacing */
    --b-space: 75px;
    --b-space-xsm: 20px;

    --overlap: 160px;
  }
} 

/* utilities */

.u-cf:after { 
	content:"";
	display:table;
	clear:both;
}

.u-scrollStopper {
  overflow: hidden !important;
}

.u-fadeHover {
  transition: .3s opacity;
}

.u-fadeHover:hover {
  opacity: .8;
}

.u-bg-light {
  background: #f6f6f6;
}

.u-wc {
	width:100%;
	max-width: 1270px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

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

  .u-wc { 
    padding: 0 40px;
  }

}


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

  .u-wc { 
    padding: 0 20px;
  }

} */

.u-wc--sm {
  max-width: 980px;
}

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

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

/* 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, body {
  overflow-x: hidden;
}

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;
}

/* .page-wrapper {
  overflow-x: hidden;
} */

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

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

h1 {
  font-size: var(--fs-h1);
  line-height: 1.3;
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.3;
  margin: 32px 0 32px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

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

.h2--greyCircle {
  position: relative;
  z-index: 1;
}

.h2--greyCircle:before {
  content: '';
  width: 80px;
  height: 80px;
  background: #F2F0F2;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: -35px;
  top: -29px;
}

.h2--primaryCircle {
  position: relative;
  z-index: 1;
}

.h2--primaryCircle:before {
  content: '';
  width: 80px;
  height: 80px;
  background: var(--clr-primary500);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: -35px;
  top: -29px;
}

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

  .h2--greyCircle:before, .h2--primaryCircle:before {
    content: '';
    width: 50px;
    height: 50px;
    left: -19px;
    top: -13px;
  }
}

h3 {
  font-size: var(--fs-h3);
  text-transform: uppercase;
  margin: 32px 0 22px;
  line-height: 1.3;
  letter-spacing: .2em;
}

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

h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
  margin: 28px 0 16px;
}


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;
}

p {
  margin-bottom: 16px;
  letter-spacing: .1em;
}


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

  p {
    margin-bottom: 12px;
  }
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 24px;
  margin: 20px 0 16px;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

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

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 20px 0 16px;
}

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

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: 4px;
  margin-bottom: 4px;
}

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

.ul--checklist {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}

.ul--checklist li {
  position: relative;
  padding-left: 0;
  display: flex;
}

.ul--checklist li:before {
  content: '';
  background: url('imgs/check-circle.svg') center center / 16px 16px;
  left: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.ul--checklist.ul--lg li:before {
  background-size: 24px 24px;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

@media screen and (max-width: 600px) {
  .ul--checklist.ul--lg li:before {
    background-size: 20px 20px;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }
}

blockquote {
  display: block;
  margin: 55px 0;
  border-left: 1px solid #DCDCDC;
}

blockquote p {
  padding: 10px 45px 28px;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 2;
}

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

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

blockquote cite {
  font-style: normal;
  display: block;
  border-top: 1px solid #DCDCDC;
  padding: 28px 45px;
  margin: 0;
}

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

  blockquote {
    display: block;
    margin: 30px 0;
  }  

  blockquote p {
    padding: 10px 20px 15px;
    font-size: 16px;
    line-height: 1.6;
  }

  blockquote cite {
    padding: 10px 20px;
    font-size: 12px;
  }

}

a, a:focus{
   outline: 0;
}

a {
  text-decoration: none;
  color: var(--clr-accent500);
	transition:.3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-accent400);
}

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

hr {
  display: block;
  padding: 0;
  height: 1px;
  background: var(--clr-primary100);
  margin: 40px 0;
  border: none !important;
}

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

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

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

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

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}

input{
  outline:none;
}

.c-btn {
  display: inline-block;
  padding: 30px 50px;
  color: white;
  background: var(--clr-accent500);
  /* border: 1px solid var(--clr-accent500); */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2em;
  min-width: 220px;
  text-align: center;
  transition: .3s background, .3s color;
}

.c-btn:hover {
  color: var(--clr-accent500);
  background: var(--clr-primary400);
  /* border: 1px solid var(--clr-accent400); */
}

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

  .c-btn {
    padding: 24px 32px;
  }

}

/*header styles*/

.c-mainHeader {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}

.c-logo {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  padding: 32px 0;
  user-select: none;
}

.c-logo__dots { 
  width: 18px;
  display: block;
  position: relative;
  margin-bottom: 6px;
  margin-right: 8px;
  transform-origin: bottom left;
  transition: .3s transform;
}

.c-logo:hover .c-logo__dots {
  transform: rotate(-90deg);
}

.c-logo__dot:nth-of-type(1), .c-logo__dot:nth-of-type(2) {
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-logo__dot:nth-of-type(1) {
  transform: translateY(3px) translateX(-3px);
}

.c-logo__dot:nth-of-type(2) {
  transform: translateY(3px) translateX(8px);
  transition: .3s transform;
}

.c-logo__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary500);
}

.c-logo__text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: white;
  letter-spacing: .2em;
}

.c-logo__text span {
  color: var(--clr-primary500);
}

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

  .c-logo {
    padding: 15px 0;
  }

  .c-logo__dot {
    width: 4px;
    height: 4px;
  }

  .c-logo__dot:nth-of-type(1) {
    transform: translateY(2px) translateX(-2px);
  }
  
  .c-logo__dot:nth-of-type(2) {
    transform: translateY(2px) translateX(8px);
    transition: .3s transform;
  }

  .c-logo__dots { 
    margin-bottom: 5px;
    margin-right: 4px;
    width: 16px;
  }

  .c-logo__text {
    font-size: 23px;
  }
}

.c-mainMenu {
  background: black;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100vh;
  width: 415px;
  padding: 160px 110px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  overflow-y: auto;
  transition: .3s opacity, .3s transform, 0s visibility .3s;
}

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

.c-mainMenu a {
  line-height: 1;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: white;
  padding: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  transition: .3s color;
  margin-bottom: 6px;
}

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

.c-mainMenu a:hover {
  color: var(--clr-primary500);
}

.c-mainMenu__sep {
  margin: 32px 0;
  display: flex;
  grid-gap: 6px;
}

.c-mainMenu__sep:before, .c-mainMenu__sep:after {
  content: '';
  display: block;
  background: var(--clr-primary500);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@media screen and (max-width: 480px) {
  .c-mainMenu {
    width: 100%;
    padding: 80px;
  }

  .c-mainMenu a {
    font-size: 20px;
  }

}


.c-navIcon {
  width: 52px;
  height: 52px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-primary500);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s background;
}

/* .c-navIcon:hover {
  background: var(--clr-primary400);
} */

.c-navIcon__dots {
  display: flex;
  grid-gap: 4px;
  transition: .3s transform;
}

.c-navIcon--active .c-navIcon__dots {
  transform: rotate(90deg);
}

.c-navIcon span {
  display: block;
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
}

.c-hero {
  background: black url('imgs/hero-bg.jpg') center center / cover;
  min-height: 100vh;
  display: flex;
}

.c-hero .u-wc {
  display: flex;
}

.c-hero__content {
  max-width: 425px;
  padding-bottom: 130px;
  margin-top: auto;
  margin-bottom: auto;
}

@media screen and (max-width: 800px) {
  .c-hero:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
  }

  .c-hero .u-wc { 
    position: relative;
    z-index: 2;
  }

}

.c-signature {
  margin-top: 32px;
  display: flex;
  grid-gap: 16px;
  align-items: center;
}

.c-signature__name {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

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

.c-signature__title {
  font-size: 16px;
  color: #a09e9e;
  display: block;
  font-style: italic;
}

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

  .c-hero__content {
    padding-bottom: 0;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 30px;
  }

  .c-signature { 
    display: none;
  }

}

.c-topFooter {
  padding-bottom: 100px;
}

@media screen and (max-width: 600px) {
  .c-topFooter {
    padding-bottom: 40px;
  }
}

.c-bottomFooter {
  padding: 0 0 30px;
  overflow: hidden;
}

.c-bottomFooter .u-wc {
  display: flex;
  justify-content: space-between;
}

.c-bottomFooter p {
  font-size: 12px;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.c-bottomFooter p span:after {
  content: '-';
  padding: 0 8px;
}

.c-bottomFooter p span:last-child:after {
  display: none;
}

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

  .c-bottomFooter p span:after {
    display: none;
  }

  .c-bottomFooter p {
    flex-direction: column;
    align-items: center;
  }
}


.c-whyBtn {
  position: relative;
  border: none;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: black no-repeat center center / 16px 16px;
  color: var(--clr-primary500);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s background;
}

.c-whyBtn:hover {
  background-color: rgba(0,0,0,.8);
}

.c-whyBtn--active {
  background-image: url('imgs/close-btn.png');
  font-size: 0;
}

.c-why {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--clr-accent500);
  color: white;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  opacity: 0;
  transform: scale(1.1);
  visibility: hidden;
  transition: .3s opacity, .3s transform, 0s visibility .3s;
}

.c-why .c-whyBtn {
  position: absolute;
  top: 30px;
  left: 30px;
}

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

.c-why h2 span {
  color: var(--clr-primary500);
}

.c-why .u-wc {
  margin-top: auto;
  margin-bottom: auto;
  max-width: 660px;
}

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

  .c-why {
    padding-top: 120px;
  }

  .c-whyBtn {
    width: 60px;
    height: 60px;
  }
  .c-whyBtn::not(.c-whyBtn--active) {
    font-size: 14px;
  }
}

.c-tabs {
  display: flex;
  flex-direction: row-reverse;
  grid-gap: 175px;
}

.c-tabs__contentBox {
  display: grid;
}

.c-tabs__menu {
  display: flex;
  align-items: center;
  grid-gap: 43px;
}

.c-tabs__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  grid-gap: 18px;
  letter-spacing: .2em;
  font-size: 20px;
}

.c-tabs__tab:after {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: black;
  transition: .3s background;
}

.c-tabs__tab:not(.c-tabs__tab--active):hover:after {
  background: var(--clr-primary300);
}

.c-tabs__tab--active:after {
  background: var(--clr-primary500);
} 

.c-tabs__content {
  display: flex;
  flex-direction: column;
  grid-area: 1 / 1;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: 0s visibility .3s, .3s transform 0s, .3s opacity 0s;
}

.c-tabs__content :first-child {
  margin-top: auto;
}

.c-tabs__content :last-child {
  margin-bottom: auto;
}

.c-tabs__content--visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  transition: 0s visibility 0s, .3s transform .3s, .3s opacity .3s;
}

.c-tabs__content p {
  max-width: 445px;
}

.c-bigOlCircle {
  display: block;
  width: 765px;
  height: 765px;
  border-radius: 50%;
  background: var(--clr-primary500);
}

@media screen and (min-width: 801px) {
  .c-focus {
    padding: 100px 0;
  }
}

.c-focus .u-wc {
  position: relative;
  min-height: 765px;
  display: flex;
}

.c-focus .c-bigOlCircle {
  position: absolute;
  left: calc(100% - 170px);
  top: 50%;
  transform: translateY(-50%);
}

.c-focus .c-tabs {
  margin-right: 237px;
  margin-top: auto;
  margin-bottom: auto;
}

@media screen and (max-width: 1200px) {
  .c-tabs { 
    display: flex;
    flex-direction: column;
    grid-gap: 40px;
  }
}

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

  .c-focus .c-bigOlCircle {
    /* left: calc(100% - 60px); */
    display: none;
  }

  .c-focus .c-tabs {
    /* margin-right: 80px; */
    margin-right: 0;
  }

  .c-tabs__tab {
    grid-gap: 16px;
    font-size: 14px;
  }

  .c-tabs__tab:nth-of-type(3) {
    margin-left: -8px;
  }

  .c-tabs__tab::after {
    width: 40px;
    height: 40px;
  }

  .c-tabs__menu {
    grid-gap: 28px;
  }

  .c-focus .u-wc {
    min-height: 0;
  }

  .c-tabs__content :first-child {
    margin-top: 0;
  }
  
  .c-tabs__content :last-child {
    margin-bottom: 0;
  }



}

.c-drive .u-wc {
  display: flex;
}

.c-drive__img {
  margin-left: -145px;
}

.c-drive__content {
  margin-left: -278px;
  background: var(--clr-accent500);
  padding: 140px 120px;
  color: white;
  margin-top: 157px;
  width: 550px;
  flex-shrink: 0;
  margin-right: 54px;
  position: relative;
}

.c-drive__deco {
  position: absolute;
  bottom: 87px;
  left: calc(100% - 28px);
  display: flex;
  grid-gap: 16px;
}

.c-drive__deco p {
  margin-bottom: 0;
}

.c-drive__deco span {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: block;
  background: var(--clr-primary500);
  border-radius: 50%;
}

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

  .c-drive__content {
    padding: 90px 80px;
    width: 450px;
    margin-right: 20px;
  }

  .c-drive__deco {
    bottom: -28px;
    left: auto;
    right: 80px;
  }

}

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

  .c-drive .u-wc {
    flex-direction: column;
  }

  .c-drive__img {
    margin-left: -20px;
  }

  .c-drive__content { 
    margin-left: 0;
    margin-top: -100px;
    width: auto;
    margin-right: -20px;
    padding: 60px;
  }

  .c-drive__deco {
    right: 60px;
    bottom: -20px;
  }

  .c-drive__deco span {
    width: 40px;
    height: 40px;
  }

}



.c-process .u-wc {
  display: flex;
  flex-direction: row-reverse;
}

.c-process__img {
  margin-right: -145px;
}

.c-process__content {
  margin-right: -278px;
  background: var(--clr-accent500);
  padding: 140px 110px 200px 110px;
  color: white;
  margin-top: 107px;
  width: 562px;
  flex-shrink: 0;
  position: relative;
}

.c-process__content p {
  margin-bottom: 0;
}

.c-process__deco {
  position: absolute;
  bottom: 65px;
  left: -42px;
  display: flex;
  grid-gap: 24px;
}


.c-process__deco span {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: block;
  background: var(--clr-primary500);
  border-radius: 50%;
}

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

  .c-process__content {
    padding: 90px 80px;
    width: 450px;
    margin-left: 20px;
  }

  .c-process__deco {
    bottom: -28px;
    left: 80px;
    grid-gap: 16px;
  }

  .c-process__deco span {
    width: 56px;
    height: 56px;
  }

}

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

  .c-process .u-wc {
    flex-direction: column;
  }

  .c-process__img {
    margin-right: -20px;
  }

  .c-process__content { 
    margin-right: 0;
    margin-top: -100px;
    width: auto;
    margin-left: -20px;
    padding: 60px;
  }

  .c-process__deco {
    left: 60px;
    bottom: -20px;
  }

  .c-process__deco span {
    width: 40px;
    height: 40px;
  }

}

.c-servicesBlock {
  background: #f2f0f2;
}

.c-services {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 75px;
  padding-left: 70px;
  margin: 100px 0 100px;
}

.c-services__item {
  width: calc((100% - 150px) / 3);
}

@media screen and (max-width: 980px) {
  .c-services__item {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-services {
    grid-gap: 20px;
    padding-left: 0;
    margin: 40px 0;
  }
}

.c-testimonials {
  position: relative;
  z-index: 1;
}


.c-testimonialSlider {
  background: var(--clr-accent500);
  padding: 140px 0 140px 0;
  position: relative;
  z-index: 10;
}

.c-testimonialSlider:before {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 9000px;
  background: var(--clr-accent500);
}

.c-testimonialSlider:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, rgba(56,23,12,1) 0%, rgba(56,23,12,0) 100%);
}

.c-testimonialSlider .owl-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -3px;
  left: 0;
  display: flex;
  grid-gap: 6px;
}

.c-testimonialSlider button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  transition: .3s background;
}

.c-testimonialSlider button.owl-dot.active, .c-testimonialSlider button.owl-dot:hover {
  background: var(--clr-primary500);
}

.c-testimonial {
  color: white;
  padding: 0 130px 0 180px;
}

.c-testimonial p {
  font-size: 17px;
  font-style: italic;
}

.c-testimonial h5 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .1em;
}

.c-testimonial h5 + p {
  font-style: italic;
  font-size: 15px;
  color: #a09e9e;
}

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

  .c-testimonial {
    padding-left: 0;
  }

  .c-testimonialSlider .owl-dots {
    position: relative;
    margin-top: 32px;
  }

  .c-testimonials .u-wc {
    padding-left: 0;
  }

  .c-testimonialSlider {
    padding: 60px 0 60px 0;
  }

  .c-testimonial {
    padding: 0 60px 0 60px;
  }

  .c-testimonial p {
    font-size: 15px;
  }

  .c-testimonialSlider .owl-dots {
    margin-left: 60px;
  }
}

.c-servicesBlock {
  --overlap: 370px;
  margin-top: calc(var(--overlap) * -1);
  padding-top: calc(var(--overlap) + var(--b-space));
}

.c-video {
  display: block;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: url('imgs/video-bg.jpg') center center / cover;
}

.c-video:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-left: -40px;
  margin-top: -40px;
  transition: .3s background;
  background: rgba(0,0,0,1) url('imgs/play-icon.png') center center / 80px 80px;
}

.c-video:hover:after {
  background-color: rgba(0,0,0,.5);
}

.c-videoBlock .u-wc {
  display: flex;
  align-items: center;
}

.c-videoBlock__video {
  width: 60%;
  margin-right: 100px;
  flex-shrink: 0;
}

@media screen and (max-width: 980px) {
  .c-videoBlock .u-wc {
    display: block;
  }

  .c-videoBlock__video { 
    width: 100%;
    margin-right: 0;
    margin-bottom: 60px;
  }
}

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

  .c-videoBlock__video { 
    margin-bottom: 32px;
  }
}

.c-future {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 100px;
  position: relative;
}

.c-future .c-whyBtn {
  position: absolute;
  left: -35px;
  top: -160px;
}

.c-future__item {
  width: calc((100% - 100px) / 2);
}

.c-future__item h2 {
  margin-bottom: 55px;
}

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

  .c-future__item {
   width: 100%;
  }

  .c-future .c-whyBtn {
   position: static;
  }
  
}

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

  .c-future {
    grid-gap: 40px;
  }

  .c-future__item h2 {
    margin-bottom: 20px;
  }

  .c-future .c-whyBtn {
    margin-left: -18px;
  }
  

}

.animate {
  opacity: 0;
  filter: blur(5px);
  visibility: hidden;
  transform:  rotate(1deg) scale(1.1);
  transition: 1s opacity .3s, 1s transform .3s, 1s filter .3s, 0s visibility .3s, .3s background;
}

.show {
  visibility: visible;
  opacity: 1;
  filter: none;
  transform: none;
}

.animate[delay="1"] {
  transition-delay: .3s;
}

.animate[delay="2"] {
  transition-delay: .6s;
}

.animate[delay="3"] {
  transition-delay: .9s;
}