@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-background: 255, 255, 255;
    --secondary-background: 115, 148, 187;
    --primary-foreground: #3d3d46;
    --secondary-foreground: #3c4256;
    --primary-text-color: #000000;
    /* --blue: 13, 110, 253; */
    --blue: 15, 78, 144;
    --green: 51, 201, 61;
    --red: 255, 32, 32;
    --light: 243, 246, 253;
    --dark: 28, 28, 28;
    --side-category-container-width: 260px;
}

::-webkit-scrollbar {
    height: 0.5em;
    width: 0.5em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-foreground);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Nunito", sans-serif;
}

a,
input {
    transition: 200ms all;
}

a {
    text-decoration: none;
    color: inherit;
}

html,
body {
    background-color: #f5f5f5;
    color: var(--primary-text-color);
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.09;
}

body.fullscreen,
body.download__pdf,
body.product__view__fullscreen {
    position: fixed;
}

.__main {
  background: linear-gradient(180deg, rgba(243, 246, 253, 0.7) 0%, rgba(243, 246, 253, 0) 86.26%);
}

/* NAV */

.nav__top-nav {
    display: flex;
    flex-direction: column;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
}

.nav__header__content {
  max-width: 1290px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

.nav__header__content.fullscreen {
    flex-direction: column;
    z-index: 1000;
    height: 100%;
    padding: 1rem;
    margin: 0 auto;
}

.nav__header__left.fullscreen,
.nav__contact.fullscreen {
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.nav__header-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.nav__header-wrapper.mobile {
    min-height: 100vh;
    height: 100%;
    flex-direction: column;
}

.nav__logo {
    width: max-content;
    height: 60px;
    margin: 0 auto;
    padding: 1rem 0rem;
    user-select: none;
    border-radius: 0 1rem 1rem 0;
}

.nav__logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav__blackline {
  display: none;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    height: 0;
    align-items: center;
    padding: 0;
    gap: 1rem;
    height: max-content;
    color: white;
    background: black;
    font-size: 1.1rem;
    transition: all .2s ease-in-out;
}

.nav__blackline__content {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__blackline__content > span {
  font-size: .9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: "";
}

.nav__blackline__notices.disabled {
  display: none;
}

.nav__blackline__notices {
  display: flex;
  overflow: hidden;
  user-select: none;
  margin: 0 2rem;
  width: 100%;
  gap: 1rem;
}
.nav__blackline__notices__content {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.nav__blackline__notices__content > * {
  flex: 0 0 auto;
  color: white;
  text-align: center;
}

.nav__blackline__notice {
  font-weight: 500;
  font-size: .9rem;
  padding: .2rem 1rem;
  white-space: nowrap;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.nav__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__contact__text {
  display: flex;
  flex-direction: column;
  font-size: .9rem;
  padding: 0 2rem;
  border-left: 2px solid #eee;
  border-right: 2px solid #eee;
  white-space: nowrap;
}

.nav__contact__text a {
  color: rgb(var(--blue));
  font-weight: bold;
  font-size: .8rem;
}

.nav__contact__btn {
  color: #f9f9f9;
  padding: .5rem 1rem;
  border-radius: 1.5rem;
  font-size: .9rem;
  background: rgb(var(--blue));
  cursor: pointer;
  transition: background .5s ease-in-out;
  white-space: nowrap;
}

.nav__contact__btn:hover {
  background: black;
}

.nav__nav-links {
    display: flex;
    position: relative;
    height: 100%;
    margin-left: 2rem;
    flex: 1;
}

.nav__header__fullscreen {
    display: none;
}

.nav__header__fullscreen.active {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(var(--primary-background));
    z-index: 99;
}

.nav__header.fullscreen{
    position: relative;
    z-index: 1000;
}

.nav__header__fullscreen.active .nav__nav-link-item {
  color: #333;
}

.nav__header__left {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav__nav-links.fullscreen {
    z-index: 999;
}

.nav__nav-links.fullscreen {
    background: rgba(255, 255, 255, .5);
}

.nav__nav-link-list {
    width: min-content;
    display: flex;
    justify-items: center;
    list-style: none;
    gap: .5rem;
    border-radius: 1rem;
}

.nav__nav-link-list.fullscreen {
    display: flex;
}

/* .nav__nav-link-list a:not(:first-child) li { */
/*     border-left: 4px solid white; */
/* } */

.nav__nav-link-item {
    position: relative;
    padding-right: .5rem;
    display: flex;
    align-items: center;
}

.nav__nav-link-item a {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    padding: .5rem .75rem;
    border-radius: .5rem;
    transition: color .5s ease;
    cursor: pointer;
    color: #333;
}

.nav__nav-link-item a:hover,
.nav__nav-link-item a:focus-visible {
    color: rgb(var(--blue));
}

.nav__nav-link-item:hover,
.nav__nav-link-item:focus-visible {
    color: rgb(var(--blue));
}

.nav__nav-link-item.menu-item::after {
  content: "";
  border-left: 5px solid transparent;
  border-top: 5px solid var(--menu-color, #333);
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  right: 0px;
  top: 16px;
}

.nav__nav-btn {
    display: none;
    padding: 1rem;
    cursor: pointer;
    user-select: none;
}

.nav__nav-btn:hover {
    border-radius: 1rem;
}

.nav__nav-btn::before {
    content: " ";
    background-color: rgb(var(--secondary-background));
    -webkit-mask-image: url("/assets/ico/menu.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("/assets/ico/menu.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    display: block;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}
.nav__content__wrapper {
  display: flex;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
}

.nav__content {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  background: white;
  z-index: 99999;
}

.nav__content__left-side {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  flex: 2;
}
.nav__content__cards {
  display: grid;
  flex: 2;
  padding: .75rem 0;
  width: 100%;
  gap: .5rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
  "card1 card2"
  "card3 card4"
  "card5 card6"
  "card7 card7"
}
.nav__content__card:nth-of-type(1) {
  grid-area: card1;
}
.nav__content__card:nth-of-type(2) {
  grid-area: card2;
}
.nav__content__card:nth-of-type(3) {
  grid-area: card3;
}
.nav__content__card:nth-of-type(4) {
  grid-area: card4;
}
.nav__content__card:nth-of-type(5) {
  grid-area: card5;
}
.nav__content__card:nth-of-type(6) {
  grid-area: card6;
}
.nav__content__card:nth-of-type(7) > div:first-child {
  flex: 1.1;
}
.nav__content__card:nth-of-type(7) > div {
  max-width: 100%;
}
.nav__content__card:nth-of-type(7) {
  grid-area: card7;
}
.nav__content__card:nth-of-type(7) img {
  width: 100%;
  object-fit: cover;
}
.nav__content__card {
  display: flex;
  user-select: none;
  cursor: pointer;
  border-radius: 1rem;
  padding-left: 1rem;
}
.nav__content__card:hover .nav__content__card__content__name {
  color: rgb(13, 110, 253);
}
.nav__content__card__image {
  background: #eee;
  height: 125px;
  position: relative;
  border-radius: .5rem;
  flex: 1;
  min-width: 125px;
  max-width: 125px;
  pointer-events: none;
}
.nav__content__card__image img {
  border-radius: .5rem;
  position: relative;
  z-index: 2;
  width: 125px;
  height: 125px;
  /* object-fit: cover; */
}

.nav__content__card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  border-radius: .5rem;
  animation: shimmer 1.2s infinite;
}

.nav__content__card__content {
  display: flex;
  flex-direction: column;
  padding: .75rem;
  flex: 1;
  pointer-events: none;
  justify-content: center;
}
.nav__content_card__content__name {
  transition: color .2s ease-in-out;
  font-size: .8rem;
  font-weight: 600;
  pointer-events: none;
}
.nav__content__card__content__desc {
  font-size: .8rem;
  pointer-events: none;
}
.nav__content__links {
  padding: 1rem;
  border-top: 2px solid #f6f6f6;
}
.nav__content__right-side {
  display: flex;
  flex: 1;
  background: #f6f6f6;
}
.nav__content__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__content__links__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__content__links__social-youtube:hover,
.nav__content__links__social-linkedin:hover, 
.nav__content_links__social-facebook:hover {
  color: rgb(13, 110, 253);
}
.nav__content__links__social-youtube,
.nav__content__links__social-linkedin, 
.nav__content__links__social-facebook {
  transition: color .2s ease-in-out;
}
.nav__content__links__view-all {
  display: flex;
  align-items: center;
  color: rgb(13, 110, 253);
  cursor: pointer;
}
.nav__content__links__view-all::after {
  content: " ";
  background-color: rgb(13, 110, 253);
  -webkit-mask-image: url("/assets/ico/move-up-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/move-up-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
.nav__content__links__view-all:hover::after {
  content: " ";
  background-color: rgb(13, 110, 253);
  -webkit-mask-image: url("/assets/ico/move-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/move-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}

/* ABOUTUS */

/* COMPANY */

.aboutus__company {
  background: #F3F6FD;
  padding: 4rem;
  max-width: 1290px;
  margin: 4rem auto;
  border-radius: 1rem;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
}
.aboutus__company__banner {
  padding: 2rem 0;
}
.aboutus__company__banner img {
  object-fit: cover;
  width: 100%;
  max-height: 350px;
}
.aboutus__company__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aboutus__company__top__left {
  display: flex;
  flex-direction: column;
}
.aboutus__company__top__left__subtitle {
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: .7rem;
  color: rgb(var(--blue))
}
.aboutus__company__top__left__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.5rem;
}
.aboutus__company__top__left__desc {
  font-size: .9rem;
  line-height: 2rem;
  color: rgba(28, 28, 28, .8);
}
.aboutus__company__top__right{}
.aboutus__company__top__right__contact {
  background: rgb(var(--blue));
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 2rem;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.aboutus__company__top__right__contact:hover {
  background: #000;
  color: #fff;
}
.aboutus__company__bottom{}
.aboutus__company__bottom__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: .9rem;
  line-height: 34px;
  margin: 0 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  color: rgba(28, 28, 28, .8);
  border-bottom: 1px solid #d9d9d9;
}
.aboutus__company__bottom__list {
  margin: 0 2rem;
  list-style: none;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.aboutus__company__bottom__list__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(18, 18, 18, .8);
}
.aboutus__company__bottom__list__item svg {
  min-width: 20px;
  max-width: 20px;
  color: rgb(var(--blue));
}

@media screen and (max-width: 850px) {
  .aboutus__company__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .aboutus__company__bottom__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 0;
  }
  .aboutus__company__bottom__content {
    margin: 0;
    margin-bottom: 2rem;
  }
}

/* HOME */

/* HERO */

.home__hero {
  margin: 0 auto;
  width: 100%;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.home__hero_video {
  height: 100%;
}

.home__hero_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__hero__video__scrolldown {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 48px;
  height: 48px;
  animation: .5s infinite alternate scolldown-arrow;
  transform: rotate(90deg) translateY(-50%);
  background-color: white;
  -webkit-mask-image: var(--ico-src);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--ico-src);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@keyframes scolldown-arrow {
  0% {
    transform: rotate(90deg) translateY(-50%) translateX(0%);
  }
  100% {
    transform: rotate(90deg) translateY(-50%) translateX(75%);
  }
}


@media screen and (max-width: 1290px) {
}
@media screen and (max-width: 680px) {
}
@media screen and (max-width: 550px) {
}

/* SERVICES */

.home__services {
  display: flex;
  padding: 4rem 2rem;
  gap: 1rem;
  flex-direction: column;
  background: rgba(255,254,254,255);
  margin: 6rem 0;
}
.home__services__container {
}
.home__services__top {
  display: flex;
  align-items: center;
  max-width: 1290px;
  margin: 0 auto;
}
.home__services__top__left {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home__services__top__left__subtitle {
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: .8rem;
  color: rgb(var(--blue))
}
.home__services__top__left__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3.5rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
}
.home__services__top__right {
  flex: 1;
}
.home__services__top__right__content {
  padding: 1rem 0;
}
.home__services__bottom {
  display: flex;
  justify-content: center;
  max-width: 1290px;
  margin: 0 auto;
}
.home__services__swiper {
  display: flex;
  padding: 1rem .75rem !important;
  cursor: default;
}

.home__services__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.home__services__swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1rem;
  justify-content: start;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.02);
  width: 200px;
  height: 100%;
}
.home__services__card__badge {
  display: flex;
  border-radius: .5rem;
  width: max-content;
  margin: 0;
  margin-left: auto;
}
.home__services__card__badge.badge-free {
  background: rgb(var(--blue));
  color: #f7f7f7;
  font-size: .8rem;
  padding: .5rem 1rem;
}
.home__services__card__icon {
  width: 48px;
  height: 48px;
  background-color: rgb(var(--blue));
  -webkit-mask-image: var(--logo-src);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--logo-src);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.home__services__card__icon img {
}
.home__services__card__content {
}
.home__services__card__content__title {
  margin: .5rem 0;
  font-weight: bold;
}
.home__services__card__content__desc {
  margin: .5rem 0;
  font-size: .8rem;
}

@media screen and (max-width: 1600px) {
  .home__services__cards,
  /* .home__services__bottom { */
  /*   display: grid; */
  /*   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  /* } */
}
@media screen and (max-width: 1350px) {
  .home__services__top {
    flex-direction: column;
  }
}

/* TABS */

.home__tabs {
  display: flex;
  flex-direction: column;
  background: rgb(var(--light));
  padding: 4rem 2rem;
  max-width: 1290px;
  margin: 6rem auto;
}
.home__tabs__container {
  height: 100%;
  padding-bottom: 300px;
}
.home__tabs__top {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}
.home__tabs__top__subtitle {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgb(var(--blue))
}
.home__tabs__top__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3.5rem;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
}
.home__tabs__bottom {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.home__tabs__bottom__tab__select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  width: 100%;
  background: #fff;
  gap: 2rem;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: .5rem; 
  position: relative;
}
.home__tabs__bottom__tab__select__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  padding: .5rem 1.75rem;
  border-radius: .5rem;
  font-size: .9rem;
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background .2s ease-in-out;
}
.home__tabs__bottom__tab__select__tab.active {
  background: #000;
  color: #fff;
}
.home__tabs_bottom__tab__subtitle {
  display: none;
  position: absolute;
  top: -100%;
}
.home__tabs_bottom__tab__subtitle.active {
  display: flex;
  font-size: .8rem;
  margin-top: 1rem;
  padding: .5rem 2rem;
  color: rgb(28, 28, 28, .8);
  background: #fff;
  border-radius: .5rem .5rem 0 0;
}
.home__tabs__bottom__cards {
  position: absolute;
  top: 100%;
  display: none;
  margin-top: 1rem;
  gap: 1rem;
  height: 290px;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.home__tabs__bottom__cards.active {
  display: flex;
}
.home__tabs__bottom__cards__left {
  background: #f9f9f9;
  display: flex;
  padding: 1rem;
  gap: 1rem;
  border-radius: .5rem;
  flex: 1.75;
  width: 100%;
}
.home__tabs__bottom__cards__left__first {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: .5rem;
  position: relative;
  flex: 1;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
}
.home__tabs__bottom__cards__left__first__badge {
  width: max-content;
  padding: .6rem 1.25rem;
  border-radius: .5rem;
  font-size: .7rem;
  background: rgba(var(--blue), .2);
  color: rgb(var(--blue));
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
}
.home__tabs__bottom__cards__left__first__image {
  height: 100%;
  width: 100%;
}
.home__tabs__bottom__cards__left__first__image img {
  height: 100%;
  margin-top 4%;
  width: 100%;
  object-fit: contain;
}
.home__tabs__bottom__cards__left__second {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: .5rem;
  position: relative;
  flex: 1;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
}
.home__tabs__bottom__cards__left__second__badge {
  width: max-content;
  padding: .6rem 1.25rem;
  border-radius: .5rem;
  font-size: .7rem;
  background: rgba(var(--blue), .2);
  color: rgb(var(--blue));
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
}
.home__tabs__bottom__cards__left__second__image {
  height: 100%;
  width: 100%;
}
.home__tabs__bottom__cards__left__second__image img {
  height: 100%;
  margin-top 4%;
  width: 100%;
  object-fit: contain;
}
.home__tabs__bottom__cards__right {
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.5rem;
  flex: 1;
  border-radius: .5rem;
  width: 100%;
}
.home__tabs__bottom__cards__right__icon {
}
.home__tabs__bottom__cards__right__title {
  margin: .5rem 0;
  font-weight: bold;
}
.home__tabs__bottom__cards__right__content {
  margin: .5rem 0;
  font-size: .85rem;
  margin-bottom: 1rem;
  color: rgba(28, 28, 28, 0.7);
  height: 100%;
}
.home__tabs__bottom__cards__right__button {
  background: rgb(var(--blue));
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 0 0 auto;
  user-select: none;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.home__tabs__bottom__cards__right__button:hover {
  background: #000;
}
.home__tabs__bottom__cards__right__button svg {
  max-width: 1rem;
}

@media screen and (max-width: 1149px) {
  .home__tabs_bottom__tab__subtitle {
    top: -50%;
  }
}
@media screen and (max-width: 1000px) {
  .home__tabs__container {
    padding-bottom: 0;
  }
  .home__tabs_bottom__tab__subtitle {
    display: none !important;
  }
  .home__tabs__bottom__cards {
    height: 500px;
    max-height: 500px;
  }
  .home__tabs__bottom__tab__select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    width: 100%;
    max-width: 600px;
  }
  .home__tabs__bottom__tab__select__tab  {
    justify-content: center;
  }
  .home__tabs__bottom {
    align-items: center;
    padding-bottom: 400px;
  }
  .home__tabs__bottom__cards {
    flex-direction: column;
  }
  .home__tabs__bottom__cards__left__first,
  .home__tabs__bottom__cards__left__second {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .home__tabs__bottom {
    padding-bottom: 500px;
  }
    .home__tabs__bottom__tab__select {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      width: 100%;
      max-width: 400px;
    }
    .home__tabs__bottom__cards__left__first__badge,
    .home__tabs__bottom__cards__left__second__badge {
      position: static;
      margin: 2rem 2rem 0 2rem;
    }
    .home__tabs__bottom__cards__left {
      flex-direction: column;
    }
    .home__tabs__bottom__cards__left__first__image img,
    .home__tabs__bottom__cards__left__second__image img {
      max-height: 300px;
      max-width: 300px;
    }
    .home__tabs__bottom__cards__left__first__image,
    .home__tabs__bottom__cards__left__second__image {
      width: 100%;
    }
    .home__tabs__bottom__cards__left__first,
    .home__tabs__bottom__cards__left__second {
      width: 100%;
    }
    .home__tabs__bottom__cards {
      align-items: center;
    }
}
@media screen and (max-width: 400px) {
    .home__tabs__bottom__tab__select {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      width: 100%;
      max-width: 150px;
    }
    .home__tabs__bottom__tab__select {
      max-width: 100%;
    }
}

/* STEPS */

.home__steps {
  display: flex;
  padding: 4rem 2rem;
  background: rgba(255,254,254,255);
}
.home__steps__container {
  display: flex;
  max-width: 1290px;
  margin: 0 auto;
  gap: 4rem;
}
.home__steps__left {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home__steps__left__subtitle {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgb(var(--blue))
}
.home__steps__left__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 3.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.home__steps__left__content {
  margin: .5rem 0;
  font-size: .9rem;
  margin-bottom: 1rem;
  height: 100%;
  color: rgba(28, 28, 28, .8);
}
.home__steps__left__list {
  list-style: none;
}
.home__steps__left__list__item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.home__steps__left__list__item svg {
  max-width: 1rem;
  color: rgb(var(--blue));
}
.home__steps__right {
  flex: 2;
}
.home__steps__right__container {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
}
.home__steps__right__first__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
.home__steps__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgb(var(--light));
  max-width: 250px;
  min-width: 200px;
  border-radius: .5rem;
  transition: background .2s ease-in-out;
}
.home__steps__card:hover {
  background: #000;
  color: #fff;
}
.home__steps__card:hover .home__steps__card__content {
  color: #f7f7f7;
}
.home__steps__card__title {
  font-weight: bold;
}
.home__steps__card__content {
  font-size: .8rem;
  color: rgba(28, 28, 28, .8);
}
.home__steps__right__numbers {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  align-items: center;
}
.home__steps__right__numbers__number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--light));
  color: rgb(var(--blue));
  font-weight: bold;
  font-size: .9rem;
  padding: .9rem 1rem;
  border-radius: 50%;
  width: max-content;
  height: max-content;
  position: relative;
  user-select: none;
}
.home__steps__right__numbers__number:not(:last-child)::after {
  content: ""; 
  position: absolute; 
  bottom: -110%; 
  height: 100%; 
  width: 2px;
  border-left: 1px dashed rgba(var(--blue), .6);
}
.home__steps__right__second__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

@media screen and (max-width: 950px) {
  .home__steps__container {
    flex-direction:  column;
  }
  .home__steps__right__container {
    flex-direction: column;
    align-items: center;
  }
  .home__steps__right__numbers {
    display: none;
  }
  .home__steps__right__first__cards {
    grid-template-rows: 1fr;
  }
  .home__steps__right__second__cards {
    gap: 2rem;
    grid-template-rows: 1fr 1fr;
  }
  .home__steps__right__second__cards > div:nth-child(2) {
    display: none;
  }
}

/* REFERENCES */

.home__references {
  margin: 6rem auto 2rem auto;
  max-width: 1290px;
}
.home__references__swiper {
  display: flex;
}

.home__references__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.home__references__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: .5rem;
  padding: 2rem;
  height: 150px;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
}
.home__references__swiper img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16/9;
}

/* FOOTER */

.footer {
  position: relative;
  background: rgb(var(--dark));
  display: flex;
  flex-direction: column;
  color: #f8f8f8;
  padding: 4rem 2rem;
  z-index: 9;
}
.footer__background {}
.footer__background img {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  user-select: none;
}
.footer__container {
  display: flex;
  flex-direction: column;
  max-width: 1290px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255 255 255 / 20%);
}
.footer__top__left {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  padding-right: 8rem;
  gap: 1rem;
  flex: 1;
  border-right: 1px solid rgba(255 255 255 / 20%);
}
.footer__top__left__logo {}
.footer__top__left__logo img {
  height: 60px;
}
.footer__top__left__text {
  font-size: 1rem;
  max-width: 380px;
}
.footer__top__left__subscribe {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: auto 0;
}
.footer__top__left__subscribe__input {
  height: max-content !important;
  font-size: 1.1rem !important;
  background: rgb(var(--dark)) !important;
  color: #fff !important;
  border-radius: .5rem !important;
  border: 1px solid rgba(255 255 255 / 20%) !important;
}
.footer__top__left__subscribe__submit {
  white-space: nowrap;
  background: rgb(var(--blue));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .2s ease-in-out;
  font-weight: bold;
}
.footer__top__left__subscribe__submit.fail {
  background: rgb(var(--red));
}
.footer__top__left__subscribe__submit.fail:hover {
  background: rgb(var(--red));
  color: #fff;
}
.footer__top__left__subscribe__submit.success {
  background: rgb(var(--green));
}
.footer__top__left__subscribe__submit.success:hover {
  background: rgb(var(--green));
  color: #fff;
}
.footer__top__left__subscribe__submit:hover {
  background: #fff;
  color: #000;
}
.footer__top__right {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  padding-left: 8rem;
  flex: 1;
  gap: 1rem;
}
.footer__top__right__title {
  font-size: 1.8rem;
  font-weight: bold;
}
.footer__top__right__content {
  font-size: 1.1rem;
  padding: 1rem 0;
}
.footer__top__right__button {
  background: rgb(var(--blue));
  padding: .5rem 2rem;
  border-radius: .25rem;
  width: max-content;
  cursor: pointer;
  transition: background .2s ease-in-out;
  font-size: 1.1rem;
}
.footer__top__right__button:hover {
  background: #fff;
  color: #000;
}
.footer__top__right__cards {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.footer__top__right__cards__card {
  display: flex;
  flex-direction: column;
}
.footer__top__right__cards__card__title {
  font-size: 1.4rem;
  font-weight: bold;
}
.footer__top__right__cards__card__desc {
  font-size: 1.1rem;
  white-space: nowrap;
}
.footer__bottom {
  padding: 4rem 1rem;
  display: flex;
  border-bottom: 1px solid rgba(255 255 255 / 20%);
}
.footer__bottom__left {
  display: flex;
  border-right: 1px solid rgba(255 255 255 / 20%);
  flex: 1;
  justify-content: space-between;
  padding-right: 4rem;
}
.footer__bottom__left__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__bottom__left__links__title {
  font-size: 1.1rem;
  font-weight: bold;
}
.footer__bottom__left__links__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__bottom__left__links__list__item {
  font-size: 1.1rem;
}
.footer__bottom__left__links__list__item:hover {
  cursor: pointer;
}
.footer__bottom__right {
  gap: 1rem;
  flex: 1;
  padding: 0 4rem;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__bottom__right__links {
  gap: 1rem;
}
.footer__bottom__right__link__group {
}
.footer__bottom__right__links__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: .5rem;
}
.footer__bottom__right__links__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__bottom__right__links__list__item {}
.footer__links {
  display: flex;
  padding: 2rem 0 0 0;
  justify-content: space-between;
  align-items: center;
}
.footer__links__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__links__social__youtube,
.footer__links__social__linkedin,
.footer__links__social__instagram {
  transition: color .2s ease-in-out;
}
.footer__links__social__youtube:hover,
.footer__links__social__linkedin:hover,
.footer__links__social__instagram:hover {
  color: rgba(var(--blue), .8);
}
.footer__copyright {
  font-size: .8rem;
}
@media screen and (max-width: 1350px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__top__left {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255 255 255 / 20%);
    padding-right: 0;
    padding: 4rem 0;
    align-items: center;
  }
  .footer__top__right {
    padding-left: 0;
    padding: 4rem 0 00;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom__left {
    padding-right: 0;
    padding-bottom: 4rem;
    border-right: 0;
  }
  .footer__bottom__right {
    padding: 0;
  }
}

@media screen and (max-width: 650px) {
  .footer__top__left__subscribe {
    flex-direction: column;
  }
  .footer__top__right__cards {
    flex-direction: column;
    gap: 1rem;
  }
  .footer__bottom__left {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .footer__bottom__left__links {
    width: 100%;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255 255 255 / 20%);
  }
  .footer__top__left__subscribe__input {
    width: 100% !important;
  }
  .footer__top__right__button {
    padding: .5rem 1rem;
  }
  .footer__bottom__right {
    grid-template-columns: 1fr;
  }
}

/* */

/* LOCALE */

.locale__container {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.locale__select {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .1s ease-in-out;
  border: 3px solid #000;
}
.locale__select.active {
  cursor: default;
  pointer-events: none;
  user-select: none;
  border: 3px solid white;
}
.locale__select.active:hover {
  background: #fff;
  color: #000;
}
.locale__select:hover {
  background: rgba(var(--blue), .8);
}
.locale__select img {
  width: 32px;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* CONTACT FORM */
.contact__form {
  display: flex;
  max-width: 1290px;
  margin: 4rem auto;
}
.contact__form__left {
  display: flex;
  flex-direction: column;
  background: rgb(var(--light));
  margin: 1rem;
  padding: 4rem;
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: .25rem;
  flex: 1;
}
.contact__form__left__top {
  display: flex;
  flex-direction: column;
  border-bottom: rgba(28, 28, 28, .3) 1px solid;
}
.contact__form__left__top__subtitle {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgb(var(--blue));
}
.contact__form__left__top__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.contact__form__left__top__text {
  margin: .5rem 0;
  font-size: .9rem;
  margin-bottom: 1rem;
  height: 100%;
  color: rgba(28, 28, 28, .8);
}
.contact__form__left__bottom {
  margin-top: 2rem;
}
.contact__form__left__bottom__inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .8rem;
}
.contact__form__left__bottom__first__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__form__left__bottom__first__row__group {
  flex: 1;
}
.contact__form__left__bottom__first__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.contact__form__left__bottom__first__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  padding: .5rem 1rem !important;
  width: 100% !important;
}
.contact__form__left__bottom__second__row {
}
.contact__form__left__bottom__second__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.contact__form__left__bottom__second__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  padding: .5rem 1rem !important;
  width: 100% !important;
}
.contact__form__left__bottom__third__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__form__left__bottom__third__row__group {
  flex: 1;
}
.contact__form__left__bottom__third__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.contact__form__left__bottom__third__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  padding: .5rem 1rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  width: 100% !important;
}
.contact__form__left__bottom__fourth__row {
}
.contact__form__left__bottom__fourth__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.contact__form__left__bottom__fourth__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  padding: .5rem 1rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  width: 100% !important;
}
.contact__form__left__bottom__submit {
  background: rgb(var(--blue));
  padding: .5rem 2rem;
  border-radius: .25rem;
  width: max-content;
  cursor: pointer;
  transition: background .2s ease-in-out;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}
