a:hover, a:visited, a:link, a:active {
  text-decoration: none;
}

.projects-clean a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2, h3, h4, h5 {
  color: #ffc107;
}

.navbar {
  background: #343a40;
}

.nav-link {
  color: #ffc107;
}

.nav-link:focus, .nav-link:hover {
  color: rgba(250,192,0,0.75);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: rgb(252,204,20);
  /*padding-right: 20px;*/
}

.navbar-toggler span {
  color: #fafafa;
}

.dropdown:hover > .dropdown-menu {
  left: 0px;
  display: flex;
}

.dropdown-menu {
  /*left: 0px;*/
  /*display: flex;*/
}

.dropdown > .dropdown-toggle:active {
  pointer-events: none;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffc107;
}

.swiper-button-next, .swiper-button-prev {
  color: #ffc107;
}

.slide-layer {
  color: #fafafa;
  position: fixed;
  top: 0px;
  left: 10%;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.slide-layer h1 {
  font-weight: 700;
  letter-spacing: 6px;
  font-size: 30px;
}

@media (min-width: 768px) {
  .slide-layer h1 {
    font-weight: 800;
    letter-spacing: 6px;
    font-size: 50px;
    font-family: 'Exo 2';
    font-style: italic;
  }
}

.slide-layer p {
  font-size: 18px;
}

@media (min-width: 768px) {
  .slide-layer p {
    font-size: 25px;
  }
}

.slide-layer .btn {
  border-radius: 15px;
  background: rgba(255,255,255,0);
  border-color: #fafafa;
  padding: 3px 10px;
}

@media (min-width: 768px) {
  .slide-layer .btn {
    border-radius: 25px;
    background: rgba(255,255,255,0);
    border-color: #fafafa;
    padding: 8px 20px;
  }
}

/* -------------------------------------- */

/* -------------------------------------- */

/* -------------------------------------- */

.hovereffect-social {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  aspect-ratio: 1/1;
  /*display: flex;*/
  /*justify-content: center;*/
  /*color: rgba(33,37,41,0.8);*/
  color: rgba(164,183,203,0.8);
  border-radius: 50%;
  background-color: #323232;
}

.hovereffect-social {
  display: none;
}

@media (max-width: 768px) {
  .hovereffect-social {
    display: none;
  }
}

.mobile-social {
  display: none;
}

.mobile-social {
  display: flex;
  /*width: 100%;*/
  /*height: 100%;*/
  /*float: left;*/
  /*overflow: hidden;*/
  /*position: relative;*/
  /*text-align: center;*/
  /*cursor: default;*/
  aspect-ratio: 1/1;
  /*display: flex;*/
  /*color: rgba(33,37,41,0.8);*/
  /*color: rgba(164,183,203,0.8);*/
  /*border-radius: 50%;*/
  /*background-color: #323232;*/
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.mobile-social i, .mobile-social svg {
  font-size: 48px;
}

.mobile-social-row {
  /*margin: 20px;*/
  /*padding: 20px;*/
  /*width: 100%;*/
}

.mobile-social-block {
  margin: 20px;
  display: flex;
  aspect-ratio: 1/1;
  align-items: center;
  justify-content: center;
}

.hovereffect-social .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  /*display: flex;*/
  /*flex-direction: column;*/
  /*flex-wrap: nowrap;*/
  /*align-content: center;*/
}

.hovereffect-social img {
  display: block;
  position: relative;
  height: 100%;
  width: auto;
}

.hovereffect-social h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding: 10px;
}

.hovereffect-social:hover h2 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
  transform: translate3d(-50%,-50%,0) scale3d(0.8,0.8,1);
}

.hovereffect-social a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect-social a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect-social hr {
  width: 65%;
  opacity: 0;
  filter: alpha(opacity=0);
  border: 1px solid rgba(33,37,41,0.8);
  border: 1px solid rgba(164,183,203,0.8);
}

.hovereffect-social hr:nth-child(3) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,90deg) scale3d(0,0,1);
}

.hovereffect-social hr:nth-child(4) {
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,180deg) scale3d(0,0,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1, 180deg) scale3d(0,0,1);
}

.hovereffect-social h2, .hovereffect-social hr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
}

