/* ============================================
   MODERN Mario Designer - Original Styles
   Restored from original build + SEO additions
   ============================================ */

html {
  scroll-padding-top: 12vh;
  scroll-behavior: smooth;
}

/* --- Direction-aware hover effect --- */
.product-explorer__body-item {
  perspective: 500px;
}

.product-view__body-bottom-itemsList-item {
  perspective: 500px;
}

.info {
  transform: rotate3d(1, 0, 0, 90deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  pointer-events: none;
  background-color: rgba(236, 240, 241, 0.9);
}

.in-top .info { transform-origin: 50% 0%; animation: in-top 300ms ease 0ms 1 forwards; }
.in-right .info { transform-origin: 100% 0%; animation: in-right 300ms ease 0ms 1 forwards; }
.in-bottom .info { transform-origin: 50% 100%; animation: in-bottom 300ms ease 0ms 1 forwards; }
.in-left .info { transform-origin: 0% 0%; animation: in-left 300ms ease 0ms 1 forwards; }
.out-top .info { transform-origin: 50% 0%; animation: out-top 300ms ease 0ms 1 forwards; }
.out-right .info { transform-origin: 100% 50%; animation: out-right 300ms ease 0ms 1 forwards; }
.out-bottom .info { transform-origin: 50% 100%; animation: out-bottom 300ms ease 0ms 1 forwards; }
.out-left .info { transform-origin: 0% 0%; animation: out-left 300ms ease 0ms 1 forwards; }

@keyframes in-top { from { transform: rotate3d(-1, 0, 0, 90deg) } to { transform: rotate3d(0, 0, 0, 0deg) } }
@keyframes in-right { from { transform: rotate3d(0, -1, 0, 90deg) } to { transform: rotate3d(0, 0, 0, 0deg) } }
@keyframes in-bottom { from { transform: rotate3d(1, 0, 0, 90deg) } to { transform: rotate3d(0, 0, 0, 0deg) } }
@keyframes in-left { from { transform: rotate3d(0, 1, 0, 90deg) } to { transform: rotate3d(0, 0, 0, 0deg) } }
@keyframes out-top { from { transform: rotate3d(0, 0, 0, 0deg) } to { transform: rotate3d(-1, 0, 0, 104deg) } }
@keyframes out-right { from { transform: rotate3d(0, 0, 0, 0deg) } to { transform: rotate3d(0, -1, 0, 104deg) } }
@keyframes out-bottom { from { transform: rotate3d(0, 0, 0, 0deg) } to { transform: rotate3d(1, 0, 0, 104deg) } }
@keyframes out-left { from { transform: rotate3d(0, 0, 0, 0deg) } to { transform: rotate3d(0, 1, 0, 104deg) } }

/* --- Product Explorer / Grid --- */
.product-explorer {
  min-height: 400px;
  margin-top: 4%;
  scroll-margin-top: 12vh;
}

.product-explorer__title {
  text-align: center;
  padding-bottom: 1rem;
}

.product-explorer__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 70%;
  margin: 0 auto;
}

