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

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


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

/* CSS vars */

:root {
  /* colors */
  --color-primary: #c1a366;
  --color-lightGrey: #F6F6F6;
  --color-text: #2d2d2d;
  /* heights */
  --height-header: 57px;
   /* spacing */
   --spacingLarge: 180px;
   --spacing: 148px;
   --spacingSmall: 90px;
}


@media screen and (max-width:1120px) { 
  :root {
    --spacing: 120px;
  }
}

@media screen and (max-width:768px) {
  :root {
    --spacing: 90px;
    --spacingSmall: 60px;
  }
}

@media screen and (max-width:600px) {
  :root {
    --spacing: 54px;
    --spacingSmall: 40px;
  }
} 

*, *: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: 'American Typewriter';    
  font-weight: 400;
	font-size: 15px;
	margin:0;
	color: var(--color-text);
  position: relative;
  line-height: 1.2;
  letter-spacing: .05em;
  padding-top: var(--height-header);
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

@media screen and (max-width: 600px) { 
  body {
    font-size: 14px;
  }
}

.u-wc{
	width:100%;
	max-width: 1383px;
	min-width: 320px;
  padding: 0 105px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
  transition: .3s padding;
}

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

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

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

@media screen and (max-width: 1500px) {
  .u-wc {
    padding: 0 80px;
  }

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

}

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

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

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

}

