@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa&display=swap');

/* root is defining the colors and shadows variables */

:root {
  --white: #fff;
  --light: #eee;
  --bluish: #00ffbb;
  --purple: #b500ff;
  --cat: #ffb500;
  --dark: #181818;
  --shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.05);
  --bored: #bf1e2e;
  --boredtransparent: rgba(191,30,46,0.75);
  --bodark: #353a3e;
  --bodarktransparent: rgba(53,58,62,0.75);
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Responsive font size codes */


@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
}
@media (max-width: 723px) {
  html {
    font-size: 52%;
  }
}
@media (max-width: 648px) {
  html {
    font-size: 48%;
  }
}
@media (max-width: 596px) {
  html {
    font-size: 46%;
  }
}
@media (max-width: 580px) {
  html {
    font-size: 42%;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 38%;
  }
}

@media (max-width: 471px) {
  html {
    font-size: 32%;
  }
}

@media (max-width: 395px) {
  html {
    font-size: 28%;
  }
}
@media (max-width: 350px) {
  html {
    font-size: 30%;
  }
}

/* body css is written in grid, and the page wrapper is inside 'main' grid-area,header in 'header and footer in 'footer' */


body {
  width: 100%;
  font-family: 'Helvetica' , sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  background-color: var(--light);
  display: grid;
  grid-template-areas: "header"
  "main"
  "footer";

  /* This codes prevent text selection */

  -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;
}



#header {
  background-color: white;
  width: 100%;
  height: 100%;
  grid-area: header;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}


#nav-bar {
  display:grid;
  grid-template-areas:"logo-nav main-nav";
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 8rem;
  width: 100%;
  background-color: white;
  position: fixed;
  z-index: 200;
  border-bottom: 1px solid grey;
}

@media (max-width: 428px) {
  #nav-bar {
    height: 40px;
    grid-template-rows: 40px;
  }
}

#nav-box {
  grid-area: main-nav;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}

#nav-first-row {
  grid-area: main-nav;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  padding-right: 7rem;
}

@media (max-width: 520px) {
  #nav-first-row {
    font-size: 14px;
  }
}

@media (max-width: 428px) {
  #nav-first-row {
    margin-right: 50px;
  }
}

@media (max-width: 320px) {
  #nav-first-row {
    margin-right: 20px;
  }
}

#nav-second-row {
  display: none;
}

#mobile-nav-menu {
  display: flex;
  height: 100%;
}


.menu-wrapper{
  position: fixed;
  top: 0;
  /*left: -100%;*/
  right: -100%;
  height: 100%;
  width: 100%;
  background: rgba(53,58,62,0.95);
  /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
 /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
  transition: all 0.6s ease-in-out;
}
#mobile-menu-active:checked ~ .menu-wrapper{
  /*left: 0;*/
  right:0;
}
.mobile-menu-btn{
  position: absolute;
  z-index: 502;
  right: 2rem;
  /*left: 20px; */
  top: 2rem;
  height: 5rem;
  width: 5rem;
  text-align: center;
  line-height: 5rem;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  /*color: #fff;*/
  /*background: linear-gradient(90deg, #f92c78, #4114a1);*/
  /* background: linear-gradient(375deg, #1cc7d0, #2ede98); */
 /* background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%); */
  transition: all 0.3s ease-in-out;
}

.mobile-menu-btn span,
.mobile-menu-btn:before,
.mobile-menu-btn:after{
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid var(--bodark);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-menu-btn:before{
  transform: translateY(-0.8rem);
}
.mobile-menu-btn:after{
  transform: translateY(0.8rem);
}

@media (max-width: 428px) {
  .mobile-menu-btn:before {
    transform: translateY(-5px);
  }
}
  @media (max-width: 428px) {
    .mobile-menu-btn:after {
      transform: translateY(5px);
    }
  }

  @media (max-width: 375px) {
    .mobile-menu-btn span,
    .mobile-menu-btn:before,
    .mobile-menu-btn:after {
      top: 70%;
    }
  }
  @media (max-width: 320px) {
    .mobile-menu-btn span,
    .mobile-menu-btn:before,
    .mobile-menu-btn:after {
      top: 0%;
    }
  }




.mobile-menu-close {
	z-index: 501;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .6s;
}

@media (max-width: 428px) {
  .mobile-menu-btn {
    width: 50px;
    padding-left: 10px;
  }
  .mobile-nav-menu {
    margin-left: 10px;
  }
}

/* closing animation */
#mobile-menu-active:checked + .mobile-menu-btn span {
	transform: scaleX(0);
}
#mobile-menu-active:checked + .mobile-menu-btn:before {
	transform: rotate(45deg);
  border-color: #fff;
}
#mobile-menu-active:checked + .mobile-menu-btn:after {
	transform: rotate(-45deg);
  border-color: #fff;
}
.menu-wrapper ul{
  position: absolute;
  width: 100%;
  top: 10rem;
  height: 100%;
  list-style: none;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}
