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

@font-face {
  font-family: 'Metropolis';
  src: url('fonts/Metropolis-Regular.woff2') format('woff2'),
      url('fonts/Metropolis-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('fonts/Metropolis-RegularItalic.woff2') format('woff2'),
      url('fonts/Metropolis-RegularItalic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('fonts/Metropolis-Bold.woff2') format('woff2'),
      url('fonts/Metropolis-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


/* CSS vars */

:root {
  /* colors */

  --clr-accent: 33,33,33;
  --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: 179,8,57;
  --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: #121212;
  --clr-text-reverse: white;
  /* heights */
  --height-header: 68px;
  --height-viewport: 100vh;
  /* spacing */
  --b-space-lg: 200px;
  --b-space: 183px;
  --b-space-sm: 150px;
  /* font family */
  --ff-body: 'Metropolis';
  --ff-heading: 'Bebas Neue', sans-serif;
  /* font sizes */
  --fs-h1: 102px;
  --fs-h2: var(--fs-h1);
  --fs-h1-inside: 74px;
  --fs-h3: 60px;
  --fs-h4: 48px;
  --fs-h5: 28px;
  --fs-p: 20px;
  --fs-p-xlg: 35px;
  --fs-p-lg: 25px;
  --fs-p-sm: 16px;
}

@media screen and (max-width:1400px) { 
  :root {
    --b-space: 140px;
    --b-space-sm: 140px;
  }
}


@media screen and (max-width:980px) { 
  :root {
    --b-space-lg: 200px;
    --b-space: 120px;
    --fs-h1: 80px; 
  }
}


@media screen and (max-width:600px) {
  :root {
    /* font sizes */
    --fs-h1: 60px;
    --fs-h1-inside: 54px;
    --fs-h3: 40px;
    --fs-h4: 30px;
    --fs-h5: 20px;
    --fs-p: 16px;
    --fs-p-lg: 20px;
    --fs-p-sm: 15px;
    /* spacing */
    --b-space-lg: 120px;
    --b-space: 75px;
    --b-space-sm: 60px;

  }
} 

@media screen and (max-width:400px) {
  :root {
    --fs-h1: 55px;
  }

}

/* utilities */


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

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

.u-wc--inside {
  max-width: 1030px;
}

.u-wc--lg {
  max-width: 1620px;
}

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

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

}

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

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

}


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

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

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

/* 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%;
}

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

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

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

h1, h2, .h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  line-height: .95;
  margin: 0 0 40px;
}

body:not(.page-home) h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1-inside);
  line-height: .95;
  margin: 0 0 40px;
}


h3 {
  font-size: var(--fs-h3);
  margin: 32px 0 32px;
  line-height: .95;
  letter-spacing: .03em;
}

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

h4 {
  font-size: var(--fs-h4);
  line-height: 1;
  margin: 28px 0 16px;
  letter-spacing: .05em;
}

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

h5 {
  font-size: var(--fs-h5);
  margin: 28px 0 28px;
  line-height: 1;
  letter-spacing: .1em;
}

h5: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: 24px;
  letter-spacing: .03em;
}

.p--sm {
  font-size: var(--fs-p-sm);
  line-height: 1.8;
}

.p--lg {
  font-size: var(--fs-p-lg);
  line-height: 1.43;
  margin-bottom: 28px;
}

.p--xlg {
  font-size: var(--fs-p-xlg);
  line-height: 1.3;
}


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

  h1, h2, .h2 {
    margin: 0 0 24px;
  }

  body:not(.page-home) h1 {
    margin: 0 0 24px;
  }


  h2:first-child {
    margin-top: -9px;
  }
  
  h3 {
    margin-bottom: 20px;
  }

  h5 {
    margin: 20px 0 16px;
  }

  p {
    margin-bottom: 16px;
  }
}

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

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;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.c-section--dark {
  background: var(--clr-accent500);
}

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

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

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

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

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

input{
  outline:none;
}

.c-btnGroup {
  display: flex;
  grid-gap: 16px;
  margin-top: 24px;
}

.c-btnGroup--pLg {
  margin-top: calc(var(--b-space-sm) - 32px);
}

.c-btnGroup--center {
  justify-content: center;
}

.c-btn {
  position: relative;
  color: var(--clr-text);
  font-family: var(--ff-heading);
  font-size: 24px;
  letter-spacing: .1em;
  transition: .3s opacity, .3s visibility 0s;
  display: flex;
  align-items: center;
  border: none;
  padding: 0;
  margin: 12px 0;
  grid-gap: 24px;
}

.c-btn:hover {
  color: var(--clr-text);
}

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

.c-btn--light,
.c-btn--light:hover {
  color: white;
}

.c-btn--reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-left: 8px;
}

.c-btn:after {
  content: '';
  width: 72px;
  height: 17px;
  transform: skew(-30deg, 0);
  background: var(--clr-primary500);
  margin-bottom: 3px;
  transition: .3s transform;
}

.c-btn:hover:after {
  transform: skew(-30deg, 0) translateX(8px);
}

.c-btn--reverse:hover:after {
  transform: skew(-30deg, 0) translateX(-8px);
}

.c-btn--long:after {
  width: 360px;
}

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

  .c-btnGroup {
    flex-direction: column;
    grid-gap: 12px;
  }

  .c-btn {
    font-size: 20px;
    grid-gap: 20px;
  }

  .c-btn:after {
    height: 14px;
    width: 50px;
    margin-bottom: 1px;
  }

  .c-btn--long:after {
    width: 100px;
  }

}

.c-sqBtn {
  color: white !important;
  font-family: inherit;
  background: black;
  padding: 26px 32px 22px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  color: white;
  border: none;
  font-size: 21px;
  font-size: var(--fs-h5);
  line-height: 1;
  letter-spacing: .1em;
  font-weight: 600;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  background: black;
  transition: .3s background, .3s opacity;
}

.c-sqBtn:hover {
  color: white !important;
  background: var(--clr-primary500);
}

@media screen and (max-width: 600px) {
  .c-sqBtn {
    max-width: 600px;
    padding: 25px 32px 22px;
  }
}

/*header styles*/

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

body:not(.page-home) .c-mainHeader:after {
  content: '';
  position: absolute;
  bottom: -17px;
  right: 20%;
  width: 6000px;
  height: 17px;
  background: var(--clr-primary500);
  transform: skew(-30deg, 0);
}

@media screen and (max-width: 600px) {
  body:not(.page-home) .c-mainHeader:after {
    bottom: -14px;
    height: 14px;
  }
}


body:not(.page-home) .c-mainHeader {
  background: var(--clr-accent500) url('imgs/hero-bg.jpg') center top / cover;
  position: relative;
}

@media screen and (min-width: 981px) {

  body:not(.page-home) .c-logo {
    padding: 105px 0;
  }

}

.c-logo {
  display: block;
  padding: 62px 0;
}

.c-logo img {
  display: block;
  width: 329px;
}

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

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

  .c-logo img {
    width: 250px;
  }

}

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

  .c-logo {
    padding: 20px 0;
  }
  
  .c-logo img {
    display: block;
    width: 160px;
  }
}