.contact__form__left__bottom__submit:hover {
  background: rgba(var(--blue), .8);
}
.contact__form__left__bottom__submit.success {
  background: rgb(var(--green));
}
.contact__form__left__bottom__submit.fail {
  background: rgb(var(--red));
}
.contact__form__right {
  display: flex;
  flex: 1;
  gap: 1rem;
}
.contact__form__right__first {
  background: rgb(var(--light));
  margin: 1rem 0;
  padding: 4rem;
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: .25rem;
}
.contact__form__right__first__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  height: 100%;
}
.contact__form__right__first__list__item:not(:last-child) {
  border-bottom: 1px solid rgba(28, 28, 28, .3);
}
.contact__form__right__first__list__item {
  padding: 2rem 0;
}
.contact__form__right__first__list__item__top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__form__right__first__list__item__top__prefix {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.contact__form__right__first__list__item__top__text {
}
.contact__form__right__first__list__item__bottom {
  font-size: .8rem;
  color: rgb(var(--blue));
  padding: .25rem 0;
}
.contact__form__right__second {
  display: flex;
  flex-direction: column;
  background: rgb(var(--light));
  margin: 1rem 0;
  padding: 4rem;
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: .25rem;
}
.contact__form__right__second__list {
  display: flex;
  flex-direction: column;
  flex: 2;
}
.contact__form__right__second__list__item {
  border-bottom: 1px solid rgba(28, 28, 28, .4);
}
.contact__form__right__second__list__item {
  padding: 2rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form__right__second__list__item__top {
}
.contact__form__right__second__list__item__top__icon {
  margin-bottom: .5rem;
  width: 32px;
  height: 32px;
  background-color: rgb(var(--blue));
  -webkit-mask-image: var(--logo-src);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--logo-src);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.contact__form__right__second__list__item__top__title {
  font-weight: 500;
  font-size: 1.1rem;
}
.contact__form__right__second__list__item__top__text {
  padding: 2rem 0;
}
.contact__form__right__second__list__item__bottom {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.contact__form__right__second__list__item__bottom__text {
  margin-top: .5rem;
  font-size: .8rem;
}
.contact__form__right__second__socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 2rem 0;
}
.contact__form__right__second__socials__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
}
.contact__form__right__second__socials__item__icon {
  width: 22px;
  height: 22px;
  background-color: rgb(var(--blue));
  -webkit-mask-image: var(--logo-src);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--logo-src);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.contact__form__right__second__socials__item__text {
}


@media screen and (max-width: 1350px) {
  .contact__form {
    flex-direction: column;
  }
  .contact__form__right__first,
  .contact__form__right__second {
    flex: 1;
  }
  .contact__form__right {
    margin: 1rem;
  }
}


@media screen and (max-width: 550px) {
  .contact__form__right {
    flex-direction: column;
  }
}

/* CATEGORY REQUEST FORM */

.category__request__section {
  display: flex;
  max-width: 1290px;
  margin: 4rem auto;
}
.category__request__form {
  display: flex;
  flex-direction: column;
  background: rgb(var(--light));
  margin: 1rem;
  padding: 4rem;
  border: 1px solid rgba(28, 28, 28, .1);
  border-radius: .25rem;
  flex: 1;
}
.category__request__form__top {
  display: flex;
  flex-direction: column;
  border-bottom: rgba(28, 28, 28, .3) 1px solid;
}
.category__request__form__top__subtitle {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgb(var(--blue));
}
.category__request__form__top__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.category__request__form__top__text {
  margin: .5rem 0;
  font-size: .9rem;
  margin-bottom: 1rem;
  height: 100%;
  color: rgba(28, 28, 28, .8);
}
.category__request__form__bottom {
  margin-top: 2rem;
}
.category__request__form__bottom__inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .8rem;
}
.category__request__form__bottom__first__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.category__request__form__bottom__first__row__group {
  flex: 1;
}
.category__request__form__bottom__first__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.category__request__form__bottom__first__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  padding: .5rem 1rem !important;
  width: 100% !important;
}
.category__request__form__bottom__second__row {
}
.category__request__form__bottom__second__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.category__request__form__bottom__second__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  padding: .5rem 1rem !important;
  width: 100% !important;
}
.category__request__form__bottom__third__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.category__request__form__bottom__third__row__group {
  flex: 1;
}
.category__request__form__bottom__third__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.category__request__form__bottom__third__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  padding: .5rem 1rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  width: 100% !important;
}
.category__request__form__bottom__fourth__row {
}
.category__request__form__bottom__fourth__row__label {
  margin-bottom: .5rem;
  white-space: nowrap;
}
.category__request__form__bottom__fourth__row__input {
  height: max-content !important;
  font-size: .8rem !important;
  background: #fff !important;
  color: #333 !important;
  border-radius: .25rem !important;
  padding: .5rem 1rem !important;
  border: 1px solid rgba(28, 28, 28, .1) !important;
  width: 100% !important;
}
.category__request__form__bottom__submit {
  background: rgb(var(--blue));
  padding: .5rem 2rem;
  border-radius: .25rem;
  width: max-content;
  cursor: pointer;
  transition: background .2s ease-in-out;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}