.menu-wrapper ul li{
  height: 5%;
  margin: 1.5rem 0;

}

@media (max-width: 428px) {
  .menu-wrapper ul {
    margin: 0;
    top: 15%;
  }
}

@media (max-width: 320px) {
  .menu-wrapper ul {
    top: 5%;
  }
}

@media (max-width: 428px) {
  .menu-wrapper ul li {
    padding-bottom: 40px;
  }
}

.menu-wrapper ul li a{
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 5rem;
  line-height: 5rem;
  opacity: 0;
  transition: all 0.3s ease;
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (max-width: 428px) {
  .menu-wrapper ul li a{
    font-size: 16px;
  }
}

input[type="checkbox"]{
  display: none;
}


#mobile-menu-active:checked ~ .menu-wrapper ul li a{
  opacity: 1;
}
.menu-wrapper ul li a{
  transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateX(10rem);
}
#mobile-menu-active:checked ~ .menu-wrapper ul li a{
	transform: none;
	transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1); /* easeOutBack */
   transition-delay: .6s;
  transform: translateX(-10rem);
}



#nav-logo {
  grid-area: logo-nav;
  margin-right: auto;
  height: 100%;
  width: 70%;
  padding-left: 2rem;
}

@media (max-width: 428px) {
  #nav-logo{
    width: 100%;
  }
}

#nav-logo img {
  width:100%;
  height:100%;
}

@media (max-width: 320px) {
  #nav-logo img{
    width: 100%;
    height:4rem;
  }
}



.nav-a {
  padding-right: 4rem;
  padding-left: 4rem;
  color: var(--bodark);
  padding: 2rem;
  display: block;
  text-decoration: none;
}

@media (max-width: 320px) {
  .nav-a {
    padding-right: 0;
    padding-left: 1rem;
  }
}

.language-dropbtn {
  background-color: #fff;
  color: var(--bodark);
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  font-size: 15px;
  border: none;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown-content {
  display: none;
  position: absolute;
  background-color: #bf1e2e;
  min-width: 7.1rem;
  box-shadow: 0px 0.8rem 1.6rem 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
}

.language-dropdown-content a {
  color: #fff;
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  display: block;
}

.language-dropdown-content a:hover {background-color: rgba(53,58,62,0.75);}

.language-dropdown:hover .language-dropdown-content {display: block;}

.language-dropdown:hover .language-dropbtn {background-color: #fff; color: #353a3e}

.second-nav-a {
  padding-right: 4rem;
  padding-left: 4rem;
  color: var(--light);
  padding: 2rem;
  display: block;
  text-decoration: none;
}

.second-nav-a:hover {
  background-color: var(--boredtransparent);
  color: var(--bodark);
}

#bot-nav-bar {
display:none;
}


.title-box {
  background-color: var(--bodark);
  margin-top: 8rem;
  height: 20%;
  background-image: url(../images/boratas-metal.jpg);
  min-height: 20rem;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;

}

@media (max-width: 320px) {
  .title-box {
    display: none;
  }
}


.pages-map {
  display: grid;
  position: relative;
  grid-template-areas:". main .";
  grid-template-columns: 1fr 30fr 1fr;
  background-color: white;
  width: 100%;
  font-size: 16px;
}

@media (max-width: 428px) {
  .pages-map {
    font-size: 10px;
  }
}


@media (max-width: 320px) {
  .pages-map {
    display: block;
    top: 6rem;
    margin-bottom: 1rem;
  }
}


.pages-map li {
  background-color: white;
  color: var(--bored);
  grid-area: main;
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;

}
.pages-map li a {
  color: var(--bodark);
  padding: 1rem;
  font-size: 16px
}

@media (max-width: 428px) {
  .pages-map li a {
    font-size: 10px;
  }
}


/* 'page-wrapper' is written in column-grid which is named 1, 2, 3,... --- every 'section' is placed in one of these grid-areas*/


#page-wrapper {
  background-color: var(--light);
  grid-area: main;
  display: grid;
  grid-template-areas:   "1"
                         "2"
                         "3"
                         "4";
  height: auto;
}