.c-mainMenu {
  background: black;
  position: absolute;
  top: 0;
  left: -273px;
  max-height: 100%;
  height: 100%;
  right: 0;
  z-index: 1;
  padding: 142px 105px 80px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  overflow-y: auto;
  pointer-events: 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: 60px;
  font-weight: 400;
  font-family: var(--ff-heading);
  color: white;
  padding: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  transition: .3s color;
  margin-bottom: 0;
}

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

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

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

  .c-mainMenu {
    left: auto;
    width: 440px;
  }

}

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

  .c-mainMenu {
    padding: 130px 60px 60px;
    width: 300px;
  }

  .c-mainMenu a {
    font-size: 40px;
    margin-bottom: 4px;
  }

}

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

  .c-mainMenu {
    padding: 90px 60px 60px;
    width: 260px;
  }

  .c-mainMenu a {
    font-size: 30px;
    margin-bottom: 8px;
  }

}

.c-flyOutMenu {
  top: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  left: 50%;
  margin-left: 692px;
  z-index: 9999;
  pointer-events: none;
}

@media screen and (max-width: 1620px) {
  .c-flyOutMenu { 
    left: auto;
    margin-left: 0;
    right: 0;
  }
}

@media screen and (max-width: 980px) {
  .c-flyOutMenu { 
    right: 0;
    top: 0;
  }

}