.product-explorer__header-item,
a.product-explorer__header-item:link,
a.product-explorer__header-item:visited {
  cursor: pointer;
  background: linear-gradient(#000, #222, #3D3D3D);
  color: #c5c5c5 !important;
  margin: 10px;
  padding: 10px 25px;
  border: 2px solid black;
  border-radius: 25px;
  text-decoration: none !important;
}

.product-explorer__header-item:hover,
.product-explorer__header-item:focus {
  color: white !important;
  box-shadow: 5px 10px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all ease-in-out 0.1s;
  transform: translateY(-0.15em);
}

.product-explorer__header-item.product-explorer__header-item--active,
a.product-explorer__header-item.product-explorer__header-item--active:link,
a.product-explorer__header-item.product-explorer__header-item--active:visited {
  color: white !important;
}

.product-explorer__header-item[data-for="all"] {
  color: white;
}

.product-explorer__body {
  display: flex;
  flex-wrap: wrap;
  min-height: 300px;
  width: 90%;
  justify-content: center;
  margin: 15px auto;
  transition: all ease-in-out 2s;
}

.product-explorer__body-item {
  cursor: pointer;
  background-color: #464646;
  width: 250px;
  height: 250px;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.product-explorer__body-item-caption {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  right: 15%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 10px;
  color: #fff;
  text-align: center;
}

@media (max-width: 775px) {
  .product-explorer__body-item-caption {
    display: block !important;
  }
}

.product-explorer__body-item-caption p {
  margin: 0;
}

.product-explorer__body-item-caption h5 {
  margin-bottom: 5px;
}

.product-explorer__body-item-img {
  transition: all ease-in-out 0.2s;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.product-explorer__body-item-text {
  text-align: center;
}

/* --- Slider / Hero --- */
.mySlides {
  display: none;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.5s;
  animation-name: fade;
  animation-duration: 0.5s;
}

@-webkit-keyframes fade { from { opacity: .4 } to { opacity: 1 } }
@keyframes fade { from { opacity: .4 } to { opacity: 1 } }

.slider-container {
  position: relative;
  height: 90vw;
  max-height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.slider-container__slider {
  height: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: center;
  border-radius: 100%;
  justify-content: space-evenly;
}

@media (max-width: 375px) {
  .slider-container__slider {
    height: 100%;
  }
}

@media (min-width: 1500px) {
  .slider-container__slider {
    width: 90%;
  }
}

.slider-container__slider .slider__text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 80%;
}

.slider-container__slider .slider-left {
  background: linear-gradient(#818181, #DBDBDB, #7D7A7A);
  box-shadow: 10px 20px 32px 0px rgba(0, 0, 0, 0.75);
  height: 50vw;
  max-height: 550px;
  min-height: 400px;
  width: 50vw;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
}

@media (max-width: 775px) {
  .slider-container__slider .slider-left {
    border-radius: 5px;
    width: 100vw;
    box-shadow: none;
  }
}

@media (max-width: 550px) {
  .slider-container__slider .slider-left {
    box-shadow: none;
  }
}

.slider-container__slider .slider_right {
  height: 50vw;
  max-height: 550px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
}

@media (max-width: 775px) {
  .slider-container__slider .slider_right {
    display: none;
  }
}

.slider-container__slider .slider_right .carousel-caption {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  left: 0;
  bottom: 0;
  padding-bottom: 5px;
}

.slider-container__slider .slider_right .carousel-item-img {
  object-fit: cover;
}

.slider-container__slider .slider_right-top {
  width: 30vw;
  height: 48%;
  background-color: white;
}

.slider-container__slider .slider_right-bottom {
  width: 30vw;
  height: 48%;
  background-color: white;
}

.slider-container__slider .slider__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 3rem;
  letter-spacing: 5px;
  margin: 0;
}

@media (max-width: 550px) {
  .slider-container__slider .slider__header {
    font-size: 2rem;
  }
}

.slider-container__slider .slider__header-text1 {
  font-family: "Times New Roman";
  font-weight: bold;
}

.slider-container__slider .slider__header-text2 {
  font-family: "Rage Italic";
}

.slider-container__slider .slider__header-text3 {
  font-size: 30px;
  font-family: "Times New Roman";
  font-weight: bold;
  flex-basis: 100%;
}

@media (max-width: 550px) {
  .slider-container__slider .slider__header-text3 {
    font-size: 1.5rem;
  }
}

.slider-container__slider .slider__main {
  display: flex;
  flex-direction: column;
  line-height: 25pt;
}

.slider-container__slider .slider__main-text1 {
  width: 50%;
  margin: 0 auto;
  font-size: 22px;
}

@media (max-width: 550px) {
  .slider-container__slider .slider__main-text1 {
    width: 90%;
    font-size: 1.2rem;
  }
}

.slider-container__slider .slider__main-text2 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 550px) {
  .slider-container__slider .slider__main-text2 {
    font-size: 1.2rem;
  }
}

.slider-container__slider .slider__footer-btn {
  background: linear-gradient(#3D3D3D, #222, #000);
  margin: 0 auto;
  border: 2px solid black;
  padding: 15px;
  border-radius: 66px;
  width: 60%;
  font-size: 22px;
  color: white !important;
  cursor: pointer;
}

@media (max-width: 550px) {
  .slider-container__slider .slider__footer-btn {
    font-size: 18px;
  }
}

.slider-container__border {
  position: absolute;
  border-top: 2px solid black;
  width: 86%;
  margin-left: 7%;
  z-index: 0;
}

.slider-container__border-top {
  top: 0;
}

.slider-container__border-bottom {
  bottom: 0;
}

/* --- Latest Projects --- */
.img-fluid {
  max-height: 450px;
}

@media (max-width: 992px) {
  .img-fluid {
    display: flex;
    margin: 0 auto;
  }
}

.products-middle__header {
  width: max-content;
  margin: 0 auto;
}

.divider,
.black-divider {
  margin: 3rem 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.divider-lightgrey {
  border-top: 2px solid lightgrey;
}

.black-divider {
  border-top: 2px solid black;
}

.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
}

@media (max-width: 992px) {
  .home-column-reverse {
    flex-direction: column-reverse;
  }
}

.text_border-left {
  padding: 2rem;
}

@media (min-width: 992px) {
  .text_border-left {
    padding: 0 0 0 2rem;
    border-left: 0.5rem solid #64a19d;
  }
}

.text_border-right {
  padding: 2rem;
}

@media (min-width: 992px) {
  .text_border-right {
    padding: 0 2rem 0 0;
    border-right: 0.5rem solid #64a19d;
  }
}

/* --- Product View (detail page) --- */
.product-view {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  height: auto;
}

.product-view__header {
  height: 12%;
  width: 90%;
  margin: 0 auto;
  padding: 15px;
}

.product-view__name {
  font-size: 32px;
  font-weight: bold;
}

@media (max-width: 775px) {
  .product-view__name {
    font-size: 26px;
  }
}

.product-view__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.product-view__breadcrumbs span {
  padding-right: 3px;
}

.product-view__breadcrumbs .obreadcrumb {
  padding-right: 3px;
  font-size: 18px;
}

@media (max-width: 775px) {
  .product-view__breadcrumbs .obreadcrumb {
    font-size: 15px;
  }
}

.product-view__breadcrumbs .obreadcrumb a,
.product-view__breadcrumbs .obreadcrumb-slash {
  color: #8B8B8B;
}

.product-view__breadcrumbs .obreadcrumb a:hover {
  color: black;
}

.product-view__breadcrumbs .obreadcrumb-active {
  color: #13B1EE;
}

.product-view__body {
  display: flex;
  flex-direction: column;
  height: 88%;
  width: 85%;
  margin: 0 auto;
}

.product-view__body-head {
  display: flex;
  flex-wrap: wrap;
  height: max-content;
  margin: 0 5px 0 5px;
}

.product-view__body-head .product__leftSide {
  height: max-content;
  flex-basis: 60%;
  min-width: 400px;
}

@media (max-width: 975px) {
  .product-view__body-head .product__leftSide {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
}

@media (min-width: 1400px) {
  .product-view__body-head .product__leftSide {
    flex-basis: 50%;
  }
}

.product-view__body-head .product__leftSide-imagesList {
  position: relative;
  height: 400px;
}

@media (max-width: 975px) {
  .product-view__body-head .product__leftSide-imagesList {
    height: auto;
  }
}

@media (max-width: 500px) {
  .product-view__body-head .product__leftSide-imagesList {
    height: 250px;
  }
}

.product-view__body-head .product__leftSide-imagesList-item {
  width: 100%;
  height: 100%;
}

.product-view__body-head .product__leftSide-imagesList-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-view__body-head .product__gallery-tip {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: #13B1EE;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 775px) {
  .product-view__body-head .product__gallery-tip {
    font-size: 0.9rem;
  }
}

.product-view__body-head .product__rightSide {
  display: flex;
  flex-basis: 40%;
}

.product-view__body-head .product__rightSide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  height: 90%;
  margin-left: 5%;
  padding-left: 5%;
  border-left: 1px solid lightgrey;
}

@media (max-width: 975px) {
  .product-view__body-head .product__rightSide-content {
    margin-left: 0;
    padding-left: 0;
  }
}

.product-view__body-head .product__rightSide-content .product__contact {
  margin: 2rem auto 0 auto;
  color: white;
  background: linear-gradient(#3D3D3D, #222, #000);
  border: 2px solid black;
  padding: 15px;
  border-radius: 66px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 655px) {
  .product-view__body-head .product__rightSide-content .product__contact {
    font-size: 15px;
    padding: 12px;
  }
}

.product-view__body-head .product__rightSide-text {
  width: 90%;
  display: flex;
  align-self: center;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 975px) {
  .product-view__body-head .product__rightSide {
    width: 100%;
    min-width: 100%;
    margin-top: 3rem;
  }

  .product-view__body-head .product__rightSide-content {
    border: none;
  }
}

.product-view__body-bottom-title {
  text-align: center;
  padding-bottom: 1rem;
}

@media (max-width: 775px) {
  .product-view__body-bottom-title {
    font-size: 26px;
  }
}

.product-view__body-bottom-itemsList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 300px;
  margin: 15px auto;
  transition: all ease-in-out 2s;
}

.product-view__body-bottom-itemsList-item {
  perspective: 500px;
  cursor: pointer;
  background-color: #464646;
  width: 250px;
  height: 250px;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.product-view__body-bottom-itemsList-item-caption {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  right: 15%;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 10px;
  color: #fff;
  text-align: center;
}

@media (max-width: 775px) {
  .product-view__body-bottom-itemsList-item-caption {
    display: block !important;
  }
}

.product-view__body-bottom-itemsList-item-caption p {
  margin: 0;
}

.product-view__body-bottom-itemsList-item-caption h5 {
  margin-bottom: 5px;
}

.product-view__body-bottom-itemsList-item-img {
  transition: all ease-in-out 0.2s;
  width: 100%;
  height: 100%;
  padding: 2px;
  border-radius: 5px;
  object-fit: cover;
}

.product-view__body-bottom-itemsList-item-text {
  text-align: center;
}

.product-view .product__bottomText {
  margin: 2.5rem auto 0 auto;
  font-size: 22px;
  text-align: center;
}

.product-view .product__contact-btn {
  color: white;
  background: linear-gradient(#3D3D3D, #222, #000);
  border: 2px solid black;
  padding: 12px;
  border-radius: 66px;
  width: max-content;
  font-size: 15px;
  cursor: pointer;
}

/* --- Contact Form --- */
.contact-form-row {
  display: flex;
  flex-direction: column;
  width: 90%;
  padding: 0.375rem 0.75rem;
}

.contact-form-row input,
.contact-form-row textarea {
  background-color: #fafbfc;
  border: 1px solid gray;
  border-radius: 3px;
  padding: 5px;
}

.contact-form-row textarea {
  height: 100px;
}

.contact-form-row input::-webkit-outer-spin-button,
.contact-form-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-form-row input[type=number] {
  -moz-appearance: textfield;
}

.contact-form-success {
  display: flex;
  flex-direction: column;
  justify-items: center;
}

.contact-form-success p {
  margin: 0 auto;
  font-size: 20px;
  font-weight: bolder;
}

.contact-form-success span {
  margin: 0 auto;
}

/* --- Product Slider (SVG) --- */
.product_slider {
  position: relative;
  height: auto;
  max-width: 1420px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.product_slider__body {
  height: 80%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  text-align: center;
  box-shadow: 10px 17px 44px 0px rgba(0, 0, 0, 0.75);
}

.product_slider img {
  width: 100%;
}

.cd-slider-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.cd-slider > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  overflow: hidden;
}

.cd-slider > li.visible {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.cd-slider > li.is-animating {
  z-index: 3;
  opacity: 1;
}

.cd-slider .cd-svg-wrapper {
  height: 0;
  padding-bottom: 57.15%;
}

.cd-slider-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cd-slider-wrapper svg image {
  height: 100%;
}

@media (max-width: 500px) {
  .cd-slider-navigation {
    display: none;
  }
}

.cd-slider-navigation li {
  position: absolute;
  z-index: 3;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  right: 10px;
  height: 48px;
  width: 48px;
  list-style: none;
}

.cd-slider-navigation li a {
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  background: url('/images/cd-icon-arrows.svg') no-repeat 0 0;
  transition: transform .2s;
}

.no-touch .cd-slider-navigation li a:hover {
  transform: scale(1.1);
}

.cd-slider-navigation li:last-of-type {
  left: 10px;
  right: auto;
}

.cd-slider-navigation li:last-of-type a {
  background-position: -48px 0;
}

.cd-slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 90%;
}

@media (max-width: 500px) {
  .cd-slider-controls {
    bottom: 5%;
  }
}

.cd-slider-controls::after {
  clear: both;
  content: "";
  display: block;
}

.cd-slider-controls li {
  display: inline-block;
  margin-right: 10px;
}

.cd-slider-controls li:last-of-type {
  margin-right: 0;
}

.cd-slider-controls li.selected a {
  background-color: #fff;
}

.cd-slider-controls a {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
}

@media (max-width: 500px) {
  .cd-slider-controls a {
    height: 5px;
    width: 5px;
    border: 1px solid #fff;
  }
}

.no-touch .cd-slider-controls a:hover {
  background-color: #fff;
}

/* --- About Section --- */
.about {
  width: 80%;
  margin: 2rem auto;
}

.about__title {
  width: max-content;
  margin: 0 auto;
  padding: 25px;
}

.about__text {
  text-align: center;
  font-size: 22px;
}

.about__text-bolder {
  font-weight: bold;
}

.about__text-rage_italic {
  font-family: "Rage Italic";
}

/* --- Navigation --- */
.navigation__hamburger {
  display: none;
}

@media (max-width: 768px) {
  .navigation__hamburger {
    display: flex;
    width: 40px;
    height: 45px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
    /* Reset button styles */
    background: none;
    border: none;
    padding: 0;
  }

  .navigation__hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 50%;
    background: #232323;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }

  .navigation__hamburger span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
  }

  .navigation__hamburger span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
  }

  .navigation__hamburger span:nth-child(1),
  .navigation__hamburger span:nth-child(2) {
    top: 8px;
  }

  .navigation__hamburger span:nth-child(3),
  .navigation__hamburger span:nth-child(4) {
    top: 18px;
  }

  .navigation__hamburger span:nth-child(5),
  .navigation__hamburger span:nth-child(6) {
    top: 28px;
  }

  .navigation__hamburger.open span:nth-child(1),
  .navigation__hamburger.open span:nth-child(6) {
    transform: rotate(45deg);
  }

  .navigation__hamburger.open span:nth-child(2),
  .navigation__hamburger.open span:nth-child(5) {
    transform: rotate(-45deg);
  }

  .navigation__hamburger.open span:nth-child(1) {
    left: 4px;
    top: 8px;
  }

  .navigation__hamburger.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 8px;
  }

  .navigation__hamburger.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
  }

  .navigation__hamburger.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }

  .navigation__hamburger.open span:nth-child(5) {
    left: 4px;
    top: 20px;
  }

  .navigation__hamburger.open span:nth-child(6) {
    left: calc(50% - 5px);
    top: 20px;
  }
}