.dropbtn {
  grid-area: 1;
  background-color: var(--bodark);
  width: 100%;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 8rem;

}
@media (max-width: 428px) {
  .dropbtn {
    top: 8.8rem;
  }
}
@media (max-width: 320px) {
  .dropbtn {
    top: 4rem;
    height: 4rem;
  }
}


#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
  position: relative;
  display: inline-block;
  height: 4rem;
  display: block;
  position: sticky;
  top: 8rem;
  z-index: 199;
}

@media (max-width: 428px) {
  .dropdown {
    top: 8.8rem;
  }
}
@media (max-width: 320px) {
  .dropdown {
    top: 4rem;
  }
}

.products-side-bar-container {
  display: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(53,58,62,0.90);
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
  width: 100%;
  height: 70vh;
  overflow-y: scroll;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  width: 100%;
}
.dropdown-content h {
  color: #fff;
  font-weight: bold;
  background-color: var(--bored);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.dropdown-content h2 {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}



#products-sec {
  grid-area: 2;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-top: 2rem;
  font-size: 1.5rem;
}



#products-side-bar-container {
  display: none;
  flex-direction: column;
  background: #8e9eab;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #fff, #ece9e6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #fff, #ece9e6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 60%;
  position: sticky;
}

@media (max-width: 320px) {
  #products-side-bar-container {
    width: 100vw;
  }
}

.side-bar-opener {
  grid-area: 1;
  background-color: var(--bored);
  display: block;
  position: sticky;
  top: 8rem;
  z-index: 199;
  height: 4rem;
}

@media (max-width: 428px) {
  .side-bar-opener {
    top: 8.8rem;
  }
}
@media (max-width: 320px) {
  .side-bar-opener {
    top: 4rem;
  }
}


.side-bar-opener button {
  background-color: var(--bored);
  font-size: 20px;
  height: 7rem;
  color: #fff;
  width: 100%;
}

@media (max-width: 428px) {
  .side-bar-opener button {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .side-bar-opener button {
    height: 4rem;
    font-size: 12px;
  }
}


.products-side-bar {
  display: flex;
  flex-direction: column;
  background: #8e9eab;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #fff, #ece9e6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #fff, #ece9e6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 1rem;
  position: sticky;
  top: 14rem;
  height: 85vh;
  align-self:flex-end;
  width: 100%;
}

@media (max-width: 320px) {
  .products-side-bar {
    top: 5rem;
    width: 100%;
  }
}

#products-side-bar-links-box {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: white;
  overflow-y: scroll;
  margin-right: 2rem;
  margin-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 1rem;
  width: 100%;
  padding-right: 2rem;
  max-height: 60%;
}

.product-side-head-link {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin: 2rem;
  margin-left: 1rem;
  padding: 0.8rem;
  color: white;
  background-color: var(--bored);
  border-top-left-radius: 1.625rem;
  text-decoration: none;
}

.products-side-bar h {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0;
  margin-left: 0;
  padding: 0.8rem;
  color: white;
  background-color: var(--bored);
  border-top-left-radius: 1.625rem;
}

.product-link-general {
  text-decoration: none;
  color: var(--bored);
  padding-left: 1rem;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  text-wrap: nowrap;
  width: 100%;
  margin-top: 2rem;
}

.product-link-general:first-child {
  margin-top: 0;
}

.product-link-general::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--bored);
  margin: 1rem;
  margin-left: 0;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
  right: 0;
}


.product-link-type {
  text-decoration: none;
  padding-left: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bodark);
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.product-link-type:hover {
  color: var(--bored);
}

.product-link-model {
  text-decoration: none;
  padding-left: 2rem;
  font-size: 2rem;
  color: var(--bodark);
  padding-bottom: 0.5rem;
}