.c-navIcon {
  position: absolute;
  z-index: 2;
  top: 63px;
  left: 0;
  padding: 0;
  width: 58px;
  height: 58px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: .3s background;
}

.is-scrolled .c-navIcon {
  background: var(--clr-primary500);
}

.c-navIcon.c-navIcon--active {
  background:  transparent
}


.c-navIcon:before, 
.c-navIcon:after {
  content: "";
  width: 33px;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: .3s transform, .3s top, .3s bottom;
}

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

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

.c-navIcon:not(.c-navIcon--active):hover:before {
  top: 27px;
  transform: translateX(-50%);
}

.c-navIcon:not(.c-navIcon--active):hover:after {
  bottom: 26px;
  transform: translateX(-50%) rotate(90deg);
}

.c-navIcon--active:before {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
}

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

.c-navIcon__text {
  position: absolute;
  right: 20px;
  top: 50px;
  transform-origin: 100% 50%;
  transform: rotate(-90deg);
  color: white;
  font-family: var(--ff-heading);
  font-size: 24px;
  letter-spacing: .1em;
  transition: .3s opacity, .3s visibility 0s;
}

.c-navIcon__text:before {
  content: '';
  position: absolute;
  right: calc(100% + 30px);
  top: 6px;
  width: 138px;
  height: 17px;
  transform: skew(-30deg, 0);
  background: var(--clr-primary500);
}

.is-scrolled .c-navIcon__text, .c-navIcon--active .c-navIcon__text  {
  opacity: 0;
  visibility: hidden;
  transition-delay:  .3s opacity, 0s visibility 0s;
}

@media screen and (max-width: 1620px) {
  .c-navIcon { 
    top: 63px;
    right: 60px;
    left: auto;
  }
}

@media screen and (max-width: 980px) {
  .c-navIcon { 
    top: 40px;
    right: 40px;
  }
}

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

  .c-navIcon__text {
    display: none;
  }

}


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

  .c-navIcon {
    width: 50px;
    height: 50px;
    top: 14px;
    right: 20px;
  }

  .c-navIcon:before {
    top: 18px;
  }
  
  .c-navIcon:after {
    bottom: 18px;
  }

  .c-navIcon::before, .c-navIcon::after {
    width: 30px;
  }

  .c-navIcon:not(.c-navIcon--active):hover::after {
    bottom: 23px;
  }

  .c-navIcon:not(.c-navIcon--active):hover::before {
    top: 23px;
  }

  .c-navIcon--active:before {
    top: 23px;
  }

  .c-navIcon--active:after {
    bottom: 23px;
  }


}

.c-hero {
  background: black;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.c-hero__uscan {
  position: absolute;
  top: 84px;
  z-index: 10;
  left: 50%;
  margin-left: 460px;
}

@media screen and (max-width: 1620px) {
  .c-hero__uscan { 
    left: auto;
    margin-left: 0;
    right: 146px;
  }
}

@media screen and (max-width: 980px) {
  .c-hero__uscan {
    width: 135px;
    top: 60px;
    right: 120px;
    
  }
}

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



.c-hero__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url('imgs/hero-bg.jpg') center center / cover;
}

.c-hero .u-wc {
  display: flex;
  position: relative;
  z-index: 3;
  margin-block: auto;
}

.c-hero__content {
  max-width: 810px;
}

.c-hero__slogan {
  display: block;
  font-family: var(--ff-heading);
  font-size: 24px;
  letter-spacing: .1em;
  position: relative;
  margin: 0 0 48px 270px;
}

.c-hero__slogan:before {
  content: '';
  position: absolute;
  right: calc(100% + 30px);
  top: 7px;
  width: 3000px;
  height: 17px;
  transform: skew(-30deg, 0);
  background: var(--clr-primary500);
}

.c-hero__content p {
  margin-bottom: 0;
  max-width: 580px;
}

