.section__footer {
    margin-top: 20px
}

@media only screen and (max-width: 580px) {
    .section__footer {
        margin-top:30px
    }
}

 .section-footer {
    padding-top: 0px;
    position: relative;
    text-align: center
}

.section-footer i {
  margin-left:5px
}

 .section-footer::before {
    background-color: #fff;
    content: '';
    height: 1px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 80px;
    display: none;
}

@media only screen and (max-width: 580px) {
     .section-footer {
        padding-top:30px
    }
}

 .section-footer a {
   display: inline-block;
   font-weight: 700;
   text-decoration: none;
   font-family: 'Blender Pro', sans-serif;
   letter-spacing: 3px;
   font-size: 1.5em;
   text-transform: uppercase;
   color:#fb8c00;
    font-weight: 800;
   opacity: .7;
   line-height: 1.1;
  }

  .section-footer a:hover {
   opacity: .8;
    color: #fb8c00;
}

@media only screen and (max-width: 768px) {
     .section-footer a {
        margin-right:30px;
        font-size: 1.5em;
    }
}

 .section-footer a span {
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .1rem;
    padding-left: 15px
}

@media only screen and (max-width: 768px) {
     .section-footer a span {
        display:none;
    }
}

 .section-footer a:hover {
    color: #fb8c00
}


.active a {
    opacity: .5!important;
}

.top-margin-40 {
    margin: 40px 0 0 0
}