@media screen and (max-width: 980px) {
  .u-wc {
    padding: 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .u-wc {
    padding: 0 20px;
  }
}


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

.u-bg-light {
  background-color: var(--color-lightGrey);
}

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

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

h1 {
  font-family: 'Appareo';
  font-size: 35px;
  color: white;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: .025em;
  text-transform: uppercase;
  margin-bottom: -4px;
}

h2 {
  font-family: 'Appareo';
  font-size: 34px;
  line-height: 1.3;
  color: #3A3B39;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

h2:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 1px;
  background: var(--color-primary);
  margin: 22px auto 35px;
}


h3 {
  font-family: 'Appareo';
  font-weight: 400;
  color: #3A3B39;
  font-size: 21px;
  margin-bottom: 0;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

h3:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 90px;
  height: 1px;
  background: var(--color-primary);
  margin: 24px auto 35px;
}

* + h3 {
  margin-top: 36px;
}

h4 {
  font-family: 'Appareo';
  font-weight: 400;
  font-size: 24px;
}

h5 {
  font-family: 'Appareo';
   font-weight: 600;
   font-size: 16px;
}

p {
	line-height: 1.85;
  margin-bottom: 24px;
}

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

.p--lg {
  font-size: 18px;
}

@media screen and (max-width: 600px) { 
  p {
    line-height: 1.6;
    margin-bottom: 12px;
  }

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

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  h2:after {
    width: 60px;
    margin: 18px auto 30px;
  }

  h3 {
    font-size: 18px;
  }

  h3:after {
    width: 60px;
    margin: 16px auto 30px;
  }

}

a, a:focus{
   outline: 0;
}

a{
  color: var(--color-primary);
  text-decoration: none;
	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:#8b7548;
}

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

input{
  outline:none;
}

.c-btn {
  background: black;
  font-family: 'Appareo';
  font-size: 15px;
  padding: 19px 28px;
  min-width: 310px;
  text-align: center;
  display: inline-block;
  margin: 50px 0;
  color: white;
  transition: .3s background;
}

@media screen and (max-width: 600px) {
  .c-btn {
    margin: 24px 0;
    padding: 19px 20px;
  }
}

.c-btn:hover {
  background: #373737;
  color: white;
}

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

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

.c-section {
  padding: var(--spacing) 0;
}

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

.c-section--noPadding {
  padding: 0;
}

/*header styles*/

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

.c-mainHeader .u-wc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 980px) {
  .c-mainHeader .u-wc {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 981px) {
  .home .c-mainHeader__logo {
    position: relative;
    left: calc(50% - 18px);
    transition: .3s left;
  }
  .is-scrolled.home .c-mainHeader__logo {
    left: 0;
  }
}

.c-mainHeader__logo {
  color: #979768;
  text-transform: uppercase;
  font-size: 31px;
  font-family: 'Appareo';
  margin-bottom: -7px;
}

.c-mainHeader__logo:hover {
  color: #979768;
}


@media screen and (min-width: 981px) {
  .home .c-mainHeader__contacts {
    position: absolute;
    right: 60px;
    transition: .3s opacity, 0s visibility 0s;
  }

  .is-scrolled.home .c-mainHeader__contacts {
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s;
  }

  .home .c-mainHeader__nav {
    visibility: hidden;
    opacity: 0;
    transition: .3s opacity, 0s visibility .3s;
  }
  
  .is-scrolled.home .c-mainHeader__nav {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  body:not(.home) .c-mainHeader__contacts {
    display: none;
  }

}

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

  .c-mainHeader__contacts {
    right: 80px;
  }

}

@media screen and (min-width: 1501px) {
  .c-mainHeader__contacts {
    right: 105px;
  }
}

.c-mainHeader__contacts {
  display: flex;
  align-items: center;
  margin-bottom: -2px;
}

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

.c-mainHeader__contacts a {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  font-family: 'Appareo';
}

.c-mainHeader__contacts a:not(:first-child):before {
  content: '|';
  padding: 0 8px;
  color: var(--color-primary);
}

.c-mainMenu {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.c-mainMenu li {
  margin-left: 20px;
}

.c-mainMenu a {
  color: white;
  font-family: 'Appareo';
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .025em;
}

.c-mainMenu a:hover, .c-mainMenu .c-mainMenu__link--active {
  color: var(--color-primary);
}

@media screen and (max-width: 980px) {
  .c-mainMenu {
    position: fixed;
    height: calc(100% - var(--height-header));
    background: black;
    left: 0;
    right: 0;
    top: var(--height-header);
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    overflow-y: auto;
    transition: .3s opacity, 0s visibility .3s;
  }

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

  .c-mainMenu li {
    margin-left: 0;
    margin-top: 12px;
  }

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

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

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


.c-navIcon {
  display: none;
  width: 24px;
  height: 17px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 10;
  margin-left: 16px;
}

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

.c-navIcon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .3s ease-in-out; 
}
    
.c-navIcon span:nth-child(1) {
  top: 0px;
  transform-origin: left center; 
}

.c-navIcon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.c-navIcon span:nth-child(3) {
  top: 16px;
  transform-origin: left center; 
}

.c-navIcon--open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 5px; 
}

.c-navIcon--open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.c-navIcon--open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 16px;
  left: 5px;
}


.c-topMenu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.c-topMenu a {
  font-size: 14px;
  font-family: 'Appareo';
  text-transform: uppercase;
  color: #807f7f;
  padding: 0 12px;
  height: 105px;
  display: flex;
  align-items: center;
  position: relative;
  transition: .3s color, .3s height;
}

@media screen and (max-width: 1500px) {
  .c-topMenu a {
    height: 80px;
  }
}

@media screen and (max-width: 1200px) {
  .c-topMenu a {
    height: 60px;
  }
}

.c-topMenu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  height: 4px;
  opacity: 0;
  transition: .3s opacity;
}

.c-topMenu a:hover:after, .c-topMenu .c-topMenu__link--active:after {
  opacity: 1;
}

.c-topMenu li {
  margin: 0;
  padding: 0;
}

.c-topMenu a:hover, .c-topMenu .c-topMenu__link--active {
  color: black;
}

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

  .c-topMenu a {
    padding: 0 7px;
  }
}

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

  .c-topMenu {
    display: none;
  }
}


.c-logoBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-logoBar__item:not(:first-child) {
  margin-left: 60px;
}


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

  .c-logoBar__item:not(:first-child) {
    margin-left: 30px;
  }

}

.c-hero {
  height: calc(100vh - var(--height-header) - 210px);
  min-height: 600px;
  background: black url('imgs/hero.jpg') center center / cover;
}