.c-heroTextSlider {
  display: inline-grid;
}

.c-heroTextSlider span {
  grid-area: 1 / 2;
}

.c-heroTextSlider__item {
  opacity: 0;
  /* color: var(--clr-primary500); */
  transition: .3s opacity;
}

.c-heroTextSlider__item--active {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .c-hero__slogan { 
    margin-left: 160px;
  }
}

@media screen and (max-width: 600px) {
  .c-hero__slogan {
    font-size: 20px;
    margin: 0 0 20px 30px;
  }

  .c-hero__slogan::before {
    right: calc(100% + 24px);
    top: 6px;
    height: 14px;
  }

}

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

  .c-hero__slogan {
    font-size: 17px;
  }

  .c-hero__slogan:before {
    top: 4px;
  }

}

.c-hero__content .c-btnGroup {
  position: absolute;
  left: calc(50% + 303px);
  bottom: -16px;
}

.c-hero__content .c-btnGroup:before {
  content: '';
  position: absolute;
  height: 128px;
  bottom: 100%;
  width: 2px;
  left: 150px;
  background: var(--clr-primary500);
}

.c-hero__content .c-btnGroup:after {
  content: '';
  position: absolute;
  height: calc(var(--b-space-lg) + 1000px);
  top: calc(100% + 10px);
  width: 2px;
  left: 150px;
  background: var(--clr-primary500);
}

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

  .c-hero__content .c-btnGroup {
    left: auto;
    right: 75px;
  }

}

@media screen and (max-width: 980px) { 
  .c-hero__content .c-btnGroup {
    position: static;
  }
  .c-hero__content .c-btnGroup:before, .c-hero__content .c-btnGroup:after {
    display: none;
  }
}

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

.c-why > .u-wc h2 {
  position: relative;
}

.c-why > .u-wc h2:before {
  content: '';
  position: absolute;
  height: calc(var(--b-space-sm) - 24px);
  bottom: calc(100% + 12px);
  width: 2px;
  left: 175px;
  background: var(--clr-primary500);
}

.c-whySliderWrap {
  background: var(--clr-accent500) url('imgs/why-choose-us-bg.jpg') no-repeat center center / cover;
  color: white;
  padding: 78px 0;
  margin-top: var(--b-space-sm);
}

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

@media screen and (min-width: 981px) {

  .c-whySliderWrap .u-wc {
    padding: 0 145px;
  }
}

.c-whySliderWrap .u-wc:after {
  content: '';
  position: absolute;
  top: calc((72px + var(--b-space-sm)) * -1);
  bottom: calc((78px + var(--b-space)) * -1);
  width: 2px;
  left: 235px;
  background: var(--clr-primary500);
}

.c-whySlider .owl-dots {
  counter-reset: dots;
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

.c-whySlider .owl-dot {
  counter-increment: dots;
  transition: .3s color;
}

.c-whySlider .owl-dot.active, .c-whySlider .owl-dot:hover {
  color: var(--clr-primary500);
}

.c-whySlider .owl-dot:after {
  content: counter(dots) ".";
  font-size: 30px;
  flex-shrink: 0;
  font-family: var(--ff-heading);
}

.c-whySlider .owl-item {
  opacity: 0;
  transition: .3s opacity;
}

.c-whySlider .owl-item.active {
  opacity: 1;
}

.c-whyItem {
  padding-left: 187px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.c-whyItem h3 {
  max-width: 510px;
}

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

  .c-whySliderWrap .u-wc::after {
    left: 98px;
    bottom: calc(78px  * -1);
  }

  .c-why > .u-wc h2:before {
    left: 58px;

  }

}

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

  .c-whyItem {
    padding-left: 110px;
    min-height: 200px;
  }
}

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

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

@media screen and (max-width: 400px) {
  .c-whySliderWrap .u-wc::after {
    left: 68px;
  }

  .c-whyItem {
    padding-left: 80px;
  }

  .c-why > .u-wc h2::before {
    left: 43px;
  }
}

.c-sector {
  background: var(--clr-accent500);
  color: white;
}

.c-sector__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 40px;
  padding-right: 60px;
}

