@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 1rem 2rem rgba(0,0,0,0.2), 0 0.8rem 0.8rem rgba(0,0,0,0.2);
  --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: 1920px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 1365px) {
  html {
    font-size: 60%;
  }
}

/* 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 header header"
                         "left main right"
                         "footer footer footer";

    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 40rem auto auto;

/* This codes prevent text selection */

    -moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;

}


@media (max-width: 1550px) {
  html {
    font-size: 60%;
  }

  body {
    grid-template-columns: 1fr 30fr 1fr;
  }
}

#header {
  background-color: white;
  width: 100%;
  height: 100%;
  grid-area: header;
  display: flex;
  flex-direction: column;
}


#nav-bar {
display:grid;
grid-template-areas:". logo-nav main-nav .";
grid-template-columns: 1fr 1fr 2fr 1fr;
grid-template-rows: 12rem;
width: 100%;
height: 12rem;
background-color: var(--white);
position: fixed;
z-index: 200;
}

@media (max-width: 1550px) {
  #nav-bar {
    grid-template-columns: 1fr 10fr 20fr 1fr;
  }
}

#nav-box {
  grid-area: main-nav;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  font-size: 1rem;
}

#nav-first-row {
  grid-area: main-nav;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40%;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  font-style: inherit;
  font-weight: inherit;
  padding-top: 4rem;
}

#mobile-nav-menu {
  display: none; /* this line disables the nav menu drop down for desktop (it's active on mobile-web) */
}

#nav-second-row {
  grid-area: main-nav;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 60%;
  align-items: center;
  justify-content: flex-end;
  font-size: 15px;
  font-style: inherit;
  font-weight: inherit;
}


#nav-logo {
  grid-area: logo-nav;
  margin-right: auto;
  height: 100%;
  width: 100%;
}

#nav-logo img {
  width:100%;
  height:100%;
}


.nav-a {
  padding-right: 4rem;
  padding-left: 4rem;
  color: var(--bodark);
  padding: 2rem;
  display: block;
  text-decoration: none;
}

.nav-a:hover {
  color: var(--bored);
}

.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: 4.5rem;
  padding-left: 4.5rem;
  color: var(--bodark);
  padding: 1.5rem;
  display: block;
  text-decoration: none;
}

.second-nav-a:hover {
  background-color: var(--boredtransparent);
  color: var(--bodark);
}

.our-machinery-dropbtn {
  background-color: #fff;
  color: var(--bodark);
  padding: 1.6rem;
  font-size: 15px;
  border: none;
}

.our-machinery-dropdown {
  position: relative;
  display: inline-block;
}

.our-machinery-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 16rem;
  box-shadow: 0px 0.8rem 1.6rem 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.our-machinery-dropdown-content a {
  color: var(--bodark);
  padding: 1.2rem 1.6rem;
  text-decoration: none;
  display: block;
}

.our-machinery-dropdown-content a:hover {background-color: var(--bored); color: #fff;}

.our-machinery-dropdown:hover .our-machinery-dropdown-content {display: block;}

.our-machinery-dropdown:hover .our-machinery-dropbtn {background-color: var(--boredtransparent); color: #353a3e}


.title-box {
  background-color: var(--bodark);
  margin-top: 12rem;
  height: 80%;
  background-image: url(../images/boratas-metal.jpg);
  min-height: 28rem;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.pages-map {
  display: grid;
  position: relative;
  grid-template-areas:". main .";
  grid-template-columns: 1fr 3fr 1fr;
  background-color: white;
  width: 100%;
  height: 20%;
}

@media (max-width: 1550px) {
  .pages-map {
    grid-template-columns: 1fr 30fr 1fr;
  }
}

.pages-map li {
  background-color: white;
  color: var(--bored);
  grid-area: main;
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  padding-left: 2rem;

}
.pages-map li a {
  color: var(--bodark);
  padding: 1rem;
  font-size: 1.5rem;
}
.pages-map li a:hover {
  color: var(--bored);
}

/* '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;
}

.dropdown {
  display: none;
}



#products-sec {
  grid-area: 1;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-top: 7rem;
  font-size: 1.5rem;
}


#products-side-bar-container {
  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+ */  width: 30%;
  position: sticky;
}

.side-bar-opener {
  display: none;
}

.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+ */  width: 100%;
  padding: 1rem;
  position: sticky;
  top: 12rem;
  height: 85vh;
  align-self:flex-end
}

#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;
}

.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;
}


.product-link-general {
  text-decoration: none;
  color: var(--bored);
  padding-left: 1rem;
  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-general:hover::after {
     background-color: var(--bodark);
     transition: 0.5s;
     transition-timing-function: ease-in-out;

}

.product-link-type {
  text-decoration: none;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bodark);
  padding-bottom: 0.5rem;

}


.product-link-type:hover {
 color: var(--bored);
}

.product-link-model {
  text-decoration: none;
  padding-left: 2rem;
  font-size: 1.5rem;
  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:5rem;
  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: 70%;

  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: 12rem;
}

.product-head-img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}

.product-head-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--bodark);
  position: absolute;
  top: 3rem;
  left: 0;
  margin-left: 1rem;
}


/* 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;
  font-weight: 600;
}
.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: 50px;
  box-sizing: border-box;
  padding: 15px;
  position: sticky;
  top: 12rem;
  z-index: 101;
}
.tab + label:hover {
  background-color: var(--bodark);
  box-shadow: 0 1px 0 #f4f4f4 inset;
}
.tab__content {
  padding: 10px 25px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-3px);
  border-radius: 6px;
  bottom: 0;
}

.tab__content h2 {
  font-size: 1.5rem;
  margin-left: 1rem;
}


.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: 12px;
  padding-bottom: 12px;
  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;
}

.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: 30px; 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;

}



.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: 2;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
    font-size: 1.5rem;
}

#suggested-products-sec h {
  margin-top: 2rem;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--bodark);
  margin-left: 3rem;
}
#suggested-products-sec h::after {
  content: "";
  background-color: var(--bored);
  position: absolute;
  width: 65rem;
  height: 0.2rem;
  margin-top: 3rem;
  margin-left: 3rem;

}

.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;
}



.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;
  display: grid;
  grid-template-areas: ". center-footer .";
  grid-template-columns: 1fr 3fr 1fr;
  background-color: var(--bodark);
  margin-top: 3rem;
}

@media (max-width: 1550px) {
  #footer {
    grid-template-columns: 1fr 10fr 1fr;
  }
}

.footer-container {
  grid-area: center-footer;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.footer-container a {
  color: cyan;

}

.footer-container a:hover {
  color: var(--bored);
}

.footer-container-top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  font-size: 13px;
  color: var(--white);
}

.footer-titles {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 1rem;
  color: var(--white);
  padding-top: 1rem;
}

.footer-box-1 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.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;
}

.footer-box-4 {
  padding: 1rem;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer-box-5 {
  display: none;
}

.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);
}

.social-media-box .fa:hover {
  color: white;
  background-color: var(--bodark);
}

.footer-container-bot-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-container-bot-links img {
  width: 20rem;
  height: auto;
  align-self: center;
  padding: 1rem;
}

.footer-site-info{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.footer-site-info a {
  color: var(--white);
  padding: 1rem;
}

.footer-site-info a:hover {
  color: var(--bored);
  padding: 1rem;
}

.mobile-bot-navigation {
  display: none;
}
