body {
  overflow-x: hidden;
  font-weight: 400;
  font-family: "gotham", sans-serif;
}

strong {
  font-weight: 600 !important;
}


:root {
  --thor-green: #255200;
  --thor-red: #ac1416;
  --thor-grey: #A5A5A5;
  --bs-form-valid-color: #000;
  --bs-form-valid-border-color: #000;
  --bs-form-invalid-color: #fff;
  --bs-form-invalid-border-color: #fff;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23fff'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fff' stroke='none'/%3e%3c/svg%3e");
}

.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23000' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
}

a {
  text-decoration: none;
}


.btn-thor {
  background-color: var(--thor-red);
  color: #fff;
  border: solid 1px var(--thor-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  width: fit-content;
  text-decoration: none;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}

.btn-thor:hover,
.btn-thor:focus {
  background: transparent;
  border: solid 1px var(--thor-red);
  color: var(--thor-red);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.rapid-contacts {
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 2;
}

.rapid-contacts a .box {
  background-color: var(--thor-green);
  clip-path: none;
  padding: 1rem;
  border: solid 1px #fff;
  border-right: none;
}

.rapid-contacts i {
  font-size: 1.4rem;
  color: #fff;
}

.rapid-contacts a:hover .box {
  background-color: #ac1416;
}

/* navbar */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  transition: all 0.5s ease-in-out;
}

.navbar .navigatormenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  background-color: var(--thor-red);
  z-index: 5;
}

.navbar .navigatormenu.open {
  background-color: var(--thor-red);
  position: absolute;
  top: 0;
  z-index: 100;
}

.menu-items .third_section .brevetti_item {
  font-weight: 500;
}

.menu-items .third_section .brevetti_item i {
  color: #000;
}

.menu_right {
  width: 35%;
}

.navbar-brand {
  background-color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  transform: skew(-20deg);
}

.logo-thor {
  width: 200px;
  height: auto;
  max-width: 100%;
  transform: skew(20deg);
  transition: all 0.5s ease-in-out;
  /* correzione */
}

.navbar .navigatormenu.open .logo-thor {
  width: 135px;
}

.navbar .navigatormenu.smaller.open .logo-thor {
  width: 100px;
}

.navigatormenu.smaller {
  height: 60px;
}

.navigatormenu.smaller .logo-thor {
  width: 125px;
}

.nav-lang .nav-link {
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  padding: 0;
}

.nav-lang .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-lang .nav-link:hover {
  transition: color 0.3s ease-in-out;
  color: #000;
}

.nav-lang .nav-link:hover::after {
  transform: scaleX(1);
  background-color: #000;
}

.nav-lang .nav-link.active {
  color: #000;
  font-weight: 600;
}


.navbar a i {
  color: #fff;
}

.navbar a:hover i {
  color: #000;
  transition: color .2s ease-in-out;
}

.hamburger_menu {
  width: 34px;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0.5rem 0;
  transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out, background-color .2s ease-in-out;
}

.hamburger_menu:focus {
  box-shadow: none;
}

.hamburger_menu:hover .hamburger-line,
.hamburger_menu:focus .hamburger-line {
  background-color: #fff;
}

.hamburger_menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
}

.hamburger_menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger_menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .menu-items {
  display: flex;
  overflow-y: scroll;
  height: 0;
  width: 100%;
  transform: translate(150%);
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
  position: relative;
  z-index: 4;
}

.navbar .menu-items .third_section {
  height: calc(100% - var(--prima-height, 0px));
}

.navbar .menu-items .title {
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--thor-grey);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.navbar .menu-items .subtitle {
  color: var(--thor-red);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.navbar .menu-items .category {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--thor-green);
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.navbar .menu-items li {
  line-height: 1;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 400;
}

.navbar .menu-items a {
  text-decoration: none;
  color: #000;
}

.navbar .menu-items a:hover {
  font-weight: 600;
}

.navbar .menu-items span {
  font-size: 0.8rem;
  color: var(--thor-green);
  font-weight: 600;
}



/* video section */
#sec_video {
  position: relative;
  overflow: hidden;
  height: 750px;
  margin-top: 100px;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
}