.category__request__form__bottom__submit:hover {
  background: rgba(var(--blue), .8);
}
.category__request__form__bottom__submit.success {
  background: rgb(var(--green));
}
.category__request__form__bottom__submit.fail {
  background: rgb(var(--red));
}

@media screen and (max-width: 1350px) {
  .category__request__section {
    flex-direction: column;
  }
}


@media screen and (max-width: 550px) {
  .contact__form__right {
    flex-direction: column;
  }
}


/* ARTICLE VIEW */

.article__view {
  margin: 4rem auto;
  padding: 4rem;
  background: #F3F6FD;
  border-radius: 1rem;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
  max-width: 1290px;
}
.article__view__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.5rem;
}
.article__view__description {
  font-size: .9rem;
  line-height: 2rem;
  color: rgba(28, 28, 28, .8);
}
.article__view__banner {
  padding: 2rem 0;
}
.article__view__banner img {
  object-fit: cover;
  width: 100%;
  max-height: 350px;
}

/* BLOG */

.blog__section {
  max-width: 1290px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.blog__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 5rem 0;
}
.blog__top__subtitle {
  font-size: .8rem;
  color: rgb(var(--blue));
  background: rgba(var(--blue), .1);
  border-radius: 1rem;
  padding: .5rem 1.5rem;
  margin-bottom: 1rem;
}
.blog__top__title {
  font-weight: 600;
  font-size: 3.5rem;
}
.blog__top__text {
  font-size: 1.1rem;
  padding: 2rem 1rem;
}
.blog__bottom {
  border-top: 2px solid rgb(28, 28, 28, .2);
  padding: 6rem 0 2rem 0;
}
.blog__bottom__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.blog__bottom__card {
  border-radius: 1rem;
  background: rgb(var(--light));
  display: flex;
  flex-direction: column;
}
.blog__bottom__card:first-child {
  background: rgb(var(--dark));
  color: #fff;
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog__bottom__card__top {
  flex: 1;
}
.blog__bottom__card__top__image {
  padding: 1rem;
  border-radius: 1rem;
  padding-bottom: 0;
}
.blog__bottom__card:first-child .blog__bottom__card__top__image {
  padding-bottom: 1rem;
}
.blog__bottom__card__top__image img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  max-height: 250px;
}
.blog__bottom__card__bottom {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  flex: 1;
}
.blog__bottom__card__bottom__subtitle {
  font-weight: 500;
  text-transform: uppercase;
  font-size: .7rem;
  color: rgb(var(--blue))
}
.blog__bottom__card__bottom__title {
  font-weight: 600;
  font-size: 1.2rem;
}
.blog__bottom__card__bottom__text {
  font-size: .9rem;
  flex: 1;
}
.blog__bottom__card__bottom__button {
  background: rgb(var(--blue));
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 0 0 auto;
  user-select: none;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.blog__bottom__card__bottom__button:hover {
  background: #000;
}
.blog__bottom__card__bottom__button svg {
  max-width: 1rem;
}

@media screen and (max-width: 875px) {
  .blog__bottom__cards {
    grid-template-columns: 1fr;
  }
  .blog__bottom__card:first-child  {
    flex-direction: column;
  }
}


/* CONTACT PAGE */
.contact__section {
  max-width: 1290px;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.contact__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 5rem 0;
}
.contact__top__subtitle {
  font-size: .8rem;
  color: rgb(var(--blue));
  background: rgba(var(--blue), .1);
  border-radius: 1rem;
  padding: .5rem 1.5rem;
  margin-bottom: 1rem;
}
.contact__top__title {
  font-weight: 600;
  font-size: 3.5rem;
}
.contact__top__text {
  font-size: 1.1rem;
  padding: 2rem 1rem;
}

.contact__map {
  position: relative;
  max-width: 663px;
  margin: auto;
}
.contact__map img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}
.contact__map__item {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.contact__map__item::after {
  width: 21px;
  height: 21px;
  left: -8px;
  top: -8px;
}
.contact__map__item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1351D888;
  left: -4px;
  top: -4px;
  position: absolute;
}