.product-link-model:hover {
  color: var(--bored);
}



#this-product {
  background-color: var(--bored);
  color: white;
  width: 100%;
}


.products-stationary-gate {
  width: 100%;
  margin-top:1rem;
  border-top: 1px solid var(--bodark);
  padding-top: 2rem;
}

.products-stationary-gate h {
  background-color: transparent;
  color: var(--bored);
  font-size: 1.4rem;
}

.read-more {
text-align: right;
font-size: 1.8rem;
display: flex;
justify-content: center;
align-items: center;
margin-top: 2rem;
}

.read-more-but {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}
.read-more-but {
 width: 90%;
 height: auto;
}
.read-more-but .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 100%;
 height: 4rem;
 background: var(--bodark);
 border-bottom-right-radius: 1.625rem;
}
.read-more-but .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}
.read-more-but .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}
.read-more-but .circle .icon.arrow::before {
 position: absolute;
 content: '';
 top: -0.28rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}
.read-more-but .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #fff;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

.read-more-but:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

.read-more-but:hover .circle {
  background-color: var(--bored);
}



.selected-product-preview {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background: #8e9eab;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #fff, #ece9e6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #fff, #ece9e6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.product-head-img {
  width: 100%;
  position: sticky;
  top: 14rem;

}
.product-head-img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}

@media (max-width: 320px) {
  .product-head-img {
    top:6rem;
  }
  .product-head-img img {
    height: auto;
  }
}

.product-head-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bodark);
  position: absolute;
  top: 3rem;
  left: 0;
  margin-left: 1rem;
}

.product-titles {
  font-size: 3.3rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  color: var(--bodark);
}

.product-texts {
  margin-left: 2rem;
  font-size: 14px;
}


/* tabs codes .................................................................................. */

.sticky-container {
  display: flex;
  flex-direction: column;
}

.product-tab-container {
  display: flex;
  flex-direction: column;
  background-color: #e7e7e7;
  color: var(--bodarktransparent);
  font-weight: 300;
  width: 100%;
}


.tab-wrap {
  transition: 0.3s box-shadow ease;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: #fff;
}

.tab {
  display: none;
}

.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;

}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;

}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;
}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;

}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;

}
.tab:checked:nth-of-type(6) ~ .tab__content:nth-of-type(6) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
  display: block;
}
.tab:first-of-type:not(:last-of-type) + label {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

}
.tab:not(:first-of-type):not(:last-of-type) + label {
  border-radius: 0;

}
.tab:last-of-type:not(:first-of-type) + label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;

}
.tab:checked + label {
  background-color: #fff;
  box-shadow: 0 -1px 0 #fff inset;
  cursor: default;
  color: #333;
}
.tab:checked + label:hover {
  box-shadow: 0 -1px 0 #fff inset;
  background-color: #fff;

}
.tab + label {
  box-shadow: 0 -1px 0 #fff inset;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  flex-grow: 3;
  text-align: center;
  background-color: var(--bored);
  user-select: none;
  text-align: center;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 5rem;
  box-sizing: border-box;
  padding: 1.5rem;
  z-index: 101;
  font-size: 2rem;
  position: sticky;
  top: 15.5rem;
}
.tab {
  position: sticky;
  top: 15.5rem;
}

@media (max-width: 320px){
  .tab + label {
    position: sticky;
    top: 8rem;
  }
}

.tab + label:hover {
  background-color: var(--bodark);
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.tab__content {
  padding: 1rem 2.5rem;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-0.3rem);
  border-radius: 0.6rem;
  bottom: 0;
}

.tab__content h2 {
  font-size: 2.5rem;
  margin-left: 1rem;
}

/* this media quary fixes the tabs sticky function accourding to device width duo to tabs wrapping */

@media (max-width: 420px){
  #tab9 + label {
    position: sticky;
  }
}
@media (max-width: 320px){
  #tab9 + label, #tab8 +label {
    position: sticky;
    top: 13rem;
  }
}



.product-table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

.product-table td, .product-table th {
  border: 1px solid #ddd;
  padding: 8px;

}

.product-table tr:nth-child(even){
  background-color: #f2f2f2;

}

.product-table tr:hover {
  background-color: #ddd;
}