/* --- Font --- */
@font-face {
  font-family: "Rage Italic";
  src: url("https://fonts.cdnfonts.com/s/14164/RAGE_1.woff") format("woff");
  font-display: swap;
}

/* --- Global Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Lato, Cabin, sans-serif !important;
}

a {
  text-decoration: none !important;
  color: black !important;
}

ul, ol {
  margin-bottom: 0;
}

/* --- Layout --- */
.wrapper {
  min-height: 100vh;
}

.header {
  position: sticky;
  min-height: 20vh;
  top: 0;
  z-index: 100;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .header {
    min-height: auto;
  }
}

.navigation {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 20vh;
  background-color: #fff;
  padding: 0 7.5vw;
  transition: all 0.4s ease-in-out;
}

/* Scrolled state - dark background */
.navigation--scrolled {
  min-height: 10vh;
  background-color: #232323;
}

.navigation--scrolled .navigation__img {
  width: 60px;
  height: 75px;
  filter: invert(100%);
  margin-left: 15px;
}

@media (max-width: 768px) {
  .navigation--scrolled {
    min-height: auto;
    padding: 6px 5vw;
  }

  .navigation--scrolled .navigation__img {
    width: 32px;
    height: 40px;
    margin: 0;
    margin-left: 8px;
  }
}