.contact__map__item:hover {
  cursor: pointer;
}
.contact__map__item:hover .contact__map__item__inner {
  opacity: 100;
  visibility: visible;
  cursor: default;
}

.contact__map__item .contact__map__item__inner {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 3px 15px 3.75px #00000008;
  border-radius: 8px;
  padding: 35px 40px;
  background: #ffffff;
  z-index: 9;
  width: 246px;
  display: flex;
  gap: .5rem;
}

.contact__map__item[data-country="turkey"]::before {
  background: rgba(255, 0, 0, .8);
}

.contact__map__item[data-country="turkey"] {
  left: auto;
  right: 45%;
  top: 29%;
}
.contact__map__item[data-country="denmark"] {
  left: auto;
  right: 53%;
  top: 19%;
}
.contact__map__item[data-country="germany"] {
  left: auto;
  right: 53%;
  top: 24%;
}
.contact__map__item[data-country="china"] {
  left: auto;
  right: 20%;
  top: 35%;
}
.contact__map__item[data-country="brazil"] {
  left: auto;
  right: 72%;
  top: 67%;
}
.contact__map__item[data-country="spain"] {
  left: auto;
  right: 57%;
  top: 28%;
}
.contact__map__item[data-country="taiwan"] {
  left: auto;
  right: 16%;
  top: 41%;
}