.product-table th {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  text-align: left;
  background-color: var(--bodark);
  color: white;
  font-weight: lighter;
  text-align: center;
}

a[download] {
  background-color: transparent;
  border-bottom: 1px solid rgba(191, 30, 46, 0.65);
  box-shadow: inset 0 -0.4rem 0 rgba(191, 30, 46, 0.65);
  color: var(--bored);
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: box-shadow ease-in-out 125ms;
}
a[download]:focus, a[download]:hover {
  border-bottom: none;
  box-shadow: none;
  transition: box-shadow ease-in-out 125ms;
}


.catalogue-dl-box {
  display: flex;
  width: 100%;
  color: var(--bodark);
  font-size: 20px;
  font-weight: 400;
}
.catalogue-dl-box:hover .catalogue-poster {
  transform: rotate(0);
  transform: scale(1.15);
  transition: transform ease-in-out 500ms;
}

.catalogue-dl-box p {
  margin: 0;
}
.catalogue-poster {
  box-shadow: 0 10px 30px -15px rgba(30, 33, 36, 0.85);
  height: 22rem;
  width: auto;
  margin: 5rem;
  transform: rotate(-3deg);
  transition: transform ease-in-out 125ms;
}

@media (max-width: 350px) {
  .catalogue-poster {
    display: none;
  }
}

.catalogue-instructions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
  margin-left: 1.5rem;
  max-width: 30ch;
}

.catalogue-download-duration {
  padding-top: 0.75em;
}
.catalogue-dl-box small {
  font-size: 0.85em;
}





.container
{
	width: 100%;
	height: 100%;
}
.trans
{
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	-webkit-transition: all 1s ease;

}
.top
{
	display: flex;
	height: 80vh;
	margin-left: auto;
	margin-right: auto;
  width: 100%;
  height: auto;


}
.top ul
{
	list-style: none;
	width: 100%;
	height: 100%;
	z-index: 1;
	box-sizing: border-box;

}
.top ul li
{
	position: relative;
	float: left;
	width: 33.33333333333333%;
	height: 20rem;
	overflow: hidden;

}

.top ul li a img {
  object-fit: cover;
  height: 100%;
  border: 1px solid #fff;
}

.top ul li::before
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	content: '';
	color: white;
	opacity: 0.15;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;

}
.top ul li:hover::before
{
	opacity: 0;
	background-color: rgba(0,0,0,0.90);
}
.top ul li img
{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.lightbox
{
	position: fixed;
	height: 100vh;
  width: 100vw;
	text-align: center;
	background-color: rgba(0,0,0,0.75);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
  display: none;

}
.lightbox img
{
	max-width: 90%;
	max-height: 80%;
	position: relative;

}
.lightbox:target
{
	outline: none;
	opacity: 1;
	pointer-events: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: auto;
  position: fixed;
  -o-object-fit: contain;
  object-fit: contain;


}
.lightbox:target img
{
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);


}


.product-videos-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-video-box {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  margin-bottom: 2rem;


}

.product-video-responsive {
 position: relative; padding-bottom: 56.25%; padding-top: 3rem; height: 0; overflow: hidden;

}

.product-video-responsive iframe, .product-video-responsive object, .product-video-box embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }



.product-video-description {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  padding: 1rem;
  font-weight: 100;
  background: #ECE9E6;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.product-video-description h {
  font-size: 2rem;
  font-weight: 600;
  padding: 1rem;




}





.box360 {
  width: 100%;
  position: relative;

}

.box360 h1 {
  padding-left: 2rem;
}
.box360 p {
  padding-left: 1rem;
  padding-right: 1rem;
}



.rotate-icon {
  width: 10rem;
  position: absolute;
  display: flex;
  top: 20%;
  right: 10%;

  user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}

#canvas {
  width: 100%;
  height: 35rem;
  object-fit: cover;

}


#suggested-products-sec {
    grid-area: 3;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
    font-size: 1.5rem;
}

#suggested-products-sec h {
  width: 100%;
  margin-top: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: var(--bored);
  padding: 2rem;
}


.suggested-products {
    grid-area: 2;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
    font-size: 1.5rem;
    padding: 2rem;

}

@media (max-width: 320px) {
  .suggested-products {
    flex-direction: column;
  }
}