.set1, .set2 {
  left: 50%;
  position: absolute;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  background-color: transparent;
  margin: 0px;
  padding: 0px;
}

.set1 {
  top: 35%;
}

.set2 {
  top: 65%;
}

.hovereffect-social p {
  /*margin: auto;*/
  display: flex;
  width: 60%;
  /*text-align: center;*/
  text-transform: none;
  font-size: 15px;
  line-height: 2;
  /*letter-spacing: 4px;*/
  justify-content: space-evenly;
}

.hovereffect-social p a {
  color: rgba(33,37,41,0.8);
}

.hovereffect-social p a:hover, .hovereffect-social p a:focus {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.hovereffect-social a i {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  padding: 10px;
  font-size: 30px;
}

.set1 a:first-child i {
  -webkit-transform: translate3d(-60px,-60px,0);
  transform: translate3d(-60px,-60px,0);
}

.set1 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,-60px,0);
  transform: translate3d(60px,-60px,0);
}

.set2 a:first-child i {
  -webkit-transform: translate3d(-60px,60px,0);
  transform: translate3d(-60px,60px,0);
}

.set2 a:nth-child(2) i {
  -webkit-transform: translate3d(60px,60px,0);
  transform: translate3d(60px,60px,0);
}

.hovereffect-social:hover hr:nth-child(3) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-90deg) scale3d(1,1,1);
}

.hovereffect-social:hover hr:nth-child(4) {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
  transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-180deg) scale3d(1,1,1);
}

.hovereffect-social:hover .set1 i:empty, .hovereffect-social:hover .set2 i:empty {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  opacity: 1;
  filter: alpha(opacity=100);
}

/* -------------------------------------- */

.hovereffect-product {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  background: -webkit-linear-gradient(45deg, rgba(33,37,41,0.8) 0%, rgba(33,37,41,0.5) 100%);
  background: linear-gradient(45deg, rgba(33,37,41,0.8) 0%, rgba(33,37,41,0.5) 100%);
}

.hovereffect-product .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hovereffect-product h3 {
  font-family: 'Exo 2';
  font-weight: 700;
  font-style: italic;
  color: rgb(250,250,250);
  opacity: 0.7;
}

.hovereffect-product img {
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 60px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-40px,0,0);
  transform: translate3d(-40px,0,0);
}

.hovereffect-product h2 {
  text-transform: uppercase;
  color: #fff;
  position: relative;
  font-size: 17px;
  background-color: transparent;
  padding: 15% 0 10px 0;
  text-align: left;
}

.hovereffect-product .overlay:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #fff;
  content: '';
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-20px,0,0);
  transform: translate3d(-20px,0,0);
}

.hovereffect-product a, .hovereffect-product p {
  color: #FFF;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.45s;
  transition: opacity 0.35s, transform 0.45s;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(-10px,0,0);
}

.hovereffect-product:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect-product:hover .overlay:before, .hovereffect-product:hover a, .hovereffect-product:hover p, .hovereffect-product:hover h3 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.products-plates-wrapper {
  display: flex;
  justify-content: center;
  margin: 25px;
  flex-direction: row;
  flex-wrap: wrap;
}

.products-plates-item-wrapper {
  margin: 30px;
  /*aspect-ratio: 1 / 1;*/
}

.products-plates-item {
  width: 100%;
}