.c-sector__header .c-btn {
  position: relative;
}

.c-sector__header .c-btn:before {
  content: '';
  position: absolute;
  z-index: 2;
  height: calc( (var(--b-space) * 2) - 44px);
  bottom: calc(100% + 12px);
  right: 30px;
  width: 2px;
  background: var(--clr-primary500);
}

.c-sector__header h2 {
  margin: 0;
}

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

  .c-sector__header {
    padding: 0;
  }

  .c-sector__header .c-btn {
    display: none;
  }

}

.c-faq {
  max-width: 1008px;
  margin: 32px auto 0;
  counter-reset: faq;
  padding: 54px 0 100px;
  position: relative;
}

.c-faq:after {
  content: '';
  position: absolute;
  top: 0;
  left: 85px;
  bottom: 0;
  width: 2px;
  background: var(--clr-primary500);
}

.c-faqItem {
  counter-increment: faq;
  border-bottom: 2px solid var(--clr-primary500);
  margin-right: -107px;
}

@media screen and (max-width: 1224px) {
  .c-faqItem {
    margin-right: 0;
  }
}

.c-faqItem__title {
  position: relative;
  padding: 22px 45px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.c-faqItem__title:before {
  content: counter(faq) ".";
  font-size: 30px;
  flex-shrink: 0;
  font-family: var(--ff-heading);
  margin-right: 48px;
  margin-bottom: -6px;
}

.c-faqItem__title h4 {
  margin-bottom: -4px;
}


.c-faqItem__content {
  padding: 42px 50px 64px 172px;
  display: none;
}

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

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

  .c-faq {
    margin: 12px auto 0;
    padding: 32px 0 48px;
  }

  .c-faqItem__title {
    padding: 12px 0;
  }

  .c-faqItem__title h4 {
    margin-bottom: -3px;
  }

  .c-faqItem__title::before {
    font-size: 24px;
    margin-right: 28px;
    margin-bottom: -7px;
  }

  .c-faq::after {
    left: 25px;
  }

  .c-faqItem__content {
    padding: 19px 0 30px 60px;
  }
}

.c-simple .h2 {
  position: relative;
}

.c-simple .h2:before {
  content: '';
  position: absolute;
  z-index: 2;
  height: calc( (var(--b-space) * 2) - 44px);
  bottom: calc(100% + 32px);
  left: 87px;
  width: 2px;
  background: var(--clr-primary500);
}

@media screen and (min-width: 1101px) {

  .c-simple .h2:after {
    content: '';
    position: absolute;
    z-index: 2;
    height: 430px;
    top: calc(100% + 32px);
    left: 87px;
    width: 2px;
    background: var(--clr-primary500);
  }

}

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

  .c-simple .h2:before {
    height: calc( (var(--b-space) * 2) - 30px);
    bottom: calc(100% + 20px);
    left: 25px;
  }
}

.c-capabilities .u-wc {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  grid-gap: 8%;
  position: relative;
}

.c-capabilities .u-wc:before {
  content: '';
  position: absolute;
  height: 17px;
  max-width: 250px;
  width: 100%;
  background: var(--clr-primary500);
  transform: skew(-30deg, 0);
  left: 200px;
  top: 20px;
}

.c-capabilities .u-wc:after {
  content: '';
  position: absolute;
  height: 17px;
  max-width: 300px;
  width: 100%;
  background: var(--clr-primary500);
  transform: skew(-30deg, 0);
  right: 60px;
  bottom: -20px;
}

@media screen and (max-width: 980px) {
  .c-capabilities .u-wc:before, .c-capabilities .u-wc:after { 
    display: none;
  }
}

.c-capabilities__right {
  margin-bottom: 100px;
}

.c-capabilities__right h2 {
  text-align: right;
}

.c-capabilities__right img {
  display: block;
  margin-top: 50px;
}

.c-capabilities__left {
  width: 45%;
  flex-shrink: 0;
}