@media screen and (max-width: 1500px) {
  .c-hero {
    height: calc(100vh - var(--height-header) - 160px);
  }
}

@media screen and (max-width: 1200px) {
  .c-hero {
    height: calc(100vh - var(--height-header) - 120px);
  }
}

@media screen and (max-width: 980px) {
  .c-hero {
    margin-top: 40px;
    height: calc(100vh - var(--height-header) - 80px);
  }
}

@media screen and (max-width: 600px) {
  .c-hero {
    margin-top: 20px;
    height: calc(100vh - var(--height-header) - 40px);
    min-height: 360px;
  }
}

.c-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 60px 0;
  position: relative;
}

.c-hero:after {
  content: '';
  height: 120px;
  width: 1px;
  background: #848484;
  margin-top: 24px;
  margin-bottom: 12px;
}

.c-hero h1 {
  font-family: 'American Typewriter';
  font-size: 18px;
  color: var(--color-primary);
  margin: 0 0 12px 0;
  text-transform: none;
  font-weight: 400;
  padding: 0;
}

.c-hero__content {
  color: white;
  max-width: 520px;
  margin: 0 auto 24px;
}

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

.c-hero__logo {
  margin: auto;
  flex-shrink: 1;
  overflow: hidden;
}

.c-hero__logo img {
  max-height: 100%;
  object-fit: contain;
}

.c-hero__mouse {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  background: url('imgs/mouse-icon.png') center center / 18px 43px;
  width: 18px; 
  height: 43px;
}

.c-hero__list {
  position: absolute;
  top: 0;
  right: -53px;
  transform: translateX(100%) rotate(90deg);
  transform-origin: top left;
  background: var(--color-primary);
  color: black;
  padding: 18px 32px;
  z-index: 2;
  font-size: 14px;
  text-transform: uppercase;
}

.c-hero__list:hover {
  background: #d8bb7f;
  color: black;
}

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


.c-hero__crest {
  position: absolute;
  top: -68px;
  left: -68px;
  width: 137px;
  height: 137px;
  background: url('imgs/crest.png') center center / 137px 137px;
}

@media screen and (max-width: 1200px) {
  .c-hero__mouse {
    top: calc(100% + 8px);
  }

  .c-hero__crest {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: url('imgs/crest.png') center center / 100px 100px;
  }

}

@media screen and (max-width: 980px) {
  .c-hero__mouse {
    display: none;
  }
  .c-hero:after {
    display: none;
  }
  .c-hero {
    padding: 60px;
  }

  .c-hero__crest {
    display: none;
  }

}

@media screen and (max-width: 600px) {
  .c-hero {
    padding: 30px;
  }
}

.c-miniNav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.c-miniNav__sep:before {
  content: '/';
  padding: 0 12px;
}

.c-miniNav a {
  border-bottom: 1px solid #f0eadf;
  font-size: 16px;
}

@media screen and (max-width: 500px) {
  .c-miniNav {
    flex-direction: column;
    text-align: center;
    margin-top: 24px;
  }
  .c-miniNav__sep {
    display: none;
  }

  .c-miniNav a {
    font-size: 15px;
    display: block;
  }

  .c-miniNav a:nth-of-type(n + 2) {
    margin-top: 8px;
  }
}

.l-featureCards {
  display: flex;
  flex-wrap: wrap;
}

.l-featureCards .c-featureCard  {
  width: 25%;
  height: calc(100vw / 4);
}

@media screen and (max-width: 1260px) {
  .l-featureCards .c-featureCard  {
    width: 50%;
    height: calc(100vw / 2);
    max-height: 400px;
  }
}

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

  .l-featureCards .c-featureCard  {
    width: 100%;
    height: 100vw;
    max-height: 300px;
  }

}

.c-featureCard {
  background-color: black;
  background-size: cover;
  background-position: center center;
  color: white;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  text-align: center;
}

.c-featureCard:hover {
  color: white;
}