.suggested-product-box {
  width: 100%;

}
.suggested-product-anch {
  width: 100%;
  text-decoration: none;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}

.suggested-product-img {
  width: 100%;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}

.suggested-product-title{
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 3rem;
  font-weight: 900;
  color: var(--bodark);
  transition: 0.5s;
  transition-timing-function: ease-in-out;
  width: 20rem;
}

.suggested-product-spam{
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  color: var(--bodark);
  width: 20rem;
  opacity: 0;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}


.suggested-product-anch:hover > .suggested-product-img  {
  opacity: 0.5;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.suggested-product-anch:hover > .suggested-product-title {
  color: var(--bored);
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}

.suggested-product-anch:hover > .suggested-product-spam {
  opacity: 1;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}























#footer {
  grid-area: footer;
  width: 100%;
  height: auto;
  background-color: var(--bodark);
  margin-top: 3rem;
  margin-bottom: 9rem;
  padding-left: 2rem;
  padding-right: 2rem;

}

.footer-container {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.footer-container a {
  color: cyan;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}

@media (max-width: 428px) {
  .footer-container a{
    font-size: 11px;
  }
}



.footer-container-top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  color: var(--white);
}

.footer-titles {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  color: var(--white);
  padding-top: 1rem;
}

@media (max-width: 428px) {
  .footer-titles {
    font-size: 16px;
  }
}

.footer-box-1 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
}

@media (max-width: 428px) {
  .footer-box-1{
    font-size: 10px;
  }
}

.footer-box-2 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.footer-box-3 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

  .hs-box {
    display: none;
  }


@media (max-width: 428px) {
  .footer-box-3 {
    display: none;
  }
}



.footer-box-4 {
  display: none;
}

.footer-box-5 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  bottom: 0;
}

.social-media-box {
  width: 100%;
  height: auto;
  align-self: flex-start;
  display: flex;
  flex-direction: row;
}

.social-media-box {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.social-media-box:hover {
  border-bottom: 1px solid var(--bored);
}

.social-media-box:hover #li-span {
  display: none;
}

.social-media-box:first-child {
  padding-top: 0;
  border-top: none;
}

.social-media-box:last-child {
  padding-bottom: 3rem;
}



.social-media-box .fa {
  color: var(--white);
  font-size: 3rem;
  padding: 2rem;
  width: 100%;
  align-self: center;
  text-decoration: none;
  background-color: var(--bored);
  text-align: center;
}

.social-media-box .fa:hover {
  color: white;
  background-color: var(--bodark);
}

.footer-container-bot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.footer-container-bot-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 320px) {
  .footer-container-bot-links {
    flex-direction: column-reverse;
  }
}


.footer-container-bot-links img {
  width: 15rem;
  height: auto;
  align-self: center;
  padding: 1rem;
}

@media (max-width: 320px) {
  .footer-container-bot-links img {
    width: 15rem;
  }
}

.footer-site-info{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

 .footer-site-info a {
  color: var(--white);
  padding: 1rem;
  font-size: 1.5rem;
}

@media (max-width: 428px) {
  .footer-site-info a {
    font-size: 7.5px;
  }
}
@media (max-width: 320px) {
  .footer-site-info a {
    font-size: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}



.footer-site-info a:hover {
 color: var(--bored);
 padding: 1rem;
}

.mobile-bot-navigation {
  height: 9rem;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 0%, rgba(38,42,46,1) 42%, rgba(53,58,62,1) 78%);
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  justify-content: space-around;
  z-index: 400;
  border-top: 1px solid white;
}

@media (max-width: 428px) {
  .mobile-bot-navigation {
    height: 40px;
  }
  .footer-container {
    margin-bottom: 20px;
  }
}
@media (max-width: 320px) {
  .mobile-bot-navigation {
    height: 60px;
  }
  .footer-container {
    margin-bottom: 30px;
  }
}

.mobile-nav-buts {
  height: 100%;
}

.mobile-nav-buts a {
  height: 100%;
}

.mobile-nav-buts a img {
  height: 100%;
  padding: 1rem;
}


@media (max-width: 320px) {
  .extra-text {
    display: none; /* this line deactivates all the texts with .extra-text class through the whole page */
  }
}