.c-capabilities__video {
  aspect-ratio: 1/1;
  display: block;
  object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 980px) {
  .c-capabilities .u-wc {
    flex-direction: column;
    grid-gap: 60px;
  }

  .c-capabilities__left {
    width: 100%;
  }

  .c-capabilities__right {
    margin-bottom: 0;
  }

  .c-capabilities__right h2 {
    text-align: left;
  }

  .c-capabilities__right img {
    max-width: 50%;
  }

}

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

  .c-capabilities .u-wc {
    grid-gap: 40px;
  }

  .c-capabilities__right img {
    margin-top: 26px;
  }

}

.c-about .u-wc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 8%;
  position: relative;
}

.c-about .u-wc:after {
  content: '';
  position: absolute;
  top: calc(var(--b-space) * -1);
  bottom: calc((var(--b-space) + 196px ) * -1);
  width: 2px;
  right: 110px;
  background: var(--clr-primary500);
}

@media screen and (max-width: 980px) {
  .c-about .u-wc:after {
    right: 90px;
  }
}

.c-about__content {
  max-width: 700px;
}

.c-about__content .c-btnGroup {
  margin-left: 28px;
}

.c-about__certifications {
  width: 205px;
  flex-shrink: 0;
  background: white;
  position: relative;
  z-index: 3;
  padding: 50px 0;
}

.c-certification {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: 40px;
  transform: translateX(47px);
}

.c-certification__item img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  .c-about__certifications {
    width: 135px;
  }

  .c-certification {
    transform: translateX(17px);
  }
}



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

  .c-about .u-wc {
    flex-direction: column-reverse;
    grid-gap: 40px;
  }

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

  .c-certification {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    grid-gap: 8%;
    transform: none;
  }

  .c-about .u-wc:after {
    display: none;
  }

}

@media screen and (max-width: 400px) {
  .c-about__content .c-btnGroup {
    margin-left: 13px;
  }
  
}


.c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
  border: 0;
  display: block;
  width: 100%;
  border: 1px solid #eeebec;
  padding: 0 32px;
  font-size: 21px;
  height: 85px;
  color: black;
  background: #eeebec;
  margin-bottom: 28px;
  transition: .3s border;
  font-family: inherit;
}

.c-form textarea {
  height: 230px;
  padding: 28px 32px;
}

.c-form textarea:focus, .c-form input[type="text"]:focus, .c-form input[type="email"]:focus {
  outline: none;
}

.c-form textarea.error, .c-form input[type="text"].error, .c-form input[type="email"].error {
  border: 1px solid red;
}

.c-form input[type="submit"] {
  -webkit-appearance: none;
  font-family: inherit;
  background: black;
  padding: 26px 32px;
  color: white;
  border: none;
  font-size: 21px;
  font-weight: 600;
  background: var(--clr-accent500);
  transition: .3s background, .3s opacity;
}

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

.c-form input[type="submit"]:disabled {
  cursor: wait;
  opacity: .7;
}

.status-msg {
  display: none;
  margin: 20px 0 0;
}

.genisys {
  position: absolute !important;
  z-index: -1;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
  color: white;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
}


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


  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
    height: 50px;
    margin-bottom: 8px;
    font-size: 16px;
    padding: 0 20px;
  }

  .c-form textarea {
    height: 160px;
    padding: 16px 20px;
  }

  .c-form input[type="submit"] {
    padding: 20px;
    font-size: 16px;
    margin-top: 8px;
  }

  .c-cursorBlink:after {
    left: 24px;
  }

  /* .c-form label {
    margin-bottom: 20px;
    padding: 20px 24px;
    min-height: 150px;
  } */

  .c-form__contents {
    min-height: 200px;
  }

  .c-form.c-form--step2 .c-form__contents {
    padding-top: 12px;
  }

  .c-form-thankyou p {
    margin-bottom: 12px;
  }
  
  .c-form__thankyou .c-form__contents {
    padding-top: 12px;
  }
  

}

hr {
  display: block;
  margin: 70px 0;
  height: 17px;
  max-width: 285px;
  width: 100%;
  background: var(--clr-primary500);
  transform: skew(-30deg, 0);
}

h1 + hr {
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  hr {
    display: block;
    margin: 32px 0;
    height: 14px;
  }

  h1 + hr {
    margin-top: 26px;
  }

}