.c-featureCard h4 {
  font-family: 'American Typewriter';
  font-size: 21px;
  margin: auto;
}

.c-featureCard__hover {
  background: black;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transform: scale(1.1);
  transition: .3s opacity, .3s transform;
}

.c-featureCard:hover .c-featureCard__hover {
  opacity: 1;
  transform: scale(1.01);
}

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

.c-featureCard__hover h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
}

.c-featureCard__more {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  color:  black;
  padding: 18px 32px;
  z-index: 2;
  font-size: 14px;
  text-transform: uppercase;
}

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

  .c-featureCard__more {
    padding: 16px 28px;
    font-size: 13px;
  }

}

.l-expectCards {
  margin: 50px 0;
}

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

  .l-expectCards {
    margin: 30px 0;
  }

}

.l-expectCards:first-child {
  margin-top: 0;
}

.l-expectCards:last-child {
  margin-bottom: 0;
}

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

  .l-expectCards {
    display: flex;
  }

  .l-expectCards .c-expectCard {
    width: calc((100% - 60px)  / 2);
    margin-right: 30px;
  }

  .l-expectCards .c-expectCard:last-child {
    margin-right: 0;
  }

}

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

  .l-expectCards .c-expectCard:nth-of-type(n + 2) {
    margin-top: 32px;
  }

}


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

.c-expectCard img {
  display: block;
  width: 100%;
  margin: 0 0 24px;
}

.c-expectCard h4 {
  color: black;
  text-transform: uppercase;
  font-family: 'American Typewriter';
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

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

  .c-expectCard img {
    margin: 0 0 16px;
  }

  .c-expectCard h4 {
    margin-bottom: 8px;
  }
}

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

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

.c-testimonial h5 {
  font-family: 'American Typewriter';
  font-weight: 400;
  font-size: 21px;
  color: var(--color-primary);
  margin: 32px 0 0;
  letter-spacing: .04em;
}

.c-testimonial h5 span {
  display: block;
  color: black;
  font-size: 16px;
  margin-top: 8px;
}

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

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

  .c-testimonial h5 {
    font-size: 18px;
    margin: 24px 0 0;
  }
  
  .c-testimonial h5 span {
    font-size: 15px;
  }
}

.c-heroVideo {
  background: url('imgs/mochbox-video.jpg') center center / cover;
  height: calc(100vh / 1.5);
  max-height: 770px;
  min-height: 480px;
}

.c-heroVideo__content {
  padding: 100px;
  text-align: center;
  max-width: 500px;
  color: white;
}

.c-heroVideo__content h4 {
  font-family: 'American Typewriter';
  font-size: 25px;
  margin: 0;
}

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

.c-heroVideo__play {
  margin: 24px auto 0;
  width: 125px;
  height: 125px;
  background: white;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  display: block;
  position: relative;
  transition: .3s background;
  cursor: pointer;
}

.c-heroVideo__play:hover {
  background: rgba(255,255,255,.8);
}

.c-heroVideo__play:after {
  content: '';
  position: absolute;
  width: 0; 
  height: 0; 
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid black;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -11px;
}

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

  .c-heroVideo {
    max-height: 500px;
    min-height: 300px;
  }

  .c-heroVideo__content h4 {
    font-size: 21px;
  }

  .c-heroVideo__content {
    padding: 40px;
    max-width: 320px;
  }

  .c-heroVideo__play {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-primary);
    margin-top: 20px;
  }

  .c-heroVideo__play:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid black;
    margin-left: -6px;
    margin-top: -10px;
  }


}

.c-projectsBlock {
  display: flex;
}

.c-projectsBlock__img {
  width: 50%;
  flex-shrink: 0;
  height: 670px;
}

.c-projectsBlock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-projectSlider {
  width: 50%;
  position: relative;
  background: black;
}


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

  .c-projectSlider .owl-nav .owl-next {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(90deg);
    transform-origin: top left;
  }

}

.c-projectSlider .owl-prev {
  display: none;
}