/* claim section */

.title-band {
  width: 100%;
  background-color: var(--thor-red);
  text-align: center;
}

.title-band .band-text {
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09rem
}


/* product section */

/* Card slide */
.products-slider .swiper-slide a {
  padding-bottom: 0.75rem;
}

.products-slider img {
  max-height: 260px;
  /* evita immagini troppo alte */
  object-fit: contain;
}

.scheda .products-slider img,
.brevetto-page .products-slider img {
  max-height: 100%;
  /* evita immagini troppo alte */
  object-fit: contain;
}

/* Titoli prodotti */

.products-slider .swiper {
  padding: 0 2rem;
}

.scheda .products-slider .swiper {
  padding: 0 0;
}


.product-title {
  font-weight: 900;
  font-style: italic;
  color: var(--thor-red);
  font-size: 1.2rem;
  letter-spacing: .02em;
  margin-bottom: .15rem;
  line-height: 1.1;
}

.product-sub {
  color: #000;
  font-size: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 1;
}

.products-slider .swiper-button-prev {
  background-color: var(--thor-red);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: none;
  opacity: 1;
  height: 50px;
  left: 0;
  margin-left: 0;
}

.products-slider .swiper-button-next {
  background-color: var(--thor-red);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border: none;
  opacity: 1;
  right: 0;
  margin-right: 0;
  height: 50px;
}

.products-slider .swiper-navigation-icon {
  width: 25px !important;
  aspect-ratio: 1/1;
  height: auto !important;
  color: #fff;
}

.products-slider .swiper-button-prev:hover,
.products-slider .swiper-button-next:hover {
  opacity: 80%;
}

.btn-all-products {
  background-color: var(--thor-red);
  color: #fff;
  border: solid 1px var(--thor-red);
  font-weight: 900;
  font-style: italic;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 0;
  width: 470px;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.3rem;
  line-height: 1;
}

.btn-all-products:hover {
  background-color: #fff;
  border: solid 1px var(--thor-red);
  color: var(--thor-red);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}



/* sezione brevetti */

.brevetti {
  background: var(--thor-red);
}

.brevetti-title {
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

.box {
  background: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.box img {
  width: 155px;
}

.box img.vertical {
  width: 85px;
}

.box-title {
  font-weight: 700;
  color: #000;
  font-size: 1.35rem;
  margin-bottom: 0;
  line-height: 1.1;
}

.box-text {
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: 0.95rem;
}

/* sezione storia ricca */
.history .title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--thor-red);
}

.history .text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}


/* punti di forza */

.puntiforza {
  background-color: var(--thor-green);
}

.puntiforza-icon img {
  width: 90px;
}

.puntiforza-card {
  display: flex;
  flex-direction: column;
}

.puntiforza-title {
  font-weight: 600;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  line-height: 1.2;
}

.puntiforza-text {
  color: #fff;
  line-height: 1.3;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}


/* contatti */
.contatti {
  background: var(--thor-red);
}

/* Titolo */
.contatti-title {
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

/* Input e textarea */
.contatti-input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 0;
  padding: .75rem 1rem;
}

.contatti-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: .9rem;
}

.contatti-input:focus {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.contatti .btn-thor {
  background-color: #fff;
  border: solid 1px var(--thor-red);
  color: var(--thor-red);
  font-size: 1rem;
  padding: 0.7rem 2rem;
}

.contatti .btn-thor:hover {
  background-color: var(--thor-red);
  color: #fff;
  border: solid 1px #fff;
}

.contatti .callout p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
}


.contact-feedback {
  margin-bottom: 2rem;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
}

.contact-feedback.success {
  background-color: #e6f4ea;
  /* verde chiaro */
  border: 2px solid var(--thor-green);
  color: var(--thor-green);
}

.contact-feedback.error {
  background-color: #fdecea;
  /* rosso/rosa chiaro */
  border: 2px solid var(--thor-red);
  color: var(--thor-red);
}