.c-mainFooter {
  background: var(--clr-accent500);
  position: relative;
}

body:not(.page-home) .c-mainFooter:before {
  content: '';
  position: absolute;
  top: -17px;
  right: 20%;
  width: 6000px;
  height: 17px;
  background: var(--clr-primary500);
  transform: skew(30deg, 0);
}

@media screen and (max-width: 600px) {
  body:not(.page-home) .c-mainFooter:before {
    top: -14px;
    height: 14px;
  }
}

.c-mainFooter .u-wc {
  max-width: 1450px;
}

.c-mainFooter__top {
  margin: 0 auto;
  padding: 0 0 36px  97px;
  max-width: 1500px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  grid-gap: 60px;
}

.c-footerCols {
  display: flex;
  grid-gap: 7%;
  justify-content: space-between;
  margin-right: 20px;
}

.c-footerCols__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* .c-footerCols__item :last-child {
  margin-top: auto;
} */

.c-footerCols__item:first-of-type p span {
  padding: 0 8px;
}


.c-mainFooter__middle {
  padding: 100px 97px;
  position: relative;
}

.page-home .c-mainFooter__middle {
  border-top: 2px solid var(--clr-primary500);
}

.c-mainFooter__middle p {
  font-family: var(--ff-heading);
  font-size: 20px;
  color: #838383;
  letter-spacing: .05em;
}

.c-mainFooter__middle p, .c-mainFooter__middle a:not(.c-btn) {
  color: #838383;
}

.c-mainFooter__middle a:not(.c-btn):hover {
  color: var(--clr-primary500);
}

.c-mainFooter__middle h5, .c-mainFooter__middle h5 > a {
  color: white !important;
}

@media screen and (min-width: 991px) {

  .c-mainFooter__middle .c-backToTop {
    position: absolute;
    right: 120px;
    top: 60px;
    transform: rotate(-90deg);
    transform-origin: top right;
  }

}

@media screen and (max-width: 1200px) and (min-width: 991px) {
  .c-mainFooter__middle .c-backToTop {
    right: 20px;
  }
}

.c-mainFooter__bottom {
  border-top: 2px solid var(--clr-primary500);
  padding: 48px 97px;
  display: flex;
  justify-content: space-between;
}

.c-mainFooter__bottom p {
  font-size: 16px;
  margin: 0;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.c-mainFooter__bottom a, .c-mainFooter__bottom p {
  color: #838383;
}

.c-mainFooter__bottom a:not(.c-btn):hover {
  color: var(--clr-primary500);
}

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

.c-mainFooter__logo, .c-mainFooter__logo img {
  display: block;
  margin: 0;
}

.c-mainFooter__security {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 54px;
  margin-bottom: 32px;
  margin-top: -40px;
}


.c-securityDetails {
  display: flex;
  color: white;
}

.c-securityDetails__icon {
  background: var(--clr-primary500);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px;
  flex-shrink: 0;
}

.c-securityDetails__icon h4 {
  font-size: 38px;
}

.c-securityDetails__content {
  background: block;
  position: relative;
  background: black;
  padding: 97px 0 97px 97px;
}

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

.c-securityDetails__content p {
  font-size: 18px;
}

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

  .c-securityDetails {
    flex-direction: column;
  }

  .c-securityDetails__icon {
    position: relative;
    padding-right: 0;
  }

  .c-securityDetails__icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 5000px;
    background: var(--clr-primary500);
  }

}


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

  .c-mainFooter__top,  .c-mainFooter__middle,  .c-mainFooter__bottom {
    padding-inline: 0;
  }

  .c-mainFooter__top {
    flex-direction:  column-reverse;
  }

  .c-securityDetails {
    flex-direction: row;
  }

  .c-securityDetails__icon {
    padding: 60px 10px 60px 60px;
  }

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

  .c-securityDetails__content {
    padding: 60px 10px 60px 60px;
  }

  .c-mainFooter__logo {
    display: none;
  }


}

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


  .c-footerCols {
    flex-direction: column;
    grid-gap: 40px;
    margin-right: 0;
  }

  .c-footerCols__item:nth-of-type(1) { 
    width: 100%;
  }

  .c-mainFooter__middle .c-backToTop {
    margin-top: 32px;
  }



}

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

  .c-securityDetails {
    flex-direction: column;
  }

  .c-securityDetails__icon:after {
    display:  block;
  }

}