.contact__map__item__inner__flag {
  border-radius: 50%;
  max-width: 32px;
  width: 100%;
  flex: 1;
}
.contact__map__item__inner__flag img {
  max-height: 32px;
  width: 100%;
  border-radius: 50%;
}
.contact__map__item__inner__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact__map__item__inner__content__title {
  font-weight: 600;
  font-size: 1rem;
}
.contact__map__item__inner__content__text {
  font-size: .8rem;
  color: rgb(28, 28, 28);
}

@media (max-width: 1700px) {
    .contact__map__item .contact__map__item__inner {
        padding: 17px 43px 24px 15px;
        width: 200px;
    }
}

/* */

@media screen and (max-width: 1200px) {
    .nav__product-grid {
        justify-content: center;
    }
}
@media screen and (max-width: 1000px) {
    .nav__contact {
      display: none;
    }
    .nav__nav-btn {
        display: flex;
    }
    .nav__nav-links {
        margin: 0 0 0 auto;
        padding: 0;
    }
    .nav__nav-links:has(> .nav__nav-link-list.fullscreen) {
        width: 100%;
        flex-direction: column;
    }
    .nav__nav-btn.nav__nav-btn-fullscreen {
        margin: 1rem 1rem 1rem auto;
        z-index: 9999;
    }
    .nav__nav-btn.nav__nav-btn-fullscreen::before {
        content: " ";
        background-color: rgb(var(--secondary-background));
        -webkit-mask-image: url("/assets/ico/close-button.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        mask-image: url("/assets/ico/close-button.svg");
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        display: block;
        background-size: 24px 24px;
        width: 24px;
        height: 24px;
    }
    .nav__nav-link-list {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav__nav-link-list li:first-child,
    .nav__nav-link-list li:last-child {
        border-radius: 0;
    }
    .nav__nav-link-list li {
        border: none !important;
    }
    .nav__logo {
        width: 100%;
    }
    .nav__content {
      display: none !important;
    }
    .menu-item::after {
      display: none; 
    }
}

/* PRODUCT TYPE BANNER */

.product__type__banner {
  display: flex;
}

.product__type__banner img {
  border-right: 2px solid rgb(var(--dark));
}

.product__type__banner__text__container {
  position: relative;
  flex: 1;
  height: 200px;
  min-width: 200px;
}

.product__type__banner__text {
  font-size: 1.1rem;
  opacity: 0;
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeText linear infinite;
  padding: 1rem;
}

@keyframes fadeText {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}


/* */

#product-content {
  padding: 1rem;
  width: 100%;
  border-radius: 2rem;
  padding-left: var(--side-category-container-width);
  /* background-color: rgba(232,244,255, .25); */
}
.product__loading__container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(243, 246, 253, 0.7) 100%, rgba(243, 246, 253, 0) 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product__loading__container .loading {
  width: 16px;
  height: 16px;
  background: rgb(var(--blue));
  z-index: 999999;
  animation: 1s infinite alternate loading;
  border-radius: 50%;
  transform: translateX(0%);
}
@keyframes loading {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.product__type__banner {
  padding: 0 4rem;
}
.product__type__banner img {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
}

.product-category-container-wrapper {
}

.product-category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 345px);
    justify-content: center;
    padding: 0.8em 0;
    gap: 1rem;
}