.contact-feedback strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

/* --- invariati --- */
.video-slider-section {
  background: var(--thor-grey);
}

.video-title {
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

/* Video responsive 16:9 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* altri video section */
.video-swiper {
  width: 100%;
  overflow: hidden;
  padding: 0 2.2rem;
}


.video-slider-section .swiper-button-prev::after,
.video-slider-section .swiper-button-next::after {
  font-size: var(--swiper-navigation-size);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.video-slider-section .swiper-button-prev {
  background-color: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: none;
  opacity: 1;
  height: 50px;
  left: 0;
  margin-left: 0;
  position: absolute;
  top: 50%
}

.video-slider-section .swiper-button-next {
  background-color: #fff;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border: none;
  opacity: 1;
  right: 0;
  margin-right: 0;
  height: 50px;
}

.video-slider-section .swiper-navigation-icon {
  width: 25px !important;
  aspect-ratio: 1/1;
  height: auto !important;
  color: var(--thor-green);
}

.video-slider-section .swiper-button-prev:hover,
.video-slider-section .swiper-button-next:hover {
  opacity: 80%;
}





/* SCHEDA PRODOTTO */

.scheda,
.categoria,
.brevetto-page,
.cataloghi-page {
  margin-top: 145px;
}

.scheda .title-large {
  font-size: 4rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.scheda .title-small {
  font-size: 2rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.scheda .intro .subtitle {
  background-color: var(--thor-grey);
  padding: 0.3rem 4rem 0.3rem 1.5rem;
  width: fit-content;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.scheda .intro .subtitle h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
  line-height: 1.1;
  font-weight: 600;
  font-size: 1.4rem;
}

.scheda .intro .subtitle.rivenditori {
  background-color: var(--thor-red);
  padding: 0.3rem 4rem 0.3rem 1.5rem;
  width: fit-content;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.scheda .intro .subtitle.rivenditori h4 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
  line-height: 1.1;
  font-weight: 600;
  font-size: 1.4rem;
}

.scheda .intro .heading {
  color: #000;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 900;
  font-style: italic;
}

.scheda .intro .text p {
  font-size: 1rem;
  line-height: 1.3;
}

.scheda .intro .text h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--thor-red);
}

.scheda .intro .text ul li::marker {
  color: var(--thor-red);
}

.scheda .intro .text ul li {
  font-size: 0.98rem;
}

.scheda .caratteristiche {
  background-color: var(--thor-green);
}

.scheda .caratteristiche .title {
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.scheda .caratteristiche ul {
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.scheda .caratteristiche ul li {
  padding: 0.4rem 0;
  color: #fff;
  line-height: 1.2;
  font-weight: 300;
}

.scheda .info-dots {
  border-bottom: solid 1px #ececec;
}

.info-dots span {
  font-size: 0.85rem;
}

.scheda .info-dots .brevetto {
  background-color: var(--thor-red);
  padding: 1.5rem 3rem 1.5rem 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  height: 100%;
  color: #fff !important;
}

.scheda .info-dots a:hover .brevetto .btn-brevetto {
  text-decoration: underline;
}

.brevetto-disabled {
  cursor: default;
}

.brevetto-disabled .brevetto {
  opacity: 0.85;
}

.scheda .info-dots .brevetto img {
  width: 160px;
}

.scheda .info-dots .brevetto img.stopandgo {
  width: auto;
  height: 170px;
  margin-bottom: 0.5rem;
}

.scheda .info-dots .brevetto .text {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02rem;
  margin-bottom: 0.5rem;
}

.scheda .info-dots .brevetto a {
  color: #fff;
  font-size: 0.85rem;
}

.scheda .info-dots .brevetto a:hover {
  text-decoration: underline;
}

.scheda .info-dots ul li {
  border-bottom: solid 1px #d0d0d0;
  padding: 0.3rem 0.5rem;
}

.scheda .info-dots ul li .number {
  color: var(--thor-red);
  font-weight: 600;
  margin-right: 1rem;
  font-size: 1.1rem;
}

/* elementi prodotto in evidenza */
.scheda .prodotto-evidence {
  background-color: var(--thor-grey);
}

.scheda .prodotto-evidence .title {
  color: #fff;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.scheda .prodotto-evidence .subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: #fff;
}

.scheda .prodotto-evidence img {
  width: 75px;
  margin-bottom: 0.3rem;
}

.scheda .prodotto-evidence img.katana {
  width: 90px;
}

.scheda .thumbs {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  vertical-align: top;
  width: 100%;
  margin-top: 1rem;

}

.scheda .thumbs {
  gap: 1rem;
}

.scheda .thumbs img {
  display: block;
  max-width: 120px;
  cursor: pointer;
}

.scheda .visible {
  color: #000;
  font-weight: 800;
}

.scheda .altri .titoletti {
  font-size: 1.1rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--thor-red);
}

.scheda .altri span {
  font-size: 0.9rem;
}



/* sezione tabella */

.scheda .table-sec {
  border-bottom: solid 1px var(--thor-red)
}

.scheda .table-sec table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.scheda .table-sec th,
.scheda .table-sec td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.1;
}

.scheda .table-sec th {
  background: #ececec;
  font-weight: bold;
}

.scheda .table-sec td:first-child,
.scheda .table-sec th:first-child {
  text-align: left;
  font-weight: bold;
  background: #ececec;
  width: 25%;
}

.scheda .table-sec .title {
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--thor-red);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.scheda .table-sec table img {
  width: 115px;
}

.scheda .table-sec table img.vertical {
  width: auto;
  height: 115px;
}

.scheda .asterisco {
  font-size: 1.2rem !important;
}

.scheda .no-style {
  box-shadow: none !important;
}

.scheda .no-style td {
  border: none;
  border-right: 1px solid #ccc;
  /* bordo verticale interno */
  border-bottom: 1px solid #ccc;
  /* bordo orizzontale interno */

}

.scheda .no-style:first-child td {
  background-color: transparent;
  font-weight: 400;
}

.scheda .no-style tr:last-child td {
  border-bottom: none;
}

.scheda .no-style td:last-child {
  border-right: none;
}


/* CATEGORIA */

.categoria .intro .title,
.storia-sec .title {
  font-size: 2.5rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
}

.categoria .intro .subtitle {
  color: var(--thor-red);
  font-weight: 600;
  font-size: 1.1rem;
}

.categoria .intro .text {
  font-size: 1rem;
  line-height: 1.3;
}

.categoria .element {
  display: flex;
  flex-direction: column;
  background-color: #ececec;
}

.categoria .element .body {
  padding: 1.5rem;
  padding-top: 0;
}

.categoria .title-large {
  font-size: 1.8rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.categoria .title-small {
  font-size: 1.3rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.categoria .element .text {
  color: #000;
  font-size: 0.9rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.spezzaparola {
  hyphens: auto;
  -webkit-hyphens: auto;
  /* Safari */
  -ms-hyphens: auto;
  /* vecchio Edge */
}

/* TUTTI I PRODOTTI */

.tutti-prodotti .category {
  background-color: var(--thor-green);
  padding: 0.3rem 4rem 0.3rem 1.5rem;
  width: fit-content;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.tutti-prodotti .category .categoryTitle {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.6rem;
}

.tutti-prodotti .title-large {
  font-size: 1.6rem;
}

.tutti-prodotti .title-small {
  font-size: 1.2rem;
}

.tutti-prodotti .element .text {
  font-size: 0.85rem;
}

/* CHI SIAMO */

/* storia */
.storia-sec {
  margin-top: 145px;
}

.storia-sec .text {
  font-size: 1rem;
  line-height: 1.3;
}

/* storia timeline */

.main-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main-timeline:before {
  content: "";
  width: 2px;
  height: 100%;
  border-radius: 20px;
  margin: 0 auto;
  background: var(--thor-red);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.main-timeline .timeline {
  display: inline-block;
  margin-bottom: 120px;
  position: relative;
  min-height: 100px;
}

.main-timeline .timeline:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 6px solid var(--thor-red);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.main-timeline .timeline-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid var(--thor-red);
  padding: 7px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 29%;
  transform: translate(-29%, -50%);
}

.main-timeline .timeline-icon img {
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.main-timeline .timeline-icon:after,
.main-timeline .timeline-icon:before {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--thor-red);
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}

.main-timeline .timeline-icon:after {
  width: 70px;
  height: 140px;
  background: #fff;
  top: 194px;
  right: -7px;
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 0 50px;
  margin: 0;
  float: right;
  position: relative;
  left: auto;
  right: -9px;
  transform: translateX(9%);
}

.main-timeline .timeline-content.with-btn:after {
  content: "";
  width: 70px;
  height: 2px;
  background: var(--thor-red);
  position: absolute;
  top: 50%;
  left: -60px;
}

.main-timeline .timeline-content:after {
  content: "";
  width: 70px;
  height: 2px;
  background: var(--thor-red);
  position: absolute;
  top: 50%;
  left: -60px;
}

.main-timeline .title {
  font-size: 1.3rem;
  color: var(--thor-red);
  background: #fff;
  text-transform: uppercase;
  text-align: start;
  margin-bottom: 0;
  width: fit-content;
  padding: 0.4rem 0;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.05rem;
}

.main-timeline .subtitle {
  color: var(--thor-red);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.main-timeline .description {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  width: 100%;
  text-align: start;
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
  left: auto;
  right: 19%;
  top: 50%;
  transform: translate(-19%, -50%);
}

.main-timeline .timeline:nth-child(even) .timeline-icon:before {
  right: auto;
  left: -100px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon:after {
  right: auto;
  left: -30px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  float: left;
  left: -10%;
  transform: translateX(10%);
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  left: auto;
  right: 35px;
  transform: rotateY(180deg);
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
  left: auto;
  right: -8%;
  transform: translateX(8%);
  top: 50%;
}

/* CONTATTI */

.contatti-page {
  margin-top: 145px;
}

.contatti-page .title {
  font-size: 2rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
}

.contatti-page li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.contatti-page li a {
  color: #000;
  text-decoration: underline;
}

.contatti-page li a:hover {
  color: var(--thor-red);
}

footer p {
  font-size: 0.95rem;
}

footer p a {
  color: var(--thor-red);
}

footer p a:hover {
  text-decoration: underline;
}

.footer-doc-link {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background-color: #fff;
  color: #5f5f5f;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.footer-doc-link:hover,
.footer-doc-link:focus {
  background-color: #f7f7f7;
  border-color: #bcbcbc;
  color: #444;
  text-decoration: none;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-logos img {
  width: 75px;
  max-width: 100%;
  height: auto;
  display: block;
}


/* BREVETTO - DETAIL */

.brevetto-page .title {
  font-size: 2.5rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.brevetto-page .element {
  display: flex;
  flex-direction: column;
  background-color: #ececec;
}

.brevetto-page .title-large {
  font-size: 1.8rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.brevetto-page .title-small {
  font-size: 1.3rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

.brevetto-page .element .body {
  padding: 1.5rem;
  padding-top: 0;
}

.brevetto-page .element .text {
  color: #000;
  font-size: 0.9rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.brevetto-page .subtitle {
  font-size: 1.1rem;
  color: #000;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05rem;
  font-weight: 900;
}

.brevetto-page .chapter {
  font-weight: 600;
  color: var(--thor-red);
}


/* pagina cataloghi */

.cataloghi-page .title {
  font-size: 2.5rem;
  color: var(--thor-red);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
}

.cataloghi-page .card {
  border: none;
  padding: 0.5rem;
}

.cataloghi-page .card-body {
  padding: 1.5rem;
  background-color: #ececec;
}

.cataloghi-page .card-title {
  font-size: 1.2rem;
  color: #000;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02rem;
  margin-bottom: 0;
}


/* responsive */

@media (max-width: 1399.98px) {
  .main-timeline .timeline-content {
    right: -4%;
    margin-top: 3px;
    transform: translateX(4%);
  }

  .main-timeline .timeline-icon {
    left: 23%;
    transform: translate(-22%, -50%);
  }

  .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 15%;
    top: 50%;
    transform: translate(-15%, -50%);
  }

  .main-timeline .timeline:nth-child(even) .timeline-content {
    float: left;
    left: -11%;
    transform: translateX(11%);
  }
}

@media (max-width: 1199.98px) {
  .main-timeline .timeline-content:after {
    left: -47px;
  }

  .main-timeline .timeline:nth-child(even) .timeline-icon {
    right: 10%;
    transform: translate(-10%, -50%);
  }

  .main-timeline .timeline-content.with-btn:after {
    left: -47px;
  }

  .main-timeline .timeline-icon {
    left: 17%;
    transform: translate(-17%, -50%);
  }
}



@media (max-width: 991.98px) {
  .logo-thor {
    width: 200px;
  }

  .video-swiper-wrap {
    padding: 0 1.25rem;
  }

  .video-slider-section .swiper-button-prev::after,
  .video-slider-section .swiper-button-next::after {
    font-size: 36px;
  }

  .products-slider .swiper-button-prev,
  .products-slider .swiper-button-next {
    font-size: 28px;
  }

  .cert-title {
    font-size: 1.75rem;
  }

  .sector-title {
    font-size: 1.35rem;
  }

  .menu_right {
    width: 50%;
  }

  .navbar .menu-items {
    display: none;
    transform: translateX(0);
  }

  .open .logo img {
    width: 260px;
  }

  .navbar .nav-container a {
    color: #0E1F40;
    font-weight: 300;
    font-size: 0.9rem;
  }

  .navbar .accordion-button {
    padding: 0.5rem;
    border-radius: 0 !important;
    box-shadow: none;
    color: var(--thor-red);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 600;
    border-bottom: 1px solid var(--thor-grey);
  }

  .navbar .accordion-button:not(.collapsed) {
    box-shadow: none;
  }

  .accordion {
    --bs-border-color: none;
    --bs-border-width: none;
    --bs-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-primary-bg-subtle: transparent;
    --bs-accordion-active-color: #000;
  }

  .scheda,
  .categoria,
  .brevetto-page,
  .cataloghi-page {
    margin-top: 180px;
  }

  .main-timeline .timeline-icon:after,
  .main-timeline .timeline:nth-child(even) .timeline-icon:after {
    width: 70px;
    height: 120px;
    top: 149px;
    right: -30px;
    left: auto;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: -5%;
    transform: translate(5%, -50%);
    width: 180px;
    height: 180px;
  }

  .main-timeline .timeline-content.with-btn:after {
    left: -63px;
  }

  .main-timeline:before {
    right: 280px;
  }

  .main-timeline .timeline:before {
    top: 50%;
    left: 30%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    right: -1%;
    transform: translateX(2%);
    padding: 0 38px;
    margin-top: -3px;
    float: right;
    left: auto;
    width: 62%;
  }

  .main-timeline .timeline-content:after {
    width: 80px;
    left: -60px;
  }

  .main-timeline .timeline:nth-child(even) .timeline-content:after {
    width: 80px;
    left: -68px;
  }

  .main-timeline .timeline-icon:before,
  .main-timeline .timeline:nth-child(even) .timeline-icon:before {
    width: 63px;
    right: -63px;
    left: auto;
  }
}


@media (max-width: 767.98px) {

  .scheda,
  .categoria,
  .storia-sec,
  .contatti-page,
  .brevetto-page,
  .cataloghi-page {
    margin-top: 80px;
  }

  .navigatormenu .logo-thor {
    width: 80px;
  }

  .navbar .navigatormenu {
    height: 80px;
  }

  .navbar .navigatormenu.open .logo-thor {
    width: 80px;
  }

  .navigatormenu.smaller .logo-thor {
    width: 60px;
  }

  .navbar .navigatormenu.smaller {
    height: 60px;
  }

  .navbar .navigatormenu.smaller.open .logo-thor {
    width: 60px;
  }

  .navbar a i {
    color: #000;
  }

  .navbar-brand {
    background-color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 20px;
    transform: skew(-20deg);
  }

  .menu_right {
    width: auto;
  }

  .video-slider-section .swiper-button-prev::after,
  .video-slider-section .swiper-button-next::after {
    font-size: 28px;
  }

  #sec_video {
    height: 500px;
  }

  .products-slider .swiper-button-prev,
  .products-slider .swiper-button-next {
    font-size: 24px;
  }

  .cert-title {
    font-size: 1.5rem;
  }

  .cert-box {
    padding: 1.5rem;
  }

  .sector-title {
    font-size: 1.25rem;
  }

  #sec_video {
    margin-top: 80px;
  }

  .navbar .menu-items .title {
    font-size: 1.8rem;
  }

  .scheda .intro .subtitle h2 {
    font-size: 5vw;
    letter-spacing: 0;
  }

  .scheda .intro .subtitle {
    background-color: var(--thor-grey);
    padding: 0.5rem 2rem 0.5rem 1rem;
    width: fit-content;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }

  .scheda .intro .subtitle.rivenditori h4 {
    font-size: 5vw;
    letter-spacing: 0;
  }

  .scheda .intro .subtitle.rivenditori {
    background-color: var(--thor-red);
    padding: 0.5rem 2rem 0.5rem 1rem;
    width: fit-content;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  }

  .scheda .title-large {
    font-size: 16vw;
    margin-bottom: 1rem;
  }

  .scheda .title-small {
    font-size: 8vw;
    margin-bottom: 1rem;
  }

  .scheda .caratteristiche .title {
    font-size: 5.5vw;
  }

  .scheda .prodotto-evidence .subtitle {
    font-size: 4.7vw;
  }

  .scheda .prodotto-evidence .title {
    font-size: 4.5vw;
  }

  .contatti-title {
    font-size: 6.2vw;
  }

  .storia-sec .title {
    font-size: 9vw;
  }

  .categoria .intro .title {
    font-size: 7.6vw;
  }

  .contatti-page .title {
    font-size: 7vw;
    margin-bottom: 0;
  }

  .tutti-prodotti .category h2 {
    font-size: 5vw;
  }

  .tutti-prodotti .category {
    padding: 0.5rem 3rem 0.5rem 1rem;
  }

  .categoria .title-large,
  .brevetto-page .title-large {
    font-size: 10vw;
  }

  .categoria .title-small,
  .brevetto-page .title-small {
    font-size: 6vw;
  }

  .main-timeline:before {
    left: 0;
    right: auto;
  }

  .main-timeline .timeline-content.with-btn:after {
    top: 52%;
    left: 0px;
    width: 20px;
  }

  .main-timeline .timeline:before {
    top: 50%;
    left: -2%;
    z-index: 1;
    transform: translate(-1%, -50%);
  }

  .main-timeline .timeline-content:after,
  .main-timeline .timeline:nth-child(even) .timeline-content:after {
    width: 18px;
    left: 0px;
    top: 52%;
    position: fixed;
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    margin-top: -15px;
    width: 100%;
    padding: 0 30px;
    right: -1%;
    transform: translateX(1%);
  }

  .main-timeline .timeline-icon {
    display: none;
  }

  .storia-sec .text {
    font-size: 4.2vw;
  }

  .main-timeline .title {
    font-size: 5.5vw;
  }

  .main-timeline .subtitle {
    font-size: 6.5vw;
    letter-spacing: 0;
    font-weight: 400;
  }

  .main-timeline .description {
    font-size: 4.2vw;
  }

  .video-swiper {
    padding: 0;
  }

  .scheda .table-sec table img {
    max-width: 100px;
  }

  .scheda .table-sec table img.vertical {
    width: auto;
    max-height: 80px;
  }


  .scheda .info-dots .brevetto img.stopandgo {
    width: auto;
    max-height: 130px;
  }


}