@media (min-width: 576px) {
  .products-plates-item {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .products-plates-item {
    width: 33%;
  }
}

.footer-wrapper {
  background-color: rgba(250,192,0,0.5);
  background-color: rgb(25,25,25);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  transition: all 0.5s ease-in-out;
  padding: 50px;
}

@media (max-width: 576px) {
  .footer-wrapper {
    /*background-color: rgba(250,192,0,0.5);*/
    /*background-color: rgb(25,25,25);*/
    display: flex;
    flex-direction: column-reverse;
    /*flex-wrap: wrap;*/
    /*align-items: center;*/
    /*justify-content: space-evenly;*/
    /*transition: all 0.5s ease-in-out;*/
    /*padding: 50px;*/
  }
}

.footer-wrapper:hover {
  background-color: rgba(250,192,0,0.4);
  background-color: rgb(25,25,25,0.95);
}

.footer-links {
  display: flex;
  width: 100%;
  padding: 20px 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links-blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.footer-links-blocks-side {
  display: flex;
  flex-direction: column;
  margin: 15px;
}

.overlay-inlay {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.overlay-inlay-first, .overlay-inlay-second {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.overlay-inlay span {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #cccccc;
}

.overlay-inlay img {
  left: 25%;
}

.overlay-inlay-second {
  text-align: end;
}

.hovereffect-social:hover .overlay-inlay {
  opacity: 0;
}

.footer-block {
  width: 50%;
}

@media (min-width: 768px) {
  .footer-block {
    width: 30%;
    max-width: 350px;
  }
}

.footer a {
  text-decoration: none;
  text-wrap: nowrap;
  /*font-size: x-small;*/
}

body {
  font-family: 'Exo 2';
}

.footer-block.footer-block-logo {
  width: 30%;
}

@media (max-width: 576px) {
  .footer-block.footer-block-logo, .footer-block.footer-links {
    width: 100%;
  }
}

#about-us h1 {
  margin: 25px;
  /*border: none;*/
  /*border-bottom-width: 21px;*/
  /*border-bottom-style: solid;*/
  /*border-image: linear-gradient(90deg,rgba(252, 204, 20, 0) 0%, rgba(252, 204, 20, 1) 50%, rgba(252, 204, 20, 0) 100%);*/
}

#footer span {
  display: inline-block;
  width: 40%;
  height: 2px;
  /*background: linear-gradient(90deg,#fccc1400 0%, #fccc14 50%, #fccc1400 100%);*/
}

.text-block-wrapper {
  display: block;
  max-width: 900px;
  margin: 50px auto;
  /*margin-left: 50px;*/
  /*margin-right: 50px;*/
}

.nav-pills {
  min-width: 20%;
  margin-right: 30px;
  /*padding-right: 2px;*/
  font-weight: 600;
  --bs-nav-pills-border-radius: none;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #000000;
  /*border-left: #929292 solid 1px;*/
}

@media (min-width: 576px) {
  .nav-pills {
    min-width: 20%;
    margin-right: 30px;
    /*padding-right: 2px;*/
    font-weight: 600;
    --bs-nav-pills-border-radius: none;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #000000;
    /*border-left: #929292 solid 1px;*/
  }
}

.menu__vertical-tabs .nav-link:hover {
  color: rgb(252,204,20);
  border-right: #929292 solid 3px;
}

@media (min-width:768px) {
  .navbar-expand-md .navbar-nav .nav-link {
    /*min-width: 49%;*/
    padding-right: 25px;
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
}

.tab-content p {
  text-align: center;
  font-weight: 600;
}

.tab-content > .tab-pane {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.nav-item {
}

.dropdown > .nav-link {
  color: #fafafa;
}

.tab-pane-block {
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
}

.tab-pane-block {
  border: 1px solid transparent;
  border-image: linear-gradient(to top right, #ffc107, #ffc107);
  border-image-slice: 1;
  color: #ffc107;
}

.tab-pane-block:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to top right, #000000, #ffffff);
  border-image-slice: 1;
}

#swiper-product-main .swiper-slide > img {
  width: 60%;
  max-width: 750px;
  margin: auto;
}

#swiper-product-main .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: flex;
}

h2 {
}

a {
  color: #ffc107;
}

#footer a {
  color: #ffc107;
}

.custom-plate {
  max-width: 900px;
  margin: auto;
}

.section-content {
  min-height: 300px;
}

.main-gallery {
  max-width: 750px;
  margin: auto;
  /*background-color: #222222;*/
}

.main-gallery .row {
  display: flex;
  max-width: 750px;
  margin: auto;
  /*background-color: #222222;*/
  justify-content: center;
}

.tab-pane img {
  max-width: 150px;
  margin: 10px;
}

@media (min-width: 576px) {
  .tab-pane img {
    max-width: 200px;
    margin: 25px;
  }
}

.product-header {
  text-align: center;
  margin: 50px 20px;
  font-weight: 600;
}

h1 span {
  font-size: 0.7em;
}

.lc_w {
  /*width: 1260px;*/
  margin: 0 auto;
  padding-top: 50px;
  overflow: hidden;
}

.lc_w_0:before {
  content: "";
  width: 108px;
  height: 108px;
  background: url(../../assets/img/icon01.png) no-repeat;
  position: static;
  top: 0px;
  left: 50%;
  margin-left: -54px;
}

.lc_w:after {
  content: "";
  width: 3px;
  background: #eee;
  height: 91%;
  /*position: absolute;*/
  /*top: 108px;*/
  left: 50%;
  margin-left: -1.5px;
}

.lc_w li {
  z-index: 10;
  width: 50%;
  clear: both;
  margin-bottom: 50px;
  position: relative;
  padding-right: 67px;
}

.lc_w li span {
  font-size: 36px;
  color: #282828;
  margin-bottom: 10px;
  text-align: right;
}

.lc_w li .lc_con {
  text-align: justify;
  font-size: 16px;
  color: #9b9b9b;
  line-height: 20px;
  text-align: right;
}

.lc_w li:nth-child(2n + 1):after {
  z-index: 2;
  content: "";
  width: 36px;
  height: 52px;
  background: url(../../assets/img/icon02.jpg) no-repeat;
  position: absolute;
  top: 0;
  right: -25px;
}

.lc_w li:nth-child(2n):after {
  z-index: 2;
  content: "";
  width: 36px;
  height: 52px;
  background: url(../../assets/img/icon03.jpg) no-repeat;
  position: absolute;
  top: 0;
  left: -25px;
}

.lc_w li:nth-child(2n) .lc_con, .lc_w li:nth-child(2n) span {
  text-align: left;
}

.lc_w li:nth-child(2n) {
  float: right;
  padding-left: 57px;
  padding-right: 0;
}

.li-inlay-wr {
  display: block;
}

.dropdown-menu {
  /*border: solid 1px #ccc;*/
  background-color: rgba(255,255,255,0.0);
}

.tab-content {
  /*background-color: #ffffff;*/
}

.dropdown-menu .dropdown-wrapper {
  max-width: 900px;
  margin: 25px auto;
  padding: 25px;
  background-color: #ffffff;
  border: solid 1px #ccc;
  box-shadow: 2px 2px 30px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 2px 2px 30px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 2px 30px 0px rgba(0,0,0,0.75);
}

.banner-promo {
  color: #ffffff;
  position: absolute;
  top: 30%;
  left: 40%;
}

@media (max-width: 576px) {
  .banner-promo {
    top: 30%;
    left: 0;
  }
}

.banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}