.product-category-container a {
    padding: 1rem;
}

.product {
    display: flex;
    flex-direction: column;
    /* background-color: rgba(133, 166, 199, 0.25); */
    background-color: white;
    height: 300px;
    width: 300px;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
}

.product:hover .product-name {
  color: rgb(var(--blue));
}

.product-images {
    position: relative;
    height: 200px;
}

.single-product-image {
  width: 100%;
  height: 100%;
  cursor: pointer;
  /* border: 2px solid transparent; */
  /* transition: border .2s ease-in-out; */

  transition: transform .2s ease-in-out;
  zoom: 1;
}
.single-product-image:hover {
  zoom: 1.1,
  /* border: 2px solid rgb(var(--blue)); */
}

.single-product-image:first-child .product-image {
    display: block;
}

.single-product-image:not(:first-child) {
    pointer-events: none;
    cursor: default;
}

.single__product__image__preview__container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single__product__image__preview__image {
  height: 100%;
  width: 100%;
  padding: 2rem 1rem;
  user-select: none;
}
.single__product__image__preview__image img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.single__product__image__preview__next {
  -webkit-mask-image: url("/assets/ico/circle-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 32px 32px;
  width: 48px;
  height: 48px;
  background: #eee;
  margin: 0 2rem;
}
.single__product__image__preview__next:hover {
  cursor: pointer;
  background: #fff;
}
.single__product__image__preview__prev {
  -webkit-mask-image: url("/assets/ico/circle-arrow-left.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/circle-arrow-left.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 32px 32px;
  width: 48px;
  height: 48px;
  background: #eee;
  margin: 0 2rem;
}
.single__product__image__preview__prev:hover {
  cursor: pointer;
  background: #fff;
}
.single__product__image__preview__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  -webkit-mask-image: url("/assets/ico/close-button.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/close-button.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  background: #eee;
}
.single__product__image__preview__close:hover {
  cursor: pointer;
  background: #fff;
}

.product-images:hover .single-product-image:last-child .product-image {
    z-index: 2;
    display: block;
}

.product-images:hover .single-product-image:not(:is(:last-of-type)) {
    display: none;
}

.product-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: none;
  border-radius: .5rem;
}

/* .product-images:hover img.product-image { */
/*   object-fit: contain; */
/* } */

.product-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 0.25rem;
    border-radius: .5rem;
}

.product-name {
    width: fit-content;
    font-size: 1.2rem;
    font-weight: bold;
    margin: auto;
    display: inline;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    /* color: rgba(13, 78, 157, 0.5); */
    color: black;
    transition: color .2s ease-in-out;
    text-align: center;
}
.product-price {
    font-size: 17px;
    font-weight: 600;
}

.logo {
    font-size: 32px;
    cursor: pointer;
}

.logo::after {
    content: "|";
    margin-left: 1rem;
}

.nav-link {
    position: relative;
}

.nav-links {
    display: flex;
    flex: 1;
    gap: 1rem;
}

.nav-link:last-child {
    margin-left: auto;
}

/* .nav-link-dropdown-container a {
  display: none;
} */

.nav-link-dropdown-container svg {
    width: 18px;
}

.nav-link-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgb(var(--primary-background));
    color: var(--primary-text-color);
    fill: var(--primary-text-color);
    font-size: 18px;
    padding: 0.5rem;
    border-radius: 10px;
    gap: 0.4rem;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 1px 4px,
        rgb(51, 51, 51) 0px 0px 0px 3px;
}

.nav-link-dropdown-container:hover .nav-link-dropdown {
    display: flex;
}

.nav-link .primary-btn:hover ~ .nav-link-dropdown {
    display: flex;
}

.nav-link-dropdown-container:hover .primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 0.5rem;
}

.nav-link-dropdown-container:hover .primary-btn svg {
    width: 16px;
}

.nav-link:last-child {
    border-radius: 10px;
    box-shadow:
        rgba(0, 0, 0, 0.16) 0px 1px 4px,
        rgb(51, 51, 51) 0px 0px 0px 3px;
}

.nav-link-dropdown {
    display: none;
    position: absolute;
    width: 150px;
    min-height: 150px;
    left: 0;
    right: 0;
    top: 0;
    gap: 0.5rem;
    flex-direction: column;
    background-color: rgb(var(--primary-background));
    border: 4px solid rgb(var(--secondary-background));
    z-index: 999;
}

.primary-btn {
    display: flex;
    align-items: center;
    background-color: rgb(var(--primary-background));
    color: var(--primary-text-color);
    fill: var(--primary-text-color);
    font-size: 18px;
    padding: 0.5rem;
    border-radius: 10px;
    gap: 0.4rem;
    cursor: pointer;
}

.primary-btn > svg {
    width: 18px;
}

.primary-btn:hover {
    background-color: rgb(var(--secondary-background));
}

.primary-btn.login {
    background-color: transparent;
}

.primary-btn.login:hover {
    opacity: 0.85;
}

.single-product-image-video {
  width: 100%;
  height: 100%;
}
.single-product-image-video-icon:before {
  content: " ";
  -webkit-mask-image: url("/assets/ico/play.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/play.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  background: #fff;
}
.single-product-image-video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 96px;
  width: 96px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 3px solid rgb(var(--blue));
  border-radius: .25rem;
  background-clip: content-box;
}
.single-product-image-video-icon:hover {
    cursor: pointer;
    border: 2px solid rgb(96, 138, 187, .8);
    opacity: .8;
}
.single-product-image-icon {
    height: 96px;
    width: 96px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 3px solid rgb(var(--blue));
    border-radius: .25rem;
    background-clip: content-box;
    justify-self: center;
}

.single-product-image-icon:hover {
    cursor: pointer;
    border: 2px solid rgb(96, 138, 187, .8);
    opacity: .8;
}

.single-product-image-display > img {
    height: 100%;
    object-fit: contain;
    border-radius: .5rem;
}

.category-bar-container {
    border-top: 3px solid var(--primary-foreground);
    background-color: rgb(var(--secondary-background));
    border-bottom: 1px solid var(--secondary-foreground);
}

.category-bar {
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    gap: 2rem;
    overflow-y: auto;
    padding: 1rem;
}

.category-bar .primary-btn {
    outline: none;
    border: none;
    font-weight: 600;
    background-color: transparent;
}
.category-bar .primary-btn:hover {
    color: #ddd;
}

.login-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    flex: 1;
    max-width: 1280px;
    margin: 0 auto;
}

#create_product,
#create_category,
#create_user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    max-width: 1280px;
    margin: auto;
    height: 100vh;
}

input,
textarea,
select {
    height: 100px;
    width: 400px;
    padding: 1rem;
    font-size: 25px;
    margin: 0 auto;
    background-color: rgb(var(--secondary-background));
    border: 2px solid rgb(var(--secondary-background));
    color: var(--primary-text-color);
    outline: none;
    resize: none;
    border-bottom: 4px solid transparent;
}

input[type="submit"] {
    margin-left: auto;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: var(--primary-foreground);
}

#create_product .upload_file {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    font-size: 25px;
    background-color: rgb(var(--primary-background));
    border: 2px solid rgb(var(--secondary-background));
    position: relative;
    color: #fff;
    border-radius: 2px;
    text-align: center;
    float: left;
    cursor: pointer;
}

.upload_file > input[type="file"]:disabled ~ .uploaded_files {
    color: red;
}

input:focus,
textarea:focus {
    border-bottom: 4px solid #fff;
}

.image-display-area {
    display: flex;
    flex-wrap: wrap;
    margin: 0rem 5rem;
    height: 100vh;
    background-color: rgb(var(--secondary-background));
    overflow: auto;
    scroll-snap-type: y proximity;
}

.image-display-area img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
    scroll-snap-align: center;
}

.reset-filter-btn {
    display: flex;
    width: fit-content;
    font-size: 1em;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background-color: #b6cde2;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    border-radius: 0.5rem;
}

.reset-filter-btn:hover {
    opacity: 0.8;
}

.filtered-product-title {
    display: flex;
    font-size: 1.65rem;
    font-weight: bold;
    margin: 0 2rem;
    color: #ffffff;
    background-color: rgb(var(--blue));
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 100%;
}

.filtered-product-title::before {
    content: " ";
    background: #ffffff;
    -webkit-mask-image: var(--data-img);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: var(--data-img);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    display: block;
    background-size: 32px 32px;
    width: 32px;
    height: 32px;
}

