/* COLORS
#ec6608 orange
#e60000 red
#000 black
#FFF white
*/

/* TYPOGRAPHY */
@font-face {
  font-family: "MagdaClean";
  src: url("../../frontend/fonts/magda/MagdaClean.eot");
  src: local("☺"),
       url("../../frontend/fonts/magda/MagdaClean.woff")  format("woff"),
       url("../../frontend/fonts/magda/MagdaClean.ttf")   format("truetype"),
       url("../../frontend/fonts/magda/MagdaClean.svg")   format("svg");
  font-weight: normal;
  font-style : normal;
}

@font-face {
  font-family: "MagdaCleanBold";
  src: url("../../frontend/fonts/magda/MagdaClean-Bold.eot");
  src: local("☺"),
       url("../../frontend/fonts/magda/MagdaClean-Bold.woff") format("woff"),
       url("../../frontend/fonts/magda/MagdaClean-Bold.ttf")  format("truetype"),
       url("../../frontend/fonts/magda/MagdaClean-Bold.svg")  format("svg");
  font-weight: normal;
  font-style : normal;
}

@font-face {
  font-family: "BoxedMedium";
  src: url("../../frontend/fonts/boxed/BoxedMedium.eot");
  src: local("☺"),
       url("../../frontend/fonts/boxed/BoxedMedium.woff") format("woff"),
       url("../../frontend/fonts/boxed/BoxedMedium.ttf")  format("truetype"),
       url("../../frontend/fonts/boxed/BoxedMedium.svg")  format("svg");
  font-weight: normal;
  font-style : normal;
}



h1 {
  font-family: "MagdaCleanBold";
  text-transform: uppercase;
}

body {
  font-family: "MagdaClean";
}

.boxed {
  font-family: "BoxedMedium";
}

a {
  text-decoration: none;
  color: #666;
}

a:visited {
  text-decoration: none;
  color: #666;
}

/* NAVIGATION */
.navbar {
  border-bottom: solid 8px #000;
  background-color: #212529 !important;
}

.navbar-brand img {
  height: 56px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.scroll .navbar-brand img {
  height: 36px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.7;
}

.navbar-brand {
  margin-left: -12px;
}

.navbar-dark .navbar-nav .nav-link {
  font-family: "MagdaCleanBold";
  font-size: 18px;
  text-transform: uppercase;
  margin-right: 20px;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
  border-bottom: solid 2px #ec6608;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ec6608;
}

/* Body */

.cms-body {
  padding-top: 90px;
}

/* BUTTONS */

.btn-primary {
  color: #fff;
  background-color: #ec6608;
  border-color: #ec6608;
  border-radius: 0px;
}

.btn-secondary {
  border-radius: 0px;
}

.btn-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #ec6608;
}

.btn span {
  display: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover span {
  display: block;
  float: right;
  margin-left: 12px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* MODULES */

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
}

.footerme {
  padding-top: 80px;
  padding-bottom: 20px;
}

.featurette h2:after {
  content: "";
  display: block;
  top: 100%;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ec6608;
  margin-top: 8px;
}

.featurette:hover img {
  -moz-transform: scale(0.96);
  -webkit-transform: scale(0.96);
  transform: scale(0.96);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.featurette img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.fdark {
  background-color: #000;
}

.fdark h2 {
  color: #fff;
}

.fdark p {
  color: #ccc;
}

.full {
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
}

.sideimage img {
  max-width: 100%;
}

.row img {
  max-width: 100%;
}

/* Make Youtube videos full width */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.productcard {
  background-color: #fff;
  padding: 20px;
  border-radius: 0px;
  height: 280px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
  border-top: solid 6px #fff;
}

.productcard:hover {
  -moz-transform: scale(1.06);
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top: solid 6px #ec6608;
}

.productcard h4 {
  height: 50px;
  text-transform: uppercase;
  text-align: center;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.productcard:hover h4 {
  color: #ec6608;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.productcard2 {
  background-color: #fff;
  padding: 20px;
  border-radius: 0px;
  height: 446px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 20px;
  border-top: solid 6px #fff;
}

.productcard2:hover {
  -moz-transform: scale(1.06);
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-top: solid 6px #ec6608;
}

.productcard2 h4 {
  height: 50px;
  text-transform: uppercase;
  font-size: 18px;
}

.productarea2 {
  height: 312px;
}

.productarea {
  height: 170px;
}

.tab-pane {
  padding: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ec6608;
  font-family: "MagdaCleanBold";
  font-size: 18px;
  text-transform: uppercase;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  font-family: "MagdaCleanBold";
  font-size: 18px;
  text-transform: uppercase;
}

.listtitle {
  margin-bottom: 20px;
  margin-top: 40px;
}

#masthead.scroll {
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 40%), inset 0 0px 0 rgb(0 0 0 / 40%);
  transition: all 0.5s;
}

.footerlogo {
  margin-bottom: 20px;
}

.mapboxgl-marker {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.marker {
  border: none;
  cursor: pointer;
  height: 30px;
  width: 46px;
  background-image: url(/frontend/images/map/pin.png);
  background-color: transparent;
}

.mapheight {
  height: 800px;
}

.iconarea {
  padding: 6px;
  background-color: #fff;
  display: inline-block;
  border-radius: 6px;
}

.iconarea img {
  width: 60px;
}

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}

.flex-equal > * {
  flex: 1;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.category-icon {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.product-category-header {
  background-color: #000;
}

.product-category-header .featurette-heading {
  color: #fff;
}

.product-category-header p {
  color: #ccc;
}

.product-category-content {
  background-color: #000;
}

.product-category-content .listtitle {
  color: #fff;
}

.category-text {
  font-size: 1.25rem;
  font-weight: 300;
}

/* CAROUSEL */
.carousel {
  margin-bottom: 0px;
}

.carousel-caption {
  bottom: 6rem;
  z-index: 10;
}

.carousel-caption {
  max-width: 1300px;
  margin: 0 auto;
  left: 0%;
  right: 0%;
}

.carousel-caption h1 {
  max-width: 800px;
  font-size: 60px;
  line-height: 50px;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.24);
}

.carousel-caption p {
  max-width: 600px;
  font-size: 22px;
  text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.24);
}

.carousel-item {
  /* height: 700px; */
  height: 50em;
  background-position: center center;
}

.carousel-item > img {
  /* position: absolute; */
  top: 0;
  center: 0;
  min-width: 100%;
  height: auto;
}

.carousel-indicators {
  margin: 0 auto;
  padding-bottom: 20px;
  width: 150px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 4px solid #000;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

.bg-light {
  background-position: center;
}

.bg-dark {
  background-position: center;
}

.bg-light.text-center {
  height: 30em !important;
}

.bg-dark.text-center {
  height: 30em !important;
}

/* VIEWPORTS */
@media (max-width: 1350px) {
  .carousel-caption {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 992px) {
  .rounded-lg-3 {
    border-radius: 0.3rem;
  }
}

@media (max-width: 991px) {
  .productcard {
    height: auto;
  }

  .carousel-caption h1 {
    max-width: 800px;
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .oneproduct {
    padding: 20px;
  }

  .productarea {
    height: auto;
  }
}