.c-projectSlider .owl-nav > * {
  background: var(--color-primary);
  color: black;
  padding: 18px 32px;
  z-index: 2;
  font-size: 14px;
  text-transform: uppercase;
  transition: .3s background;
}

.c-projectSlider .owl-nav > *:hover {
  background: #d8bb7f;
}

.c-projectItem {
  background: black;
  text-align: center;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  height: 670px;
}

.c-projectItem:last-child {
  margin-right: 0;
}

.c-projectItem h4 {
  font-family: 'American Typewriter';
  color: var(--color-primary);
  font-size: 21px;
  margin: 40px 0 24px;
}

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

.c-projectItem p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* .c-projectItem__logo {
  max-width: 125px;
} */

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

  .c-projectsBlock {
    display: block;
  }
  
  .c-projectsBlock__img {
    width: 100%;
    max-height: 300px;
  }
  
  .c-projectSlider {
    width: 100%;
  }

  .c-projectItem {
    height: auto;
    padding: 80px 60px;
  }

  .c-projectSlider .owl-nav {
    display: flex;
    background: grey;
  }

  .c-projectSlider .owl-nav > * {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .c-projectSlider .owl-nav .owl-prev {
    margin-right: 1px;
  }
  
}

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

  .c-projectItem {
    padding: 50px 30px;
  }

  .c-projectItem h4 {
    font-size: 18px;
  }

}

.c-pageBanner {
  --overlap: 100px;
}

.c-pageBanner__top {
  padding: 65px 0 calc(65px + var(--overlap));
}

.c-pageBanner__top h1 {
  color: black;
}

.c-pageBanner__bottom {
  margin-top: calc(var(--overlap) * -1);
  background-color: black;
  background-size: cover;
  background-position: center center;
  min-height: 454px;
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.c-pageBanner__bottom p {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.c-pageBanner__bottom .p--lg {
  max-width: 950px;
}

@media screen and (max-width: 600px) {
  .c-pageBanner__top {
    padding: 50px 0 calc(50px + var(--overlap));
  }

  .c-pageBanner__bottom {
    min-height: 300px;
    padding: 50px 40px;
  }
}

.c-mainFooter {
  padding: 80px 0;
  font-size: 13px;
}

.c-mainFooter__logo {
  display: block;
  margin: 0 0 36px 0;
}

.c-mainFooter a {
  color: var(--color-text);
}

.c-mainFooter a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

.c-mainFooter .u-wc {
  display: flex;
  align-items: flex-end;
}

.c-mainFooter__col:nth-of-type(2), .c-mainFooter__col:nth-of-type(3) {
  margin-left: 40px;
}

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

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

.c-mainFooter h5 {
  font-family: 'Appareo';
  text-transform: uppercase;
  font-size: 17.5px;
  margin: 50px 0 18px;
  font-weight: 400;
}

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

.c-mainFooter h4 {
  font-family: 'Appareo';
  text-transform: uppercase;
  font-size: 21px;
  margin: 0 0 32px;
  font-weight: 400;
}

.c-footerMenu a, .c-footerMenu span {
  line-height: 1.85;
  display: block;
}

.c-footerMenu {
  display: flex;
}

.c-footerMenu__col:nth-of-type(1) {
  width: 135px;
}

.c-contactForm {
  margin-top: 32px;
}

.c-contactForm__input {
  position: relative;
  margin-bottom: 17px;
}

.c-contactForm__input label {
  position: absolute;
  top: 17px;
  left: 30px;
  color: #a3a2a2;
  font-size: 15px;
  transition: .3s opacity, 0s visibility 0s;
}

.c-contactForm__input.has-value label {
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

.c-contactForm__input label span {
  color: white;
  border-bottom: 1px solid #a3a2a2;
}

.c-contactForm__input--light label span {
  color:  var(--color-text);
}

.c-contactForm__input input {
  background: black;
  height: 53px;
  padding: 0 30px;
  display: block;
  width: 100%;
  border: none;
  font-size: 15px;
  color: white;
}

.c-contactForm__input--light input {
  background: white;
  color: black;
}

.c-contactForm__input input.error {
  border-left: 4px solid red;
}

.c-contactForm input[type="submit"] {
  --webkit-appearance: none;
  color: black;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  background: none;
  border: none;
  font-family: 'Appareo';
  letter-spacing: .04em;
  margin-top: 12px;
}

.status-msg {
  display: none;
  text-align: center;
  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;
}

@media screen and (max-width: 600px) {
  .c-contactForm {
    margin-top: 24px;
  }
}

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

  .c-mainFooter .u-wc {
    flex-wrap: wrap;
  }

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

  .c-mainFooter__col:nth-of-type(3) {
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
  }

}

@media screen and (max-width: 680px) and (min-width: 481px) {
  .c-footerMenu {
    display: block;
  }
}

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

  .c-mainFooter__col {
    width: 100%;
    margin-left: 0 !important;;
  }

  .c-mainFooter__col:nth-of-type(n + 2) {
    margin-top: 24px;
  }

  .c-mainFooter h5 {
    font-size: 17px;
    margin: 24px 0 12px;
  }

  .c-mainFooter h4 {
    font-size: 18px;
    margin: 0 0 24px;
  }

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

  .c-contactForm__input {
    margin-bottom: 12px;
  }

  .c-mainFooter__logo {
    max-width: 107px;
  }

}


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

.c-video h4 {
  font-family: 'American Typewriter';
  font-size: 21px;
  margin: 0;
}

.c-video p {
  font-size: 16px;
  color: black;
}

.c-video__play {
  margin: 0 auto 28px;
  width: 125px;
  height: 125px;
  background: white;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  display: block;
  position: relative;
  transition: .3s background;
  cursor: pointer;
}

.c-video__play:hover {
  background: rgba(255,255,255,.8);
}

.c-video__play:after {
  content: '';
  position: absolute;
  width: 0; 
  height: 0; 
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid black;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -11px;
}

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

  .c-video h4 {
    font-size: 18px;
  }

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

  .c-video__play {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-primary);
    margin-bottom: 20px;
  }

  .c-video__play:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid black;
    margin-left: -6px;
    margin-top: -10px;
  }


}