.filtered-product-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-category-container {
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: var(--side-category-container-width);
  min-width: var(--side-category-container-width);
  max-width: var(--side-category-container-width);
  /* min-height: 100vh; */
  margin: 0 1rem;
  /* background-color: #B6CDE2; */
  color: #fff;
  border-right: 2px solid rgba(115, 148, 187, 0.2);
  overflow-y: auto;
}

.side-category-container.stopped {
  position: absolute;
  z-index: auto;
  margin-bottom: 6rem;
  top: auto;
}

.products-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin: 0 2rem;
  border-radius: 2rem;
}

.products-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  margin: 0 auto;
  margin: 0 2rem;
  border-radius: 2rem;
}

.side-category-list {
}

.side-category-list-parent {
    position: relative;
    flex-direction: column;
}

.side-category-list-parent span {
    display: block;
    /* margin: 2px auto auto calc(1.2rem + 2px); */
    padding: 0 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}

.side-category-sublist {
  list-style: none;
  width: 100%;
}

.side-category-sublist.hidden {
  display: none;
}

.side-category-sublist li {
    display: flex;
    align-items: center;
    justify-items: center;
    font-size: 0.8rem;
}

.side-category-list-item {
    display: flex;
    align-items: start;
    list-style: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    user-select: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    color: #555;
    font-weight: medium;
    border-radius: .5rem;
}

.side-manufacturer-list .side-category-list-item {
    align-items: center;
}

.side-category-list-item.side-category-list-parent {
    cursor: default;
}

.side-category-list-item.active:not(.side-category-list-parent)::before {
    width: 1rem;
    height: 1rem;
    border: 0;
    background-color: rgb(var(--blue));
    border: 2px solid #85a6c7;
}

.side-category-list-item:not(.side-category-list-parent):hover {
    background-color: rgba(var(--blue), 0.1);
}

.side-category-list-parent::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background-color: transparent;
    position: absolute;
    left: 0;
}

.side-category-list-item:not(.side-category-list-parent)::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    background-color: #ffffff;
    border: 2px solid #d7d7d7;
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0;
}

.side-category-list-item.active:not(.side-category-list-parent)::before {
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0;
}

.side-category-list-item.active:not(.side-category-list-parent)::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0.5rem;
    bottom: 0;
    left: 0.35rem;
    width: 5px;
    border-bottom: 3px solid #fff;
    height: 11px;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.side-category-list-item.sup {
  display: flex;
  align-items: center;
  font-size: 1rem;
  justify-content: space-between;
  font-weight: 500;
}
.side-category-list-item.sup.active::before,
.side-category-list-item.sup::before {
  top: .625rem;
}

.side-category-list-item.sup.active::after,
.side-category-list-item.sup::after {
  top: .625rem;
}


.side-category-list-item-expand {
  background-color: rgb(var(--blue));
  -webkit-mask-image: url("/assets/ico/arrow-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/ico/arrow-down.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: block;
  background-size: 24px 24px;
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  z-index: 2;
  padding: .5rem;
  transition: transform .2s ease-in-out;
}

.side-category-list-item-expand.expanded {
  transform: rotate(90deg);
  background-color: rgb(28, 28, 28);
}

.side-category-list-item-expand:hover {
  cursor: pointer;
}

.side-category-sublist
    .side-category-list-item:not(.side-category-list-parent)::before {
    border-radius: 50%;
}

.side-category-title {
    font-size: 0.95em;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto;
    padding: 0.8rem 1.2rem;
    color: #000;
}

.side-category-subtitle {
    font-size: 0.9em;
    font-weight: 600;
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    color: #f6f6f6;
    background: rgba(var(--blue), 1);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selected-sublist-item {
    display: flex;
    align-items: center;
    width: max-content;
    color: #f6f6f6;
    padding: .5rem;
    background: rgba(var(--blue), .7);
    border-radius: .5rem;
    gap: .5rem;
    cursor: pointer;
    user-select: none;
    height: min-content;
}

.selected-sublist-item:hover {
    background: rgba(var(--blue), .9);
}

.selected-sublist-item::before {
    content: " ";
    background-color: white;
    -webkit-mask-image: url("/assets/ico/close-button.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("/assets/ico/close-button.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    display: block;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
}

.selected-filter-list {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: .5rem;
}

.selected-filter-manufacturers {
    display: flex;
    flex-wrap: wrap;
    gap:.5rem;
}

.selected-filter-products {
  display: flex;
  gap: 0 .5rem;
  margin-top: 1rem;
  padding-left: var(--side-category-container-width);
}

.breadcrumb-area {
    display: flex;
    background: rgb(var(--blue));
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    padding: .5rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.breadcrumb-link:first-of-type {
    margin: 0 0 0 1rem;
}

.breadcrumb-link::before {
    content: " ";
    background: #ffffff;
    -webkit-mask-image: var(--data-img);
    mask-image: var(--data-img);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    display: block;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    margin-right: .25rem;
}

.breadcrumb-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .25rem 0 .25rem;
    border-radius: .5rem;
}

.breadcrumb-link:hover {
    background: rgba(0, 0, 0, .1);
}

.breadcrumb-link::after {
    content: "/";
    font-size: 1.3rem;
    font-weight: 200;
    padding: .25rem;
}

.single-product-display-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    min-height: 100vh;
}

.single-product-display {
    display: flex;
    margin: auto;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    padding: 4rem 2rem;
    padding-bottom: 8rem;
}

.single-product-display-download {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgb(var(--green));
  color: #fff;
  padding: .5rem 1rem;
  width: max-content;
  margin: 0 0 1rem auto;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.single-product-display-download:hover {
  background: #000;
}

.single-product-display-download-menu-container-message {
  display: none;
  padding: .5rem 1rem;
  font-size: .9rem;
  color: red;
}

.single-product-details {
    display: flex;
    flex-direction: column;
    color: #000000;
    padding: 1rem;
    margin-left: 1rem;
    min-width: 400px;
    flex: 1;
}

.single-product-display-name {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    word-wrap: break-word;
}

.single-product-display-price {
    font-size: 25px;
}

.single-product-display-description {
    padding: 1rem 0;
    font-size: 1rem;
    word-wrap: break-word;
}

.single-product-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 96px));
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
}

.single-product-image-display-container {
  flex: 1;
}

.single-product-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2rem;
}
.single-product-list-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
}
.single-product-list-item svg {
  color: rgb(var(--blue));
}
.single-product-technical-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
}
.single-product-technical-details-model-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: .5rem;
  background: rgb(var(--blue));
  color: #fff;
  padding: .5rem;
  border-radius: .5rem;
}
.single-product-technical-details-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 0 .5rem;
  gap: .5rem;
}
.single-product-technical-details-table-head {
  display: flex;
  padding: .5rem;
  border: 1px solid rgba(var(--blue));
  background: rgba(var(--blue));
  color: #fff;
  font-size: 1.1rem;
  min-width: 200px;
}
.single-product-technical-details-table-item {
  display: flex;
  padding: .5rem;
  border: 1px solid rgba(var(--blue));
  height: 100%;
  width: 100%;
  align-items: center;
}
.single-product-technical-details-table-cell {
  display: flex;
  background: #fff;
}

.single-product-display-download-menu {
  display: none;
  background: rgba(var(--dark), .2);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 99;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.single-product-display-download-menu-close {
  align-self: flex-end;
  margin-bottom: 1rem;
  color: #333;
  cursor: pointer;
  transition: color .2s ease-in-out;
}
.single-product-display-download-menu-close:hover {
  color: red;
}
.single-product-display-download-menu.active {
  display: flex;
}
.single-product-display-download-menu-container {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem;
  box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.03);
  border: 3px solid rgb(var(--blue));
}
.single-product-display-download-menu-container-title {
  font-size: 1.1rem;
  font-weight: bold;
  background: rgb(var(--blue));
  color: #fff;
  padding: .5rem;
  width: 100%;
  border-radius: .25rem .25rem 0 0;
}
.single-product-display-download-menu-container-input {
  height: max-content !important;
  font-size: 1.1rem !important;
  background: rgb(var(--light)) !important;
  color: #000 !important;
  border-radius: 0 0 .25rem .25rem !important;
  margin: 0 !important;
  border: 2px solid rgba(var(--blue), .5) !important;
  border-top: 0 !important;
  width: 100%;
}
.single-product-display-download-menu-container-submit {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgb(var(--green));
  color: #fff;
  padding: .5rem 1rem;
  width: max-content;
  margin: 1rem 0 0 auto;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .2s ease-in-out;
}
.single-product-display-download-menu-container-submit[disabled]:not(.fail),
.single-product-display-download-menu-container-submit:disabled:not(.fail) {
  background: rgb(var(--dark));
}
.single-product-display-download-menu-container-submit[disabled]:not(.fail):hover,
.single-product-display-download-menu-container-submit:disabled:not(.fail):hover {
  background: rgb(var(--dark));
}
.single-product-display-download-menu-container-submit.fail {
  background: rgb(var(--red));
}
.single-product-display-download-menu-container-submit.fail:hover {
  background: rgb(var(--red));
}
.single-product-display-download-menu-container-submit:hover {
  background: #000;
}