.navigation--scrolled .navigation__list,
.navigation--scrolled .navigation__hamburger {
  filter: invert(100%);
}

@media (max-width: 768px) {
  .navigation--scrolled .navigation__list {
    border-top: 2px solid;
  }
}

@media (max-width: 768px) {
  .navigation {
    flex-wrap: wrap;
  }
}

.navigation__logo {
  display: flex;
  align-content: center;
}

@media (max-width: 768px) {
  .navigation__logo {
    flex-basis: 50%;
  }
}

.navigation__img {
  width: 100px;
  height: 125px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .navigation__img {
    margin: calc((20vh - 125px) / 2) 0;
  }
}

.navigation__list {
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .navigation__list {
    border-top: 2px solid;
    display: none;
  }

  .navigation__list--open {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-basis: 100%;
    padding: 16px 0 0 0;
  }
}

.navigation .active {
  font-weight: bold;
}

.navigation .active:before {
  width: 100%;
}

.navigation__item {
  position: relative;
  text-transform: uppercase;
  font-size: 18px;
  padding: 5px;
  margin: 5px 25px;
  width: max-content;
}

.navigation__item-link {
  color: black;
}

.navigation__item-link:before {
  content: '';
  position: absolute;
  margin-left: 0px;
  width: 0px;
  bottom: 0;
  left: 0;
  height: 2.5px;
  transition: all 500ms ease;
  background-color: black;
}