.l-titleCards {
  margin: 50px 0 18px;
}

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

  .l-titleCards {
    margin: 30px 0 18px;
  }

}

.l-titleCards:first-child {
  margin-top: 0;
}

.l-titleCards:last-child {
  margin-bottom: 0;
}

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

  .l-titleCards {
    display: flex;
  }

  .l-titleCards .c-titleCard {
    width: calc((100% - 60px)  / 2);
    margin-right: 30px;
  }

  .l-titleCards .c-titleCard:last-child {
    margin-right: 0;
  }

}

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

  .l-titleCards .c-titleCard:nth-of-type(n + 2) {
    margin-top: 32px;
  }

}


.c-titleCard {
  position: relative;
}

.c-titleCard img {
  display: block;
  width: 100%;
  margin: 0
}

.c-titleCard h4 {
  color: black;
  text-transform: uppercase;
  font-family: 'American Typewriter';
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}


.c-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,.5);
  display: flex;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

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


.c-popup__box {
  margin: auto;
  max-width: 438px;
  width: 100%;
  padding: 55px 33px 27px;
  background: var(--color-primary);
  position: relative;
  overflow-y: auto;
  max-height: 100%;
}

.c-popup__close {
  background: none;
  border: none;
  color: white;
  position: absolute;
  top: 12px;
  left: 12px;
}

.c-popup__box h4 {
  font-family: 'American Typewriter';
  font-size: 19px;
  color: white;
  text-align: center;
  margin: 0 auto 8px auto;
  max-width: 300px;
  line-height: 1.4;
}

.c-popup__box h4 span {
  color: black;
  border-bottom: 1px solid #a08753;
}

.c-popup__box p {
  color: white;
  text-align: center;
  margin: 0 auto;
  max-width: 300px;
}