@media screen and (max-width: 480px) {
  .single-product-technical-details-table-head {
    min-width: auto;
  }
  .single-product-technical-details-table-cell {
    flex-direction: column;
  }
  .single-product-details {
    padding: 0;
  }
  .single-product-display-name {
    word-break: break-all;
  }
}

.side-manufacturer-list li,
.side-product_type-list li {
    display: none;
}

.side-manufacturer-list.active li,
.side-product_type-list.active li {
    display: flex;
}

.single-product-image-display {
    padding: 1rem;
    height: 600px;
    margin: 0 auto;
    max-width: 800px;
}

.upload_description {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0.4rem;
    color: rgb(207, 198, 197);
}

.image-loading-list {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.image-loading-list-item {
    list-style: none;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    animation: grow 1.6s ease-in-out infinite;
    margin: auto;
}

.image-loading-list .image-loading-list-item:nth-child(1) {
    animation-delay: -1.4s;
    background: rgb(var(--blue));
}
.image-loading-list .image-loading-list-item:nth-child(2) {
    animation-delay: -1.2s;
    background: rgb(var(--blue));
}
.image-loading-list .image-loading-list-item:nth-child(3) {
    animation-delay: -1s;
    background: rgb(var(--blue));
}

.product-page-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-page-number {
    display: flex;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #85a6c7;
    padding: 0.5rem 1rem;
    cursor: pointer;
    user-select: none;
    border-radius: 1rem;
    font-weight: bold;
}

.product-page-number.active {
    background: rgb(var(--blue));
    color: #ffffff;
}


/* .contact-area { */
/*     padding: 4rem; */
/* } */
/**/
/* .contact-blobs { */
/*     display: flex; */
/*     justify-content: center; */
/*     gap: 1rem; */
/*     padding: 1rem; */
/* } */
/**/
/* .contact-blob-item { */
/*     display: flex; */
/*     align-items: center; */
/*     padding: .5rem 1rem; */
/*     border-radius: .5rem; */
/*     background-color: #fff; */
/*     font-weight: 800; */
/*     font-size: .9rem; */
/*     gap: .5rem; */
/* } */
/**/
/* .contact-blob-item::before { */
/*     content: " "; */
/*     background-color: #000000; */
/*     -webkit-mask-image: var(--data-img); */
/*     -webkit-mask-repeat: no-repeat; */
/*     -webkit-mask-position: center; */
/*     -webkit-mask-size: contain; */
/*     mask-image: var(--data-img); */
/*     mask-repeat: no-repeat; */
/*     mask-position: center; */
/*     mask-size: contain; */
/*     display: block; */
/*     background-size: 22px 22px; */
/*     width: 22px; */
/*     height: 22px; */
/* } */
/**/
/* .contact-infos { */
/*     display: flex; */
/*     flex-direction: column; */
/*     gap: 1rem; */
/*     width: 75%; */
/*     margin: 0 auto; */
/* } */
/**/
/* .contact-info { */
/*     display: flex; */
/*     gap: 1rem; */
/*     background-color: #fff; */
/* } */
/**/
/* .contact-info-title { */
/*     display: flex; */
/*     align-items: center; */
/*     justify-content: center; */
/*     background: rgb(var(--blue)); */
/*     color: #ffffff; */
/*     padding: 1.5rem; */
/*     font-size: 1.1rem; */
/*     font-weight: 900; */
/* } */
/**/
/* .contact-info:not(:first-child) .contact-info-title { */
/*     width: 400px; */
/* } */
/**/
/* .contact-info-content { */
/*     display: flex; */
/*     align-items: center; */
/*     justify-content: center; */
/*     font-size: 1rem; */
/*     font-weight: 900; */
/*     gap: 1rem; */
/* } */
/**/
/* .contact-info-content-item { */
/*     display: flex; */
/*     align-items: center; */
/*     gap: .5rem; */
/*     min-width: 180px; */
/* } */
/**/
/* .contact-info-content-item:first-child { */
/*     text-decoration: underline; */
/* } */
/**/
/* .contact-info-content-item::before { */
/*     content: " "; */
/*     background-color: #000000; */
/*     -webkit-mask-image: var(--data-img); */
/*     -webkit-mask-repeat: no-repeat; */
/*     -webkit-mask-position: center; */
/*     -webkit-mask-size: contain; */
/*     mask-image: var(--data-img); */
/*     mask-repeat: no-repeat; */
/*     mask-position: center; */
/*     mask-size: contain; */
/*     display: block; */
/*     background-size: 22px 22px; */
/*     width: 22px; */
/*     height: 22px; */
/* } */
/**/
/* .contact-address { */
/*     display: flex; */
/*     flex-direction: column; */
/*     justify-content: center; */
/*     align-items: center; */
/*     background: rgb(var(--blue)); */
/*     color: #ffffff; */
/*     padding: 1rem; */
/*     font-size: 1.1rem; */
/*     margin: 1rem auto auto auto; */
/*     font-weight: 800; */
/*     width: 75%; */
/* } */

/* @media screen and (max-width: 850px) { */
/*     .contact-info { */
/*         flex-direction: column; */
/*     } */
/*     .contact-info:not(:first-child) .contact-info-title { */
/*         width: 100%; */
/*     } */
/*     .contact-info-content { */
/*         flex-direction: column; */
/*     } */
/*     .contact-info { */
/*         overflow-x: hidden; */
/*         gap: 0; */
/*     } */
/*     .contact-infos { */
/*         padding: 0; */
/*         gap: 0; */
/*         width: 100%; */
/*         margin: 0; */
/*     } */
/*     .contact-info-content { */
/*         padding: 1rem 0; */
/*         min-width: min-content; */
/*     } */
/*     .contact-blobs { */
/*         flex-direction: column; */
/*     } */
/*     .contact-blob-item { */
/*         overflow-x: hidden; */
/*     } */
/*     .contact-area { */
/*         padding: 1rem 0 0 0; */
/*     } */
/*     #map { */
/*         width: 100%; */
/*     } */
/*     .contact-address { */
/*         margin: 0; */
/*         width: 100%; */
/*     } */
/*     .contact-address-1 { */
/*         text-align: center; */
/*     } */
/* } */

@media screen and (max-width: 580px) {
    .__main {
        margin: 0;
    }
    .breadcrumb-area {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .nav-links {
        display: none;
    }
    .logo {
        flex: 1;
        text-align: center;
    }
    .logo::after {
        content: "";
    }
    .side-category-container {
      position: static; 
      min-height: 100%;
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      margin: 0;
      border: none;
      z-index: 1;
    }
    .products-area {
      margin-left: 0;
      margin-right: 0;
    }
    .side-category-sublist {
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      grid-auto-flow: column;
      align-items: center;
      overflow-x: auto;
    }
    .side-category-sublist .side-category-list-item::before {
      align-self: center;
    }
    .side-category-sublist .side-category-list-item::after {
      align-self: center;
      top: 0.25rem !important;
    }
    .side-category-sublist .side-category-list-item {
      align-items: center;
      height: 100%;
    }
    .selected-filter-products {
      padding-left: 1rem;
    }
    #product-content {
      padding-top: 1rem;
      padding-left: 1rem;
    }
    .filtered-product-header {
        flex-direction: column;
        justify-content: center;
    }
    .reset-filter-btn {
        margin: 0;
    }
    .products-area {
        flex-direction: column;
    }
    .nav__support {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1480px) {
    .single-product-display {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .single-product-image-display > img {
        object-fit: cover;
    }
    .single-product-details {
        min-width: min-content;
    }
}

@media screen and (max-width: 960px) {}


@keyframes grow {
    0%,
    40%,
    100% {
        transform: scale(0.2);
    }
    20% {
        transform: scale(1);
    }
}

@keyframes grow2 {
    0% {
        transform: scale(1);
    }
    40%,
    60% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
  0% { background-position: -100px 0; }
  100% { background-position: 100px 0; }