/* --- Main Content --- */
.main {
  flex-basis: 100%;
}

/* --- Footer --- */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 5%;
  background-color: #232323;
  color: #ffffff;
  flex-basis: 100%;
  height: max-content;
}

.footer__el {
  padding: 15px;
}

.footer__el-title {
  font-family: "Rage Italic" !important;
}

.footer__el-icon {
  padding: 5px;
  font-size: 20px;
}

.footer__el-icon-facebook {
  color: #2d88ff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.footer__el-icon-youtube {
  color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.footer__el-icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.footer__el-body {
  width: max-content;
}

.footer__el-body p {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Cabin;
  padding-bottom: 2px;
  margin: 0;
  font-size: 14px;
}

.footer__el-body p a {
  color: #fff !important;
  text-decoration: underline !important;
  padding-left: 5px;
}

.footer__leftSide {
  min-width: 240px;
  flex-basis: 30%;
}

.footer__rightSide {
  min-width: 240px;
  flex-basis: 30%;
}

/* --- Loader --- */
.loader {
  width: 50px;
  height: 50px;
  align-self: center;
  display: flex;
}

/* --- 404 Page --- */
.error-404 {
  width: 80%;
  min-height: 35vh;
  height: max-content;
  margin: 2rem auto;
}

.error-404__title {
  width: max-content;
  margin: 0 auto;
  padding: 25px;
  color: red;
}

.error-404__text {
  text-align: center;
  font-size: 22px;
}

.error-404__link {
  display: block;
  width: max-content;
  margin: 1rem auto;
  padding: 10px 25px;
  background: linear-gradient(#3D3D3D, #222, #000);
  color: white !important;
  border: 2px solid black;
  border-radius: 66px;
  font-size: 18px;
}