#baguetteBox-overlay {
  background-color: #222222;
}

.paralax-box {
  width: 100%;
  height: 40vh;
  max-height: 400px;
  position: relative;
  overflow: hidden;
  /*margin-top: 2em;*/
  margin-bottom: 2em;
}

.paralax-heading {
  position: absolute;
  top: 30%;
  width: 100%;
}

.paralax-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(10px);
}

@media (min-width: 576px) {
  .paralax-box h1 {
    font-size: 42px;
  }
}

.paralax-box h1 {
  font-size: 32px;
  color: #ef7000;
  font-weight: 600;
  margin-left: 10%;
}

@media (min-width: 768px) {
  .paralax-box p {
    font-size: 20px;
  }
}

.paralax-box p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  margin-left: 10%;
}

#footer .overlay-inlay-second span {
  width: 50%;
}

.projects img {
  max-height: 200px;
}

.tab-pane-inner {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar-toggler {
  background-color: #fccc14;
}

@media (max-width: 576px) {
  .menu__vertical-tabs {
    display: flex;
  }
}

@media (max-width: 576px) {
  .tab-pane-stats {
    display: none;
  }
}

@media (max-width: 576px) {
  .tab-pane-stats {
    display: none;
  }
}

.tab-pane-stats td {
  font-size: 12px;
}

.projects .item {
  margin: 5px;
  padding: 5px;
}

@media (min-width: 576px) {
  .projects .item {
    margin: 20px;
    padding: 25px;
  }
}

.collapse li {
}

.main-gallery .col {
  display: flex;
  align-items: center;
  padding: 25px;
}

.dropdown-menu[data-bs-popper] {
  top: 20px;
}