@media screen and (max-width: 600px) {
  /* .c-mainFooter__logo {
    max-width: 200px;
  } */

  .c-footerCols {
    flex-direction: column;
    grid-gap: 32px;
  }

  .c-footerCols__item:first-child {
    margin-bottom: 8px;
  }

  .c-mainFooter__middle {
    padding-block: 40px;
  }

  .c-mainFooter__bottom {
    flex-direction: column;
    grid-gap: 8px;
    padding: 30px 0;
  }

  .c-securityDetails__content p {
    font-size: 16px;
  }

  .c-securityDetails__icon h4 {
    font-size: 30px;
  }

  .c-securityDetails__icon, .c-securityDetails__content {
    padding: 40px 0 40px 40px;
  }

  .c-mainFooter__security {
    grid-gap: 32px;
    margin-bottom: 2px;
  }


}


.animate {
  opacity: 0;
  filter: blur(5px);
  visibility: hidden;
  transform-origin: top;
  transform:  rotate(1deg) scale(1.1) translateY(1.8%);
  transition: 1s all .3s, 0s visibility .3s;
}

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

.animate[animation="slow-zoom"] {
  filter: none;
  transform: scale(1);
  transform-origin: center center;
  transition: 1s opacity .3s, 20s transform .3s, 0s visibility .3s;
}

.animate[animation="slow-zoom"].show {
  transform: scale(1.15) rotate(4deg);
}

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

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

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

.c-fileUpload {
  border-radius: 4px;
  background: white;
  margin-bottom: 15px;
  position: relative;
  margin-top: 8px;
}

.c-fileUpload small {
  margin: 0;
  padding: 0;
}

/* .c-fileUpload label {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  justify-content: center;
  align-items: center;
  background-color: #fafbfb;
  border: 1px dashed #cccccc;
  color: #737476;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  height: 130px;
  transition: .3s background;
}

.c-fileUpload label span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-fileUpload label span:before {
  content: '';
  margin-right: 10px;
  color: #dbdce0;
  background: url('imgs/file.svg') center center / 10px 14px;
  width: 10px;
  height: 14px;
  flex-shrink: 0;
}
.c-fileUpload label:hover {
  background-color: #eeeeee;
}
.c-fileUpload label:hover i {
  color: #cfd1d4;
} */
/* .c-fileUpload input[type="file"] {
  appearance: none;
  visibility: hidden;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  position: absolute;
} */

.c-fileUpload {
  margin: 8px 0;
}

.c-fileUpload input[type="file"] {
  border: 1px dashed #cccccc;
  color: #737476;
  padding: 20px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.c-fileUpload__clear {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #cccccc;
  font-size: 11px;
  color: black;
  border: none;
  padding: 4px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s, .3s background;
}

.c-fileUpload__clear:hover {
  background: #dddddd;
}

.c-fileUpload--hasFiles .c-fileUpload__clear {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-progressBar {
  height: 4px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: .3s opacity;
  position: relative;
}

.c-progressBar--active {
  opacity: 1;
}

.c-progressBar__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #f6ca47;
  width: 0;
  transition: .3s width;
}

.c-mainFooter .c-footerContactText {
  text-transform: uppercase;
  color: #ABABAB;
  font-size: var(--ff-heading);
  letter-spacing: .05em;
  max-width: 250px;
  text-align: center;
  font-size: 17px;
  margin-top: 32px;
}

.c-mainFooter .c-footerContactText a {
  color: #A5BBFC;
}

.c-mainFooter .c-footerContactText a:hover {
  color: white;
}

.c-fileUpload__errors {
  display: block;
  color: red;
  font-size: 15px;
}

.c-fileUpload__errors:empty {
  display: none;
}

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

  .c-mainFooter .c-footerContactText {
    text-align: left;
    max-width: 100%;
    margin-top: 24px;
  }

  .c-mainFooter .c-footerContactText br {
    display: none;
  }

}