/* Buttons */
.btn {
  background-color: #10131a;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-family: "Merriweather", serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 3.3;
  letter-spacing: 0.08em;
  padding: 0 40px 0;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn .btn_icon {
  font-size: 14px;
  padding-left: 8px;
  position: relative;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn:hover {
  background-color: #10131a;
  color: #fff;
}
.btn:hover .btn_icon {
  transform: translateX(3px);
}
.btn:focus {
  color: #fff;
  outline: none;
}
.btn:active, .btn:active:focus {
  box-shadow: none;
  outline: none;
}
.btn_gost_white {
  background-color: transparent;
  border: 2px solid #fff;
}
.btn_gost_white::before {
  content: '';
  border-top: 2px solid #fff;
  height: 2px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  width: 0%;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn_gost_white:hover {
  background-color: transparent;
  color: #fff;
}
.btn_gost_white:hover::before {
  width: 100%;
}
.btn_gost_black {
  background-color: transparent;
  border: 2px solid #10131a;
  color: #10131a;
}
.btn_gost_black::before {
  content: '';
  border-top: 2px solid #10131a;
  height: 2px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  width: 0%;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn_gost_black:hover {
  background-color: transparent;
  color: #10131a;
}
.btn_gost_black:hover::before {
  width: 100%;
}
.btn_gost {
  background-color: transparent;
  border: 0;
  color: #10131a;
  font-weight: 600;
  padding: 0;
}
.btn_gost:hover {
  background-color: transparent;
  border: 0;
  color: #00ffd2;
}
.btn_fullid {
  width: 100%;
}
.btn_effect:hover::before, .btn_effect:hover::after {
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.btn_effect:hover::before {
  background-color: rgba(224, 34, 130, 0.75);
  animation: color_1 .2s infinite, pause 4s infinite;
}
.btn_effect:hover::after {
  background-color: rgba(0, 255, 210, 0.75);
  animation: color_2 .2s infinite, pause 4s infinite;
}
.btn.disabled {
  opacity: 1;
}

@-webkit-keyframes color_1 {
  0%, 100% {
    top: 0;
    left: 0;
  }
  20% {
    top: -2px;
    left: -2px;
  }
  40% {
    top: 2px;
    left: -2px;
  }
  60% {
    top: 2px;
    left: 2px;
  }
  80% {
    top: 2px;
    left: -2px;
  }
}
@keyframes color_1 {
  0%, 100% {
    top: 0;
    left: 0;
  }
  20% {
    top: -2px;
    left: -2px;
  }
  40% {
    top: 2px;
    left: -2px;
  }
  60% {
    top: 2px;
    left: 2px;
  }
  80% {
    top: 2px;
    left: -2px;
  }
}
@-webkit-keyframes color_2 {
  0%, 100% {
    top: 0;
    left: 0;
  }
  20% {
    top: 2px;
    left: 2px;
  }
  40% {
    top: -2px;
    left: 2px;
  }
  60% {
    top: -2px;
    left: -2px;
  }
  80% {
    top: -2px;
    left: 2px;
  }
}
@keyframes color_2 {
  0%, 100% {
    top: 0;
    left: 0;
  }
  20% {
    top: 2px;
    left: 2px;
  }
  40% {
    top: -2px;
    left: 2px;
  }
  60% {
    top: -2px;
    left: -2px;
  }
  80% {
    top: -2px;
    left: 2px;
  }
}
@-webkit-keyframes pause {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pause {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.btn__load__col {
  margin-top: 100px;
}
.btn__load__col .btn__load {
  background-color: transparent;
  border: 1px solid #10131a;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
  position: relative;
  height: 40px;
  width: 40px;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn__load__col .btn__load:hover, .btn__load__col .btn__load:focus {
  background-color: #10131a;
}
.btn__load__col .btn__load:hover::after, .btn__load__col .btn__load:hover::before, .btn__load__col .btn__load:focus::after, .btn__load__col .btn__load:focus::before {
  background-color: #fff;
}
.btn__load__col .btn__load::after, .btn__load__col .btn__load::before {
  content: '';
  background-color: #10131a;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.btn__load__col .btn__load::after {
  height: 2px;
  width: 14px;
}
.btn__load__col .btn__load::before {
  height: 14px;
  width: 2px;
}
.btn__load__col .btn__load svg ellipse {
  stroke: #10131a;
}
.btn__load__col .btn__load__text {
  color: #10131a;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: block;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

button:focus {
  outline: none;
}




.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.morph-button-to-modal-wrapper {
  position: relative;
  overflow: visible;
  top: 80vh;
  left: 10vw;
  width: 3.2rem;
  height: 3.2rem;
}

.morph-button-to-modal {
  position: relative;
  top: 0;
  bottom: 0;
  overflow: hidden;
  min-width: 3.2rem;
  min-height: 3.2rem;
  width: 3.2rem;
  max-height: 3.2rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  will-change: content, width, max-width, max-height, transform;
  -webkit-transition-property: width, max-width, max-height, border-color, border-radius, background-color;
  transition-property: width, max-width, max-height, border-color, border-radius, background-color;
  -webkit-transition-duration: 350ms, 350ms, 350ms, 200ms, 200ms, 400ms;
          transition-duration: 350ms, 350ms, 350ms, 200ms, 200ms, 400ms;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
          transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  -webkit-transition-delay: 100ms, 100ms, 200ms, 400ms, 400ms, 200ms;
          transition-delay: 100ms, 100ms, 200ms, 400ms, 400ms, 200ms;
}
.morph-button-to-modal.open {
  z-index: 1000;
  width: 90rem;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  border-color: transparent;
  border-radius: 1rem;
  background-color: #394144;
  -webkit-transition-delay: 200ms, 200ms, 200ms, 200ms, 200ms, 200ms;
          transition-delay: 200ms, 200ms, 200ms, 200ms, 200ms, 200ms;
}
.morph-button-to-modal button {
  appearence: none;
  background: none;
  border: none;
  padding: 0;
}
.morph-button-to-modal .morph-button-enter {
  opacity: 0.01;
}
.morph-button-to-modal .morph-button-enter.morph-button-enter-active {
  opacity: 1;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.morph-button-to-modal .morph-button-leave {
  opacity: 1;
}
.morph-button-to-modal .morph-button-leave.morph-button-leave-active {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
.morph-button-to-modal .morph-modal-enter {
  opacity: 0.01;
}
.morph-button-to-modal .morph-modal-enter.morph-modal-enter-active {
  opacity: 1;
  -webkit-transition-property: opacity 320ms ease-out 500ms;
  transition-property: opacity 320ms ease-out 500ms;
}
.morph-button-to-modal .morph-modal-leave {
  opacity: 1;
}
.morph-button-to-modal .morph-modal-leave.morph-modal-leave-active {
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}
.morph-button-to-modal .morph-button {
  position: absolute;
  width: 100%;
  height: 100%;
}
.morph-button-to-modal .morph-modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  padding: 2rem;
}
.morph-button-to-modal .morph-modal-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #545e61;
  font-size: 2rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.morph-button-to-modal .btn-close {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  color: #b0b5b8;
  font-size: 2.4rem;
}
.morph-button-to-modal .morph-modal-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow-y: auto;
  max-height: calc(100vh - 14rem);
  font-size: 1.5rem;
}

.device-entry-info-modal .morph-modal-enter .device-details-info > * {
  border-color: transparent;
}
.device-entry-info-modal .morph-modal-enter .device-details-info > * > * {
  opacity: 0.01;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * {
  border-left-color: #545e61;
  -webkit-transition: border-color 250ms ease-in 500ms;
  transition: border-color 250ms ease-in 500ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > * {
  opacity: 1;
  -webkit-transition: opacity 300ms ease-in 420ms;
  transition: opacity 300ms ease-in 420ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(1) {
  -webkit-transition-delay: 452ms;
          transition-delay: 452ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(2) {
  -webkit-transition-delay: 484ms;
          transition-delay: 484ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(3) {
  -webkit-transition-delay: 516ms;
          transition-delay: 516ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(4) {
  -webkit-transition-delay: 548ms;
          transition-delay: 548ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(5) {
  -webkit-transition-delay: 580ms;
          transition-delay: 580ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(6) {
  -webkit-transition-delay: 612ms;
          transition-delay: 612ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(7) {
  -webkit-transition-delay: 644ms;
          transition-delay: 644ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(8) {
  -webkit-transition-delay: 676ms;
          transition-delay: 676ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(9) {
  -webkit-transition-delay: 708ms;
          transition-delay: 708ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(10) {
  -webkit-transition-delay: 740ms;
          transition-delay: 740ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(11) {
  -webkit-transition-delay: 772ms;
          transition-delay: 772ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(12) {
  -webkit-transition-delay: 804ms;
          transition-delay: 804ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(13) {
  -webkit-transition-delay: 836ms;
          transition-delay: 836ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(14) {
  -webkit-transition-delay: 868ms;
          transition-delay: 868ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(15) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(16) {
  -webkit-transition-delay: 932ms;
          transition-delay: 932ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(17) {
  -webkit-transition-delay: 964ms;
          transition-delay: 964ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(18) {
  -webkit-transition-delay: 996ms;
          transition-delay: 996ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(19) {
  -webkit-transition-delay: 1028ms;
          transition-delay: 1028ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(20) {
  -webkit-transition-delay: 1060ms;
          transition-delay: 1060ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(21) {
  -webkit-transition-delay: 1092ms;
          transition-delay: 1092ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(22) {
  -webkit-transition-delay: 1124ms;
          transition-delay: 1124ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(23) {
  -webkit-transition-delay: 1156ms;
          transition-delay: 1156ms;
}
.device-entry-info-modal .morph-modal-enter.morph-modal-enter-active .device-details-info > * > *:nth-child(24) {
  -webkit-transition-delay: 1188ms;
          transition-delay: 1188ms;
}
.device-entry-info-modal .modal-button {
  font-size: 3.2rem;
}
.device-entry-info-modal .info-key-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
  line-height: 2.5;
}
.device-entry-info-modal .info-key-value, .device-entry-info-modal .info-key-value .info-key, .device-entry-info-modal .info-key-value .info-value {
  margin: 0;
}
.device-entry-info-modal .info-key-value .info-key {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow: hidden;
  padding-right: 1em;
  color: #fff;
  font-weight: 600;
  text-overflow: ellipsis;
}
.device-entry-info-modal .info-key-value .info-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: right;
  color: #b0b5b8;
}
.device-entry-info-modal .device-details-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
}
.device-entry-info-modal .device-details-info > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33333%;
          flex: 0 1 33.33333%;
  max-width: 33.33333%;
  padding: 0 3rem;
  border-left: 0.1rem solid #545e61;
}
.device-entry-info-modal .device-details-info > *:first-of-type {
  border: none;
  padding-left: 0;
}
.device-entry-info-modal .device-details-info > *:last-of-type {
  padding-right: 0;
}
.device-entry-info-modal .sub.info-key::before {
  content: "↳";
  margin-right: 0.5em;
  font-family: sans-serif;
  color: #b0b5b8;
}
.device-entry-info-modal .device-details-info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-bottom: 4rem;
  padding: 2.4rem 0 1.8rem;
  border-bottom: 0.1rem solid #545e61;
}
.device-entry-info-modal .device-details-info-header .device-image {
  margin-right: 2.8rem;
  color: #36d3b4;
  font-size: 6.4rem;
}
.device-entry-info-modal .device-details-info-header .device-name, .device-entry-info-modal .device-details-info-header .device-online-status {
  display: block;
}
.device-entry-info-modal .device-details-info-header .device-name {
  font-size: 2.4rem;
  font-weight: 500;
}
.device-entry-info-modal .device-details-info-header .device-online-status {
  font-style: italic;
}
.device-entry-info-modal .device-details-info-header .device-online-status::before {
  content: "(";
}
.device-entry-info-modal .device-details-info-header .device-online-status::after {
  content: ")";
}
.device-entry-info-modal .device-volume {
  display: inline-block;
  width: 100%;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
}
.device-entry-info-modal .device-os-and-connection .fa-check {
  color: #24E873;
}
.device-entry-info-modal .device-os-and-connection .fa-times {
  color: #FF005A;
}



.centered {
  text-align: center;
}


.hyperlink {
  text-decoration: underline;
  font-weight:500;
  color: #fff;
}


.title-desc-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.title--description-position-under-image .title-desc-wrapper .title-desc-inner {
    padding: 80px 8% 0
}

.title-desc-inner {
    max-width: 60%;
    z-index: 100;
    position: relative
}

.collection-type-index .content-inner .title-desc-inner {
    margin-bottom: 80px
}

h1.page-title {
    font-family: "Source Sans Pro",sans-serif;
    font-size: 39px;
    font-weight: 700;
    letter-spacing: 7px;
    font-family: bebas-neue-by-fontfabric;
    font-size: 6em;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 13px;
    line-height: 1em;
    text-decoration: none;
    max-width: 100%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    color: #f5f5f5;
    position: relative;
    z-index: inherit
}

.title--description-position-under-image h1.page-title {
    color: #c2c2c2
}

.page-desc {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin: 25px 0 0;
    max-width: 100%;
    color: #d6d6d6;
    position: relative;
    z-index: inherit
}

.page-desc p {
    margin: 0 0 .75em;
    font-family: "PT Serif",serif;
    font-size: 17px;
    font-family: Space Mono;
    font-size: 1.1em;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.6em;
    text-decoration: none;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    position: relative;
    z-index: inherit
}

.page-desc p:last-child {
    margin: 0
}

.page-desc a,.page-desc a:visited {
    color: #d6d6d6;
    background-color: transparent;
    text-decoration: underline
}

.page-desc:empty {
    display: none
}

.extra-description-formatting .page-desc p {
    width: 100%
}

.extra-description-formatting .page-desc p>strong {
    display: block;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 36px;
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
    color: #171717;
    position: relative;
    z-index: inherit;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none
}

.extra-description-formatting .page-desc p:last-child>a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    letter-spacing: 1px;
    line-height: 1.6em;
    text-decoration: none;
    padding: 1em 1.75em;
    background-color: #171717;
    display: inline-block;
    line-height: 1em;
    margin: 10px 0 0;
    color: #fff;
    border: none;
    -webkit-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -moz-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -ms-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -o-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    position: relative;
    z-index: inherit
}

.extra-description-formatting .page-desc p:last-child>a:hover {
    background-color: rgba(23,23,23,.8)
}

.extra-description-formatting .page-desc p:empty {
    display: none
}

.extra-description-formatting.title-background .title-desc-wrapper.over-image.has-main-image .page-desc,.extra-description-formatting.title-background:not(.collection-type-index) .title-desc-wrapper .page-desc {
    font-size: 1.1em;
    padding: 1.5em
}

.extra-description-formatting.description-button-style-outline .page-desc p:last-child>a {
    background-color: transparent;
    border: 2px solid #171717 !important;
    color: #171717
}

.extra-description-formatting.description-button-style-outline .page-desc p:last-child>a:hover {
    background-color: #171717;
    color: #efefef
}

.extra-description-formatting.description-button-style-raised .page-desc p:last-child>a {
    -webkit-box-shadow: 0px .2em 0px 0px #030303;
    -moz-box-shadow: 0px .2em 0px 0px #030303;
    box-shadow: 0px .2em 0px 0px #030303
}

.extra-description-formatting.description-button-style-raised .page-desc p:last-child>a:hover {
    background-color: #1f1f1f
}

.extra-description-formatting.description-button-corner-style-rounded .page-desc p:last-child>a {
    -webkit-border-radius: 3px;
    border-radius: 3px
}

.extra-description-formatting.description-button-corner-style-pill .page-desc p:last-child>a {
    -webkit-border-radius: 300px;
    border-radius: 300px
}

.title--description-position-under-image .page-desc {
    color: #a8a8a8
}

.title--description-position-under-image .page-desc p,.title--description-position-under-image .page-desc a,.title--description-position-under-image .page-desc a:visited {
    color: #a8a8a8
}

.collection-type-index .content-inner {
    padding: 0
}

.collection-type-index .content-inner.has-content,.collection-type-index.title--description-position-under-image .content-inner {
    padding: 100px 8%
}

.content-inner .title-desc-wrapper {
    display: none
}

.title--description-position-under-image .content-inner .title-desc-wrapper {
    display: block
}

.title--description-position-under-image .title-desc-wrapper.over-image .title-desc-inner {
    display: none
}

.title--description-position-under-image .page-desc {
    max-width: 100%;
    margin-top: 20px
}

.title--description-alignment-center .title-desc-wrapper {
    top: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.title--description-alignment-center .title-desc-wrapper .title-desc-inner {
    text-align: center;
    max-width: 800px
}

.title--description-alignment-center .title-desc-wrapper .page-title {
    text-align: center
}

.title--description-alignment-center .title-desc-wrapper .page-desc {
    max-width: 100%
}

.title--description-alignment-center .title-desc-wrapper .page-desc p {
    text-align: center
}

#content-wrapper .content {
    width: 100%;
    background-color: #151515;
    position: relative;
    z-index: 50
}

.content.has-main-image {
    box-shadow: 0 0 75px rgba(0,0,0,.1)
}

.content-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 100px 8%
}


.faq {
  padding: 5%;
  font-family: "Camper UI Grotesk","Poppins",sans-serif;
}

.faq h3 {
  font-size: 22px;
  letter-spacing: -.5px;
}

.faq p {
color:#BDBDBD
}

.email-link {
  font-weight: bolder;

}

.hide {display: none!important;}