html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Mazzard";
  src: url("/fonts/MazzardL-Regular.otf");
}

* {
  font-family: "Mazzard", sans-serif;
  color: #333;
  box-sizing: border-box;
}

.header {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(59.2deg, rgba(0, 0, 0, 0.8) -0.35%, rgba(0, 0, 0, 0) 220.46%);
}

.header video {
  position: absolute;
  z-index: 21;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
}

.header .container {
  position: relative;
  z-index: 25;
}

main {
  background: linear-gradient(270deg, rgba(8, 0, 99, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.header-1 {
  font-size: 24px;
  line-height: 1.3em;
}

.header-2 {
  font-size: 18px;
  line-height: 1.2em;
  color: #080063;
}

.highlight {
  padding: 5px;
  display: inline-block;
}

.lang {
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 0 5px 20px;
  background: linear-gradient(41.21deg, #000000 -0.35%, rgba(0, 0, 0, 0) 220.46%);
  z-index: 30;
  width: 120px;
}

.lang > * {
  color: #fff;
  text-decoration: none;
}

.lang .enable { color: #A9A9A9 }

@media(min-width: 768px) {
  .header-1 { font-size: 30px }
}

@media(min-width: 960px) {
  .header-1 { font-size: 36px }
  .highlight { padding: 10px }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media(min-width: 1080px) {
  .container {
    width: 1000px;
    padding-left: 0;
    padding-right: 0;
  }
}

p {
  font-size: 18px;
  line-height: 1.2em;
}

.underline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.line {
  border-bottom: 1px solid #C4C4C4;
  width: 100%;
}

.m-t-20 { margin-top: 20px }
.m-t-50 { margin-top: 50px }
.m-t-100 { margin-top: 100px }
.m-b-30 { margin-bottom: 30px }
.m-b-100 { margin-bottom: 100px }

.button {
  height: 40px;
  background: linear-gradient(59.2deg, rgba(0, 0, 0, 0.8) -0.35%, rgba(0, 0, 0, 0) 220.46%);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  width: auto;
  font-size: 18px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  border: 0;
}

.stick-btn {
  position: fixed;
  z-index: 20;
  bottom: 20px;
}

@media (max-width: 350px) {
  .stick-btn { font-size: 16px }
}

.stick-btn.cta { right: 20px }
.stick-btn.tel { left: 20px }

/*
* Form
*/
form {
  border: 8px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  min-width: 200px;
  width: 100%;
}

@media(min-width: 440px) {
  form { width: 400px }
}

form legend {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}

form textarea,
form input {
  height: 40px;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #080063;
  font-size: 18px;
  border: none;
  background: linear-gradient(72.66deg, #FFFFFF -1.54%, #000000 371.51%);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

form textarea {
  height: 80px;
  resize: none;
  padding-top: 10px;
}

form input[type="submit"] {
  color: #fff;
  margin-top: 30px;
  padding: 0;
  background: linear-gradient(44.29deg, rgba(0, 0, 0, 0.8) -0.35%, rgba(0, 0, 0, 0) 220.46%);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media(min-width: 768px) {
  form legend { font-size: 44px }
}

/*
* Header block
*/
.header-block {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}

.header-block .description {
  width: 100%;
  order: 1;
}

.header-block .description .header-1 {
  line-height: 1;
}

.logo {
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}

@media(min-width: 1080px) {
  .logo { margin: -10px -10px 0 }
  .header-block .description .header-1 {
    margin-left: -30px;
  }

  .header-block .description {
    width: 450px;
    margin-left: 30px;
    position: absolute;
    order: 0;
    margin-right: 0;
    right: 0;
    line-height: 1.1em;
  }
}

/*
* Delivery
*/
.delivery .highlight {
  color:#fff ;
  background: linear-gradient(72.42deg, #000000 -0.35%, rgba(0, 0, 0, 0) 220.46%);
}

.delivery-wrapper p {
  font-size: 16px;
  width: 100%;
}

.delivery_item { margin-top: 50px }

.delivery_item .line {
  display: inline-flex;
  margin-bottom: 6px;
  order: 1;
  flex-grow: 1;
  width: auto;
}

@media(min-width: 768px) {
  .delivery-wrapper p { width: 400px }
  .delivery_item .line { order: 0 }
  .delivery_item:nth-child(even) header { margin-left: 300px }

  .delivery_item:nth-child(odd) .line {
    width: 300px;
    flex-grow: 0;
  }

  .delivery_item:nth-child(even) .line {
    flex-grow: 1;
    width: auto;
  }

  .delivery_item:nth-child(odd) p { margin-left: 140px }
  .delivery_item:nth-child(even) p { margin-left: 300px }
}

@media(min-width: 960px) {
  .delivery-wrapper p { width: 560px }
  .delivery_item:nth-child(even) header { margin-left: 380px }

  .delivery_item:nth-child(odd) .line {
    width: 380px;
    flex-grow: 0;
  }

  .delivery_item:nth-child(even) .line {
    flex-grow: 1;
    width: auto;
  }

  .delivery_item:nth-child(odd) p { margin-left: 140px }
  .delivery_item:nth-child(even) p { margin-left: 380px }
}

/*
* Support
*/
.support {
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: space-around;
  flex-direction: column
}

.support-item {
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.support-item img {
  height: 120px;
  width: auto;
}

.support-item p {
  max-width: 160px;
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
}

@media(min-width: 768px) {
  .support { flex-direction: row }
}

/*
* Market
*/
.market { padding-bottom: 100px }

.market .description { width: 100% }

.market .description .header-1 { line-height: 1 }

.subtext { margin: 20px 0 50px }

.map-wrapper {
  width: 100%;
  order: 1;
  position: relative;
  display: none;
}

.map-wrapper.active { display: block }

.map { width: 100% }

.location { position: absolute }

.usa .location:nth-of-type(1) {
  top: 23%;
  right: 7%;
}
.usa .location:nth-of-type(2) {
  bottom: 31%;
  right: 16%;
}
.usa .location:nth-of-type(3) {
  bottom: 9%;
  right: 12%;
}
.usa .location:nth-of-type(4) {
  top: 28%;
  right: 34%;
}
.usa .location:nth-of-type(5) {
  bottom: 17%;
  right: 42%;
}
.usa .location:nth-of-type(6) {
  left: 8%;
  bottom: 38%;
}

.canada .location:nth-of-type(1) {
  bottom: 19%;
  right: 22%;
}
.canada .location:nth-of-type(2) {
  bottom: 8%;
  right: 33%;
}

.location .details {
  position: absolute;
  display: none;
  bottom: 15px;
  padding: 10px;
  width: 125px;
  z-index: 10;
  background: linear-gradient(78.33deg, #000000 -0.35%, rgba(0, 0, 0, 0) 220.46%);
}

.location img { cursor: pointer }
.location img:hover + .details { display: block }
.location .details.l { left: -130px }
.location .details.r { right: -130px }

.details h3,
.details p,
.details b { color: #fff }

.details p {
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}

.row,
.column { display: flex }
.column { flex-direction: column }

@media(min-width: 1080px) {
  .market .description {
    width: 500px;
    margin-left: 100px;
  }

  .market .description .header-1 { margin-left: -100px }

  .market .description + .column {
    flex-direction: row;
    margin-top: 50px;
  }

  .map-wrapper {
    width: 50%;
    order: 0;
  }

  .subtext {
    width: 50%;
    margin: 0 0 0 50px;
  }
}

/*
* FAQ
*/
.faq { padding-bottom: 100px }
.faq .highlight {
  color:#fff ;
  background: linear-gradient(78.16deg, #000000 -0.35%, rgba(0, 0, 0, 0) 220.46%);
  margin-right: -5px;
}

.accordion-btn {
  display: flex;
  position: relative;
  cursor: pointer;
}

.accordion-btn p {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  max-width: 80%;
}

@media(min-width: 768px) {
  .accordion-btn p { font-size: 20px }
}

.accordion-btn .line {
  display: inline-flex;
  border-color: #696969;
  margin-bottom: 5px;
  flex-grow: 1;
  width: auto;
}

.accordion-btn img {
  position: absolute;
  right: 20px;
  height: 5px;
}

.accordion-content { display: none }

.accordion-btn.active img { transform: rotate(180deg) }

.accordion-btn.active + .accordion-content { display: flex }

.error {
  color: #f00;
  font-size: 14px;
  display: none;
}

.error.active { display: block }

.calc-wrapper,
.calc {
  width: 100%;
}

.calc-wrapper { justify-content: space-between }

.calc {
  padding: 40px;
  border: 1px solid #C4C4C4;
  justify-content: inherit;
  background: #fff;
}

.calc-header {
  font-weight: normal;
  font-size: 24px;
}

.calc-label {
  font-size: 14px;
  padding-left: 10px;
}

#map-selector,
.calc input,
.calc select {
  height: 30px;
  width: 100%;
  padding-left: 10px;
  border: 1px solid #000000;
  background: #fff;
  font-size: 16px;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}

#map-selector { width: auto }

.price-info {
  font-style: 16px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
}

.price-info strong { font-size: 18px }

@media(min-width: 1080px) {
  .calc-wrapper { flex-direction: row }
  .calc { width: calc(50% - 10px) }
}

footer {
  padding: 15px 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(8, 0, 99, 0.1) 100%);
}