/* space-grotesk-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/space-grotesk-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/space-grotesk-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-grotesk-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/space-grotesk-v22-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.flash-message {
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    opacity: 0.95;
    transition: opacity 0.5s ease-in-out;
}
.flash-success {
    background-color: #28a745;
}
.flash-error {
    background-color: #dc3545;
}
.flash-info {
    background-color: #17a2b8;
}
.flash-warning {
    background-color: #ffc107;
}
:root {
    --tumi-dark-blue: #071D49;
    --tumi-bright-blue: #0762C8;
    --tumi-light-grey: #BFC6CD;
    --tumi-white: #FFFFFF;
    --tumi-text-dark: #071D49;
    --tumi-text-nav: #0762C8;
    --tumi-text-grey: #818F9E;
    --tumi-text-light: #FFFFFF;
    --tumi-mapa: #1b2646;
}
body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    color: var(--tumi-text-dark);
    background: var(--tumi-white);
    background-color: var(--tumi-white);
}
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}
@media(max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}
@media(max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}
@media(max-width: 992px) {
    .container {
        max-width: 720px;
    }
}
@media(max-width: 768px) {
    .container {
        max-width: 540px;
    }
}
@media(max-width: 576px) {
    .container {
        max-width: 100%;
    }
}
.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.d-lg-block{
    display: block;
}
.d-lg-inline-block{
    display: inline-block;
}
.d-lg-none{
    display: none;
}
a {
    text-decoration: none;
    color: inherit;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.btn {
    background-color: var(--tumi-bright-blue);
    color: var(--tumi-white);
    padding: 12px 24px;
    border-radius: 0px;
    font-size: 1.3rem;
    font-weight: 500;
    transition: background-color 0.3s;
    border: none;
}
.btn:hover {
    background-color: #003d73;
}
.btn-dark {
    background-color: var(--tumi-dark-blue);
}
.btn-dark:hover {
    background-color: #001122;
}
header {
    background-color: var(--tumi-white);
    padding: 32px 0;
    color: var(--tumi-text-nav);
}
.header-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 940px;
    flex: auto;
}
.header-right nav{
    flex: auto;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    width: 200px;
    height: auto;
}
nav ul {
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0 25px;
}
nav ul li a {
    font-weight: 500;
    color: var(--tumi-text-nav);
    font-size: 17px;
}
nav ul li.active a {
    font-weight: 900;
}
.lang-selector {
    position: relative;
    margin: 0 10px;
}
.lang-selector-trigger{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.chevron {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z' fill='%230762C8'/%3E%3C/svg%3E");
  height: 10px;
  width: 10px;
}
.lang-selected a {
    font-weight: 500;
    color: var(--tumi-text-nav);
    cursor: pointer;
}
.lang-option {
    margin-bottom: 10px;
}
.lang-option:last-child {
    margin-bottom: 0;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--tumi-dark-blue);
    margin: 5px 0;
}
.hero{
    background: linear-gradient(180deg, var(--tumi-dark-blue) 50%, var(--tumi-bright-blue) 50%);
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: flex;
    align-items: stretch;
    height: 760px;
}
.hero-text {
    width: 35%;
    color: var(--tumi-white);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: linear-gradient(180deg, var(--tumi-dark-blue) 50%, var(--tumi-bright-blue) 50%);
    z-index: 20;
}
.hero-text .content-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-text h1 {
    font-size: 60px;
    line-height: 60px;
    margin: 120px 0 0;
    font-weight: 700;
    max-width: 400px;
}
.hero-text p {
    font-size: 40px;
    margin: 0;
    max-width: 400px;
}
.scroll-down {
    font-size: 2rem;
    display: inline-block;
    margin-top: 0;
    color: var(--tumi-white);
}
.hero-image {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 10;
}
.our-business {
    padding: 80px 0 100px;
    background-color: var(--tumi-white);
}
.our-business .container {
    display: flex;
    align-items: center;
}
.business-image {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.business-image img {
    width: calc(100% - 80px);
    margin-right: 80px;
}
.business-text {
    width: 65%;
}
.business-text h2 {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin: 0;
}
.business-text p {
    font-size: 22px;
    line-height: 25px;
    margin: 40px 0;
    text-align: justify;
}
.about-description {
    padding: 80px 0 50px;
    background-color: var(--tumi-white);
}
.about-description .container {
    display: flex;
    align-items: center;
}
.about-description .image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-description .image img {
    max-width: 100%;
}
.about-description .text {
    width: 100%;
}
.about-description .content {
    display: flex;
    align-items: center;
    gap: 80px;
}
.about-description .content .text p{
    font-size: 22px;
    line-height: 25px;
    margin: 30px 0 50px;
}
.about-description .content .image{
    margin: 0;
}
.about-description .text h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin: 40px 0 0;
}
.leadership {
    background-color: var(--tumi-bright-blue);
    color: var(--tumi-white);
    padding: 0;
}
.leadership .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.leadership-text {
    flex: 1;
    padding: 56px 0;
}
.leadership-text h2 {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 34px;
}
.leadership-text h3 {
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 700;
    margin: 0 20px 38px 0;
}
.leadership-text h3 span {
    display: block;
    color: var(--tumi-text-dark);
}
.leadership-text p {
    font-size: 22px;
    line-height: 25px;
    margin: 0 20px 40px 0;
    max-width: 520px;
    text-align: justify;
}
.leadership-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.leadership-image img {
    max-width: 100%;
}
.certifications {
    background-color: var(--tumi-light-grey);
    padding: 80px 0;
    text-align: left;
}
.certifications.clients {
    background-color: var(--tumi-white);
    padding: 80px 0;
    text-align: left;
}
.certifications h2 {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin-bottom: 40px;
}
.cert-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
}
.cert-logo {
    width: 280px;
    height: auto;
}
.cert-logo img {
    opacity: 1;
    width: 100%;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
}
.certifreco{
    min-height: 360px;
    position: relative;
}
.slider{
    position: relative;
}
.slider-prev,
.slider-next{
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z' fill='%23071D49'/%3E%3C/svg%3E");
    border: none;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
}
.slider-prev{
    left: 0;
    transform: translateY(-50%) rotate(90deg);
}
.slider-next{
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
}
.certifreco-logos .certifreco-logos__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0px;
}
.certifreco-logo {
    width: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.certifreco-logo.certif {
    justify-content: flex-start;
}
.accesories {
    background-color: var(--tumi-light-grey);
    padding: 80px 0;
    text-align: left;
}
.accesory{
    margin: 20px;
}
.accesories h2{
    margin-bottom: 40px;
}
.accesories .certifreco-logo {
    justify-content: flex-start;
}
.accesories .certifreco-logo h3{
    text-align: center;
}
.certifreco-logo-link{
    margin-top: 20px;
}
.certifreco-logo-header{
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}
.certifreco-logo img {
    filter: grayscale(0);
    opacity: 1;
    width: 100%;
    height: fit-content;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 12px;
}
.accesories .certifreco-logo img {
    filter: grayscale(0%);
    background: var(--tumi-white);
    opacity: 1;
    width: 280px;
    height: 280px;
}
.certifreco-logo-text h3 {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    margin: 0 0 10px;
}
.certifreco-logo p {
    font-size: 17px;
    line-height: 1;
    text-align: center;
    margin: 0;
}
.accesories .certifreco-logo p {    
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    margin: 0;
}
.sost-images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.sost-image{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.sost-image img{
    width: auto;
    height: auto;
    max-height: 300px;
    margin: 20px;
} 
  
.environment {
    padding: 60px 0;
    background-color: var(--tumi-white);
}
.environment .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}
.environment-text {
    flex: 1;
}
.environment-text h2 {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin: 0 0 38px;
}
.environment-text p {
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 30px;
    text-align: justify;
}
.environment-stat {
    flex: 1;
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.environment-stat img {
    width: 100%;
    max-width: 520px;
}
.environment-stat p {
    font-size: 40px;
    margin: 0;
    color: var(--tumi-bright-blue);
    max-width: 450px;
}
.environment-stat p.percentage {
    font-size: 15rem;
    line-height: 11rem;
    font-weight: 700;
    color: var(--tumi-bright-blue);
    margin: 0;
    max-width: 100%;
}
.history {
    color: var(--tumi-white);
    background-color: var(--tumi-bright-blue);
    padding: 50px 0;
}
.history-title {
    color: var(--tumi-white);
}
.history h2 {
    font-size: 3.6rem;
    text-align: left;
    margin: 0;
    padding: 10px 0 20px;
    font-weight: 700;
}
.history h2 span{
    color: var(--tumi-dark-blue);
}
.history-body {
    position: relative;
    overflow: hidden;
}
.history-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
    margin: 0;
}
.history-image {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}
.history-image img {
    width: auto;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}
.history-text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--tumi-white);
    z-index: 20;
}
.history-text-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 510px;
    margin: 0;
    padding: 0;
}
.history-text p{
    margin: 0;
    font-size: 22px;
    line-height: 25px;
    text-align: justify;
}
.history-text a{
    margin: 35px 0 0;
}
footer {
    background-color: var(--tumi-dark-blue);
    color: var(--tumi-white);
    padding: 65px 0;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}
.footer-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-logo img {
    width: 162px;
    height: 52px;
    margin-bottom: 20px;
}
.footer-links ul{
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-col .footer-adresse {
    display: flex;
    gap: 10px;
    margin-right: 20px;
    color: var(--tumi-white);
    font-size: 18px;
}
.footer-col .footer-adresse ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}
.footer-col .footer-adresse ul li p{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--tumi-white);
    gap: 10px;
    margin-bottom: 10px;
}
.footer-col .footer-adresse ul li p span,
.footer-col .footer-adresse ul li p span a{
    font-weight: 500;
    color: var(--tumi-light-grey);
}
.footer-col .footer-adresse ul li p span:first-of-type{
    font-weight: 900;
    color: var(--tumi-white);
}
.footer-col{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 30px;
}
.footer-col h4 {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 500;
}
.footer-col ul {
    margin-bottom: 10px;
}
.footer-col ul li {
    margin-bottom: 30px;
}
.footer-adresse .footer-col ul li{
    margin-bottom: 28px;
}
.footer-adresse .footer-col ul li  {
    max-width: 45%;
}
.footer-col p {
    font-size: 1rem;
    line-height: 0.9rem;
    color: var(--tumi-light-grey);
    margin: 0;
}
.footer-col ul li a {
    font-size: 18px;
    font-weight: 900;
    color: var(--tumi-white);
}
.footer-col img {
    margin-top: 10px;
}
    
.footer-social {
    text-align: left;
    margin: 20px 0;
}
.footer-social a {
    margin-right: 10px;
}
.footer-copyright{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tumi-white);
    font-size: 1rem;
    line-height: 0.9rem;
    text-align: center;
}
.lang-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.lang-modal-overlay.active {
    display: flex;
}
.lang-modal {
    background-color: var(--tumi-white);
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.languages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.region, .language {
    cursor: pointer;
    padding: 15px;
    border-bottom: 1px solid var(--tumi-light-grey);
}
.region img{
    margin-right: 10px;
}
.region:hover, .language:hover {
    background-color: var(--tumi-light-grey);
}
.private-policy {
    background-image: url('/assets/images/logo-tumi-policy.png');
    background-repeat: no-repeat; 
    background-position: center;
    
    background-size: 460px;
    padding: 70px 0 120px;

}
.private-policy h1{
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
    margin-bottom: 20px;
    text-align: center;
}
.private-policy h2{
    font-size: 40px;
    line-height: 40px;
    color: var(--tumi-dark-blue);
    margin: 60px 0 20px;
}
.title-services {
    padding: 40px 0;
}
.title-services .container {
    display: flex;
    gap: 50px;
    padding: 0 20px;
}
.title-services h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
    margin-bottom: 20px;
}
.content-services{
    padding: 70px 0 60px;
    background-color: var(--tumi-light-grey);
}
.hero-services {
    padding: 70px 0 120px;
}
.hero-services .container {
    display: flex;
    gap: 50px;
    padding: 0 20px;
}
.hero-services h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
    margin-bottom: 20px;
}
.hero-services .text{
    width: 45%;
}.hero-services .accordion {
    width: 55%;
    padding: 10px 0 0;
    font-size: 22px;
    line-height: 25px;
}
.hero-services .text p{
    font-size: 26px;
    line-height: 29px;
    margin: 28px 0 18px;
    text-align: justify;
}
.hero-services .text img{
    width: 100%;
}
.hero-careers {
    padding: 70px 0 120px;
}
.hero-careers .container {
    display: flex;
    gap: 50px;
    padding: 0 20px;
}
.growth_story{
    background-color: var(--tumi-light-grey);
    padding: 70px 0 120px;
}
.careers-join {
    padding: 70px 0 120px;
}
.growth_story .content {
    display: flex;
    gap: 50px;
    padding: 0;
}
.growth_story .content .col{
    flex: 1;
}
.hero-careers h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
    margin-bottom: 20px;
}
.careers-join h2,
.growth_story h2 {
    font-size: 40px;
    line-height: 40px;
    color: var(--tumi-dark-blue);
    margin-bottom: 60px;
}
.careers-join h3{
    font-size: 30px;
    line-height: 30px;
    color: var(--tumi-dark-blue);
    margin: 40px 0 20px;
}
.growth_story h3 {
    font-size: 30px;
    line-height: 30px;
    color: var(--tumi-dark-blue);
    margin-bottom: 20px;
    height: 90px;
}
.accordion-item {
    border-bottom: 2px solid var(--tumi-light-grey);
    padding: 18px 10px 0;
}
.accordion-header {
    cursor: pointer;
    position: relative;
}
.accordion-header:after{
    position: absolute;
    top: 10px;
    right: 10px;
	border-style: solid;
	border-width: 0.15em 0.15em 0 0;
	content: '';
	display: inline-block;
	height: .75em;
	transform: rotate(135deg);
	vertical-align: top;
	width: .75em;
}
.active .accordion-header:after{
	transform: rotate(-45deg);
}
.accordion-item h3 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 400;
    margin: 0 0 20px;
    text-transform: capitalize;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content p{
    font-size: 22px;
    line-height: 25px;
    margin: 6px 0 18px;
    text-align: justify;
}
.accordion-item.active .accordion-content {
    max-height: 900px; /* Adjust based on content */
    padding: 0 0 38px;
}
.beyond-machine .container {
    display: flex;
    background-color: var(--tumi-dark-blue);
    color: var(--tumi-white);
}
.beyond-machine .text {
    flex: 1;
    padding: 60px;
}
.beyond-machine .image {
    flex: 1;
    background-color: var(--tumi-light-grey);
}
.product-header{
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
}
.product-header h1{
    font-size: 60px;
    line-height: 60px;
}
.product-detail {
    padding: 70px 0 90px;
}
.back-to-products {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--tumi-bright-blue);
    margin: 0 0 10px;
}
.service-content .back-to-products {
    margin: 0 0 30px;
}
.back-to-regions {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--tumi-bright-blue);
    margin: 0;
    background: none;
    border: none;
}
.back-to-regions svg{
    width: 20px;
}
.product-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.product-info{
    width: 40%;
    font-size: 22px;
    line-height: 25px;
    text-align: justify;
}
.product-specs{
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    line-height: 25px;
}
.product-specs span{
    width: 50%;
    text-align: center;
    padding: 15px 0;
}
.product-detail .spec-item .value{
    font-weight: 900;
    border-left: 1px solid var(--tumi-light-grey);
}
.product-image {
    width: 60%;
    position: relative;
    overflow: hidden;
}
.product-image img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.image-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slider-track {
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: center;
}
.slide {
    flex: 0 0 100%;
    display: none;
}
.slide img{
    max-width: 100%;
    max-height: 400px;
    width: fit-content;
    height: fit-content;
}
.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--tumi-light-grey);
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    width: 18px;
    height: 18px;
    background-color: var(--tumi-bright-blue);
}
.specs {
    margin: 40px 0 28px;
    border: 1px solid var(--tumi-light-grey);
}
.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--tumi-light-grey);
    padding: 0;
}
.our-clients-quote {
    display: flex;
    background-color: var(--tumi-light-grey);
    padding: 60px 0 80px;
    text-align: left;
}
.our-clients-quote h2{
    font-size: 22px;
    line-height: 25px;
    font-weight: 900;
    margin-bottom: 60px;
}
.our-clients-quote blockquote {
    /* max-width: 830px; */
    font-size: 22px;
    line-height: 25px;
    color: var(--tumi-text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;    
    margin: 30px 0 0;
}
.our-clients-quote blockquote .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.our-clients-quote blockquote footer{
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    color: var(--tumi-text-dark);
    background: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.our-clients-quote blockquote .image{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    flex: none;
}
.our-clients-quote blockquote .image img{
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-clients-quote blockquote p{
    text-align: justify;
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
    margin: 0 0 22px;
}
.our-clients-quote blockquote footer p{
    text-align: left;
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.our-clients-quote blockquote footer p span{
    display: block;
    font-size: 22px;
    line-height: 25px;
    font-weight: 500;
}
.hero-products {
    padding: 60px 0 40px;
    background-color: var(--tumi-white);
}
.hero-products .container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-products h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
}
.hero-products h3 {
    font-size: 2rem;
    color: var(--tumi-dark-blue);
}
.custom-select-wrapper {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin-left: 40px;
}
.custom-select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 24px 0;
    border: none;
    color: var(--tumi-dark-blue);
    background-color: var(--tumi-white);
    cursor: pointer;
    font-size: 24px;
}
.custom-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z' fill='%23071D49'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.blog-grid {
    padding: 0 0 50px;
}
.blog-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0 20px;
}
.blog-card-wrapper {
    height: 100%;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)
}
.blog-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}
.blog-card .card-blog-header{
    width: 100%;
}
.blog-card.event .card-blog-header{
    padding: 20px 32px;
    width: calc(100% - 64px);
}
.blog-card .card-blog-body{
    padding: 20px 32px;
}
.blog-card h2{
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--tumi-dark-blue);
    margin: 0 auto 20px;
}
.blog-card img {
    width:100%;
    height: auto;
    margin: 0 auto;
}
.blog-card p {
    width:100%;
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 22px;
}
.blog-card .date{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.category-title{
    font-size: 26px;
    line-height: 29px;
    font-weight: 700;
    color: var(--tumi-dark-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.event .category-title{
    margin-bottom: 10px;
}
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0 80px;
}
.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 2px solid var(--tumi-bright-blue);
    padding: 20px 32px;
    cursor: pointer;
}
.event-card .card-event-header{
    width: 100%;
}
.event-card .card-event-header img{
    width: 100%;
    height: auto;
    margin: 0 auto
}
.event-card .card-event-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 64px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 32px;
}
.event-card .card-event-header .card-event-body-title{
    font-size: 26px;
    line-height: 29px;
    font-weight: 700;
    color: var(--tumi-dark-blue);
    margin: 20px 0 10px;
}
.event-card  .card-event-header .date{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 22px;
    line-height: 25px;
    color: var(--tumi-dark-blue);
    margin: 0 0 20px;
}
.event-card .card-event-header .location{
    font-size: 22px;
    line-height: 25px;
    color: var(--tumi-dark-blue);
    margin: 0 0 20px;
}
.event-card .card-event-body{
    width: 100%;
    font-size: 22px;
    line-height: 25px;
    color: var(--tumi-dark-blue);
    margin: 0;
    text-align: justify;
}
.event-card .card-event-body img{
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.service-text p{
    width:100%;
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 32px;
}
.service-grid {
    padding-bottom: 0;
}
.service-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 ;
}
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    border: 2px solid var(--tumi-bright-blue);
    padding: 20px;
    background-color: var(--tumi-white);
}
.service-card h2{
    width: 100%;
    font-size: 32px;
    font-weight: 200;
    color: var(--tumi-dark-blue);
    margin: 0 0 40px;
}
.service-card-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.service-card .service-card-images{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
} 
.service-card img {
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto;
}

.service-card .service-card-images img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 600px;
}

.service-card .service-card-text {
    width:100%;
    text-align: left;
    margin: 0 auto;
} 
.service-card .service-card-text p {
    width:100%;
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 32px;
    text-align: justify;
}
.service-card-dots{
    width: 100%;
}
.service-card ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style-type: disc;
    margin: 0;
}
.service-card ul li{
    width: auto;
    margin: 0 10px ;
    font-size: 19px;
    line-height: 21px;
}
.service-card ul li.active{
    
}

/* Style the tab */
.service-content .tab {
  overflow: hidden;
  border: none;
  display: flex;
  justify-content: flex-start;
  gap: 50px;
    padding: 10px 0 40px;
}

/* Style the buttons inside the tab */
.service-content .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 0;
  transition: 0.3s;
  font-size: 22px;
  line-height: 25px;
  font-weight: 700;
}

/* Change background color of buttons on hover */
.service-content .tab button:hover {
    border-bottom: 2px var(--tumi-text-grey) solid;
}

/* Create an active/current tablink class */
.service-content .tab button.active {
    border-bottom: 2px var(--tumi-bright-blue) solid;
}
.service-content{
    padding: 60px 0 60px;
}
/* Style the tab content */
.service-content .tabcontent {
  display: none;
    padding: 0;
}

.service-content h3{
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin-bottom: 40px;
}

.service-content p{
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 32px;
    text-align: justify;
}
.service-content .service_scroll_images ul{
    display: flex;
    gap: 20px;
    justify-content: center;
}
.service-content .service_scroll_images.left ul{
    justify-content: flex-start;
}
.products{
    padding: 60px 0 40px;
    background: var(--tumi-light-grey)
}
.content-services-text{
    width:100%;
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 40px;
    text-align: justify;
}
.product-grid {
    padding-bottom: 55px;
}
.product-grid .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}
.product-card {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid var(--tumi-bright-blue);
    padding: 20px ;
    gap: 10px;
    background: var(--tumi-white);
}
.product-card .image{
    flex: 9;
}
.product-card .content{
    flex: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card .link{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.product-card h2{
    width: 100%;
    font-size: 40px;
    font-weight: 200;
    color: var(--tumi-dark-blue);
    margin: 0 0 10px 0;
}
.product-card img {
    width:100%;
    max-width: 300px;
    height: auto;
    margin: 20px auto 14px;
}
.product-card p {
    width:100%;
    font-size: 19px;
    line-height: 20px;
    margin: 0 0 12px;
    text-align: justify;
}
.product-card ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    list-style-type: disc;
    margin: 0 0 20px;
}
.product-card ul li{
    width: auto;
    margin: 0 20px ;
    font-size: 19px;
    line-height: 20px;
}
.product-card .view-more {
    width: 100%;
    margin-top: 0px;
    color: var(--tumi-bright-blue);
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.product-card .view-more span{
    margin-left: 20px;
}
.product-card .view-more:hover svg {
    transform: translateX(4px);
}
.services{
    padding: 60px 0 40px;
    background: var(--tumi-dark-blue)
}
.services h2{
    font-size: 40px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--tumi-white);
    text-align: left;
    margin: 0 0 20px;
}
.services .description{
    font-size: 22px;
    line-height: 25px;
    color: var(--tumi-white);
    text-align: justify;
    margin: 0 0 40px;
}
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.services .service-card{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
    background-color: var(--tumi-bright-blue);
    padding: 20px;
    gap: 25px;
    color: var(--tumi-white);
}
.services .service-card p{
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 10px;
    text-align: left;
    font-weight: 900;
}
.services .service-card ul{
    font-size: 18px;
    line-height: 21px;
    margin: 20px 0 0;
    text-align: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    list-style-type: none;
    margin: 0;
}
.services .service-card ul li{
    width: auto;
    margin: 0 0 ;
    font-size: 18px;
    line-height: 19px;
    position: relative;
    font-weight: 500;
}
.testimonials {
    padding: 60px 0;
}
.testimonials h2{
    font-size: 60px;
    line-height: 60px;
    max-width: 500px;
    margin: 0 0 70px;
}
.testimonials .author{
    display: flex;
}
.testimonials .author img{
    margin-right: 27px;
}
.testimonials .author h4{
    color: var(--tumi-dark-blue);
    font-size: 40px;
    margin: 0;
}
.testimonials .author p{
    color: var(--tumi-bright-blue);
    font-size: 30px;
    margin: 0;
}
.testimonials .text p{
    color: var(--tumi-dark-blue);
    font-size: 22px;
    line-height: 25px;
    margin: 35px 0 0;
    max-width: 500px;
}
.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}
.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}
.testimonial-item {
    flex: 0 0 50%;
    padding: 0;
    box-sizing: border-box;
}
.slider-nav {
    position: absolute;
    top: 10px;
    right: 10px;
}
.slider-nav button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
}
.slider-nav button svg{
    fill: var(--tumi-bright-blue);
}
.slider-nav button.disabled svg{
    fill: var(--tumi-light-grey);
}
.contact{
    background-color: var(--tumi-white);
    padding: 70px 0 50px;
}
.contact h1 {
    font-size: 60px;
    line-height: 60px;
    color: var(--tumi-dark-blue);
    margin: 0 0 20px;
}
.contact h2 {
    font-size: 25px;
    line-height: 28px;
    color: var(--tumi-dark-blue);
    margin: 0 0 10px;
    font-weight: 700;
}
.contact .text {
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 60px;
    text-align: justify;
}
.contact .advisors {
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 40px;
    text-align: justify;
}
.contact .advisors ul li{
    margin-bottom: 50px;
}
.contact .advisors ul li .country{
    display: block;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}
.contact .advisors ul li .adress{
    display: flex;
    gap: 10px;
    margin: 0 0 5px;
}
.contact .advisors ul li .adress span{
    display: inline-block
}
.contact .advisors ul li .adress span:first-of-type{
    font-weight: 500;
}
.contact .advisors ul li .advisor{
    display: flex;
    gap: 10px;
    margin: 0 0 5px;
}
.contact .advisors ul li .advisor span{
    display: inline-block
}
.contact .advisors ul li .advisor span:first-of-type{
    font-weight: 500;
}
.contact-form-section {
    background-color: var(--tumi-bright-blue);
    color: var(--tumi-white);
    padding: 80px 0 55px;
}
.contact-form-section h2 {
    font-size: 60px;
    line-height: 60px;
}
.contact-form-section p {
    font-size: 22px;
    line-height: 25px;
    margin: 16px 0;
}
.contact-form-section form {
    margin-top: 55px;
}
.form-row {
    display: flex;
    gap: 85px;
    margin-bottom: 20px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 25px;
}
.checkbox-group {
    margin: 0 0 20px;
}
.form-group.checkbox-group label {
    margin: 0 0 0 18px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
    font-size: 18px;
    line-height: 20px;
    padding: 12px;
    border: 1px solid var(--tumi-white);
    background-color: transparent;
    color: var(--tumi-white);
    margin: 0;
    border-radius: 0;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px; /* Make space for the arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    text-align: left; /* Align text to the left */
}

/* Style for the dropdown options */
.form-group select option {
    background: var(--tumi-bright-blue, #0762C8);
    color: var(--tumi-white, #FFFFFF);
}

.form-group select:open {
    color: var(--tumi-dark-blue);
}
.form-group input[type="checkbox"]{
    width: auto;
    font-size: 22px;
    line-height: 25px;
    padding: 0;
    margin: 0 ;
}
.form-group input[type="radio"]{
    width: auto;
    font-size: 22px;
    line-height: 25px;
    padding: 0;
    margin: 0 ;
}
.form-group input::placeholder {
    color: var(--tumi-white);
    opacity: 0.8; /* Make placeholder slightly less prominent */
}

.form-group textarea {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    padding: 12px;
    border: 1px solid var(--tumi-white);
    background: transparent;
    text-align: left;
color: var(--tumi-white);
    margin: 0;
    border-radius: 0;
    resize: vertical; /* Allow vertical resizing */
    min-height: 150px; /* Provide a decent default height */
}
.checkbox-group>div{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}
.checkbox-group input {
    width: auto;
    margin-right: 10px;
}
.blog {
    background-color: var(--tumi-dark-white);
    color: var(--tumi-dark-blue);
    padding: 70px 0 50px;
    min-height: calc(100vh - 579px);
}
.about-mission-vision .container {
    display: flex;
    gap: 0;
    padding: 0;
    align-items: center;
}
.about-mission-vision .text {
    width: calc(50% - 50px);
    padding-left: 50px;
    margin: 50px 0 20px;
}
.about-mission-vision h3 {
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    margin: 0 0 15px;
}
.about-mission-vision p {
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 40px;
    text-align: justify;
}
.about-mission-vision .image {
    width: 50%;
}
.about-mission-vision .image img {
    display: block;
    width: 100%;
    height: auto;
}
.hero-about {
    background-color: var(--tumi-dark-white);
    color: var(--tumi-dark-blue);
    padding: 70px 0 50px;
    text-align: center;
}
.hero-about h1 {
    text-align: left;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    margin: 0;
}
.about-mapa {
    margin: 0;
    background-color: var(--tumi-mapa);
    padding: 40px;
}
.about-mapa img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 826px;
    margin: 0 auto;
}
.more-than-machines {
    background-color: var(--tumi-dark-blue);
    position: relative;
    overflow: hidden;
}
.more-than-machines .content {
    display: flex;
    color: var(--tumi-white);
}
.more-than-machines .text {
    background-color: var(--tumi-dark-blue);
    width: 50%;
    padding: 130px 0;
    z-index: 20;
}
.more-than-machines .text h2{
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 20px;
    color: var(--tumi-white);
}
.more-than-machines .text p{
    font-size: 40px;
    line-height: 40px;
    color: var(--tumi-bright-blue);
    max-width: 400px;
    margin: 0;
}
.more-than-machines .image {
    width: 70%;
}
.more-than-machines .image img {
    position: absolute;
    right: 0;
    top: 50%;
    width: 70%;
    min-height: 100%;
    transform: translateY(-50%) translateX(10%);
    z-index: 10;
}
.stats {
    background-color: var(--tumi-bright-blue);
    color: var(--tumi-white);
    padding: 60px 0;
}
.stat-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.stats .container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    gap: 60px;
    margin: 40px auto;
}
.stats .number {
    font-size: 100px;
    line-height: 128px;
    font-weight: 700;
    display: block;
}
.stats .text {
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    display: block;
}
.innovation-sustainability {
    position: relative;
    background-color: var(--tumi-bright-blue);
    overflow: hidden;
}
.innovation-sustainability .container-fluid {
    display: flex;
    color: var(--tumi-white);
}
.innovation-sustainability .image {
    width: 60%;
}
.innovation-sustainability .image img {
    min-width: 60%;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.innovation-sustainability .text {
    width: 40%;
    padding: 60px 60px 100px;
    background-color: var(--tumi-bright-blue);
    z-index: 20;
}
.innovation-sustainability .text h2 {
    font-size: 60px;
    line-height: 60px;
    margin: 34px 0 20px;
}
.innovation-sustainability .text p {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 40px;
    max-width: 400px;
}
.scroller {
  max-width: 100%;
}
.scroller__inner {
  display: flex;
  flex-wrap: wrap;
}
.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}
.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}
.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}
.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1002; /* Higher than other elements */
}

.modal-content {
    position: relative;
}

.close-modal-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-size: 3rem;
    line-height: 2rem;
    color: var(--tumi-light-grey);
    cursor: pointer;
    border: none;
    border-bottom: 1px solid var(--tumi-light-grey);
    background: none;
    margin: 0 auto 10px;
}

#pdf-iframe {
    width: 100%;
    height: calc(100% - 10px - 2rem);
    border: none;
}

#pdf-modal .modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    background-color: var(--tumi-bright-blue);
    padding: 5px 20px 20px;
    box-sizing: border-box;
}
.form-group input{
    width: 100%;
}
.form-group input[type="checkbox"]{
    width: auto;
    font-size: 22px;
    line-height: 25px;
    padding: 0;
    margin: 0 ;
}
.checkbox-group {
    display: flex;
    align-items: center;
}
.checkbox-group input {
    width: auto;
    margin-right: 10px;
}
/* Styles pour la bannière de consentement aux cookies */

#cookie-consent-banner {
    font-size: 15px;
    line-height: 18px;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 30px);
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}
#cookie-consent-banner p {
    margin-bottom: 20px;
    width: 100%;
}
#cookie-consent-banner ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#cookie-consent-banner p a{
    color: var(--tumi-bright-blue);
}
#cookie-consent-banner button {
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    margin-bottom: 5px;
}
#cookie-consent-banner button.btn-accept {
    background-color: var(--tumi-bright-blue);
    margin-right: 10px;
}
#cookie-consent-banner button.btn-decline {
    background-color: #dc3545;
}
#cookie-consent-banner button:hover {
    opacity: 0.9;
}
.load-more{
    display: block;
    margin: 0 auto 0;
}

.product-image-slider {

    width: 60%;
    position: relative;
    overflow: hidden;
}
.product-slider-track {
    display: flex;
    padding: 0;
    height: calc(100% - 120px);
    align-items: center;
    justify-content: center;
}
.product-slide {

    flex: 0 0 100%;
    display: none;
}
.product-slide img{
    max-width: 100%;
    max-height: 600px;
    width: fit-content;
    height: fit-content;
}
.product-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
#sustainability_form_interested{
    display: none;
}
.assesor{
    background-color: var(--tumi-light-grey);
    padding: 10px 0 60px;
}
.assesor .content{
    display: flex;
    gap: 50px;
    padding: 40px 0;
    align-items: center;
    justify-content: flex-start;
}
.assesor .content p{
    font-size: 32px;
    line-height: 35px;
    margin: 0;
    text-align: left;
    font-weight: 700;
}
/* Custom Hero Carousel */
.custom-carousel {
    position: absolute;
    width: 65%;
    height: 100%;
    overflow: hidden;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.custom-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.custom-carousel .carousel-item.active {
    opacity: 1;
    visibility: visible;
}

.custom-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make sure the existing hero-image styles don't conflict */
.custom-carousel .hero-image img {
    position: static; /* Override absolute positioning */
    height: auto; /* Let the carousel container manage height */
}

.custom-carousel .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.custom-carousel .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
}

.custom-carousel .dot.active {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 1);
}

.hero-service-grid {
    padding-bottom: 0;
}
.hero-service-grid .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 ;
}
.hero-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: none;
    padding: 10px 10px 20px;
}
.hero-service-card .hero-service-card-footer{
    position: absolute;
    bottom: 0;
    left: 10px;
}
.hero-services-text h2{
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--tumi-text-dark);
    margin: 0 0 40px;
}
.hero-service-card h3{
    width: 100%;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: var(--tumi-dark-blue);
    margin: 0 0 40px;
    height: 40px;
}
.hero-service-card-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.hero-service-card .hero-service-card-images{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
} 
.hero-service-card img {
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto;
}

.hero-service-card .hero-service-card-images img{
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 600px;
}

.hero-service-card .hero-service-card-text {
    width:100%;
    text-align: left;
    margin: 0 auto;
} 
.hero-service-card .hero-service-card-text p {
    width:100%;
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 32px;
    text-align: justify;
}
.hero-service-card-footer a span{
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
}
.hero-service-card-footer a span::after{
    content: '→';
    display: block;
    margin-top: 2px;
}
@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
@media (max-width: 1200px) {
    .header-right{
        justify-content: center;
    }
    nav {
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: var(--tumi-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        z-index: 1000;
    }
    nav.active {
       max-height: 500px;
       box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 1590px) {

    .custom-carousel {
        width: 50%;
    }
    .hero-image img{
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 1159px) {

    .container {
        padding: 0 15px;
    }
    header{
        padding: 40px 0 30px;
    }
    .logo img{
        width: 109px;
        height: 35px;
    }
    .d-block{
        display: block;
    }
    .d-inline-block{
        display: inline-block;
    }
    .d-flex{
        display: flex;
    }
    .d-none{
        display: none;
    }
    .form-row{
        flex-direction: column;
        gap: 10px;
        margin: 0;
    }
    footer{
        padding: 40px 0;
    }
    footer .container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .footer-group{
        flex-direction: row;
        height: auto;
        width: 100%;
        gap: 30px;
        margin: 0;
    }
    .footer-adresse{
        max-width: 100%;
    }
    .footer-logo{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .footer-logo img{
        width: 109px;
        height: 35px;
    }
    .footer-links{
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        width: 100%;
        gap: 10px;
        margin: 10px 0;
    }
    .footer-col{
        display: flex;
        flex-direction: column-reverse;
    }
    .footer-col:first-of-type{
        flex-direction: column;
    }
    .footer-col .footer-group{
        width: auto;
        flex-direction: column;
    }
    .footer-col ul{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
    }
    .footer-col .footer-adresse ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-col .footer-adresse ul li  {
        max-width: 100%;
    }
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    .footer-col img{
        margin: 0 auto;
    }
    .footer-social {
        text-align: center;
        margin: 10px auto;
    }
    .hero .container,
    .our-business .container,
    .leadership .container,
    .environment .container,
    .history-content {
        flex-direction: column;
        text-align: center;
    }
    .hero .container {
        height: auto;
        padding: 0;
        max-width: 100%;
    }
    .hero-text, .business-text, .leadership-text, .environment-text, .history-text {
        padding: 20px;
    }
    .hero-text{
        width: 100%;
        align-items: flex-start;
    }
    .hero-text h1{
        font-size: 30px;
        line-height: .96;
        text-align: left;
        margin: 15px 0 35px;
        max-width: 200px;
    }
    .hero-text p{
        font-size: 20px;
        line-height: 1;
        text-align: left;
        margin: 25px 0 15px;
        max-width: 150px;
    }
    .hero-image{
        width: 100%;
        position: relative;
        overflow: hidden;
        min-width: 100%;
        min-height: auto;
    }
    .hero-image img{
        position: relative;
        width: 100%;
        height: auto;
        max-height: 100%;
        min-width: 100%;
        min-height: auto;
    }
    .our-business{
        padding: 20px 0 40px;
    }
    .our-business .container{
        flex-direction: column-reverse;
    }
    .business-text,
    .business-image {
        width: auto;
    }
    .business-text h2 {
        font-size: 12px;
        line-height: .96;
        text-align: left;
        margin: 0 0 12px;
    }
    .business-text p {
        font-size: 20px;
        line-height: 1.14;
        text-align: left;
        margin: 0;
    }
    .business-image {
        display: flex;
        flex-direction: column;
        margin-right: 0;
    }
    .business-image img{
        height: 309px;
        width: auto;
        margin: 5px auto 30px;
    }
    .leadership{
        padding:35px 0 0;
    }
    .leadership .container{
        text-align: left;
        gap: 0;
    }
    .leadership-text {
        padding: 10px 0 60px;
    }
    .leadership-text h2 {
        font-size: 12px;
        line-height: .96;
        text-align: left;
        margin: 0 0 18px;
    }
    .leadership-text h3 {
        font-size: 30px;
        line-height: .96;
        text-align: left;
        margin: 0 20px 35px 0;
    }
    .leadership-text p {
        font-size: 20px;
        line-height: 1.14;
        text-align: left;
        margin: 0 20px 50px 0;
        max-width: 100%;
    }
    .leadership-image{
        display: none;
    }
    .leadership-image img{
        display: none;
    }
    .certifications{
        padding: 35px 0;
    }
    .certifications .container{
        overflow: hidden ;
    }
    .certifications h2{
        font-size: 20px;
        line-height: 1.14;
        text-align: left;
        margin: 0 0 18px;
    }
    .cert-logo{
        width: 126px;
        height: 60px;
    }
    
    .environment{
        padding:45px 0 0;
    }
    .environment .container{
        text-align: left;
        gap: 0;
    }
    .environment-text{
        padding: 0;
    }
    .environment-text h2{
        font-size: 12px;
        line-height: .96;
        text-align: left;
        margin: 0 0 18px;
    }
    .environment-text p {
        font-size: 20px;
        line-height: 1.14;
        text-align: left;
        margin: 0 à 50px;
    }
    .environment-stat{
        margin: 30px 0;
        align-items: flex-start;
    }
    .environment-stat p {
        font-size: 24px;
        line-height: 1.14;
        text-align: left;
    }
    .environment-stat p.percentage{
        font-size: 140px;
        line-height: 120px;
    }
    .testimonial-item {
        flex: 0 0 100%;
    }
    .hero-image, .business-image, .leadership-image, .history-image {
        text-align: center;
    }
    .cert-logos{
        flex-wrap: nowrap;
    }
    .history-body  .container {
        padding: 0;
    }
    .history-image img {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        transform: translateY(0);
    }
    .history h2{
        font-size: 30px;
        line-height: .96;
        text-align: left;
        margin: 0;
        padding: 32px 0;
    }
    .history-text p {
        margin: 0;
    }
    .history-text a {
        margin: 20px auto 10px;
    }
    .environment-text a {
        width: fit-content;
        margin: 20px auto 10px;
    }
    .leadership-text a{
        display: block;
        width: fit-content;
        margin: 20px auto 10px;
    }
    .history-text-content{
        text-align: left;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
    .hero-about{
        padding: 25px 0;
    }
    .blog{
        padding: 25px 0;
        min-height: calc(100vh - 532px);
    }
    .hero-about h1{
        font-size: 30px;
        line-height: .96;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    .more-than-machines .container{
        max-width: 100%;
    }
    .more-than-machines .content{
        flex-direction: column;
    }
    .more-than-machines .container{
        padding: 0;
        margin: 0;
    }
    .more-than-machines .text {
        width: auto;
        padding: 45px 20px;
    }
    .more-than-machines .text h2{
        font-size: 30px;
        line-height: .96;
        text-align: left;
        max-width: 100%;
        margin: 0 0 10px;
        padding: 0;
    }
    .more-than-machines .text p{
        font-size: 20px;
        line-height: 20px;
        max-width: 100%;
        margin: 0 0 10px;
    }
    .more-than-machines .image {
        display: flex;
        width: 100%;
        position: relative;
        overflow: hidden;
        min-width: 100%;
        min-height: auto;
    }
    .more-than-machines .image img {
        position: relative;
        transform: none;
        width: 100%;
        height: auto;
        min-width: 100%;
        min-height: auto;
    }
    .about-description .content{
        flex-direction: column-reverse;
        gap: 0px;
        padding: 20px 0;
    }
    .about-description{
        padding: 20px 0 0;
    }
    .about-description .container{
        flex-direction: column-reverse;
    }
    .about-description .text,
    .about-description .image {
        width: 100%;
    }
    .about-description .content .text p{
            font-size: 20px;
            line-height: 1.14;
            text-align: left;
            margin: 10px 0 30px;
    }
    .about-description .content .image{
            display: flex;
            flex-direction: column;
    }
    .about-description .content  .image img{
        height: 309px;
        margin: 5px 0 30px;
    }
    .about-mission-vision .container {
        padding: 0 20px;
        flex-direction: column;
        gap: 0;
    }
    .about-mission-vision .text {
        width: 100%;
    }
    .about-mission-vision .text p{
        font-size: 20px;
        line-height: 1.14;
    }
    .about-mission-vision .image {
        width: 100%;
    }
    .about-mission-vision .image img{
        width: 100%;
        max-width: 420px;
        height: auto;
        margin: 20px auto 0;
    }
    .innovation-sustainability .container-fluid{
        flex-direction: column;
        padding: 0;
    }
    .innovation-sustainability .image {
        display: block;
        width: 100%;
        position: relative;
        overflow: hidden;
        min-width: 100%;
        min-height: 322px;
    }
    .innovation-sustainability .image img {
        position: relative;
        left: 0;
        top: 0;
        transform: translateX(0) translateY(0);
        width: 100%;
        height: auto;
        min-width: 100%;
        min-height: auto;
    }
    .innovation-sustainability .text {
        width: auto;
        padding: 20px 20px 40px;
    }
    .innovation-sustainability .text h2{
        font-size: 30px;
        line-height: .96;
        text-align: left
    }
    .innovation-sustainability .text p{
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 30px;
        max-width: 100%;
    }

    .event-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .hero-services .service-grid .container{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .content-services .service-grid .container{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-grid .container{
        grid-template-columns: 1fr;
    }
    .hero-services {
        padding: 25px 0 50px;
    }
    .hero-services .container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 0;
    }
    .hero-services .text {
        width: 100%;
        padding: 0;
    }
    .hero-services h1 {
        font-size: 30px;
        line-height: .96;
        text-align: left;
        margin: 0 0 20px;
    }
    .hero-services .text p {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 20px;
    }
    .hero-services .accordion{
        width: 100%;
        padding: 0;
    }
    .accordion-item{
        padding: 15px 0;
    }
    .accordion-item h3{
        font-size: 20px;
        line-height: 20px;
        margin: 10px 0;
    }
    .accordion-content p{
        font-size: 16px;
        line-height: 16px;
        margin: 0 0 20px;
    }
    .stats{
        padding: 20px 0 40px;
    }
    .stats .container{
        flex-direction: column;
        gap: 25px;
        margin: 0 auto;
    }
    .stat-item{
        flex-direction: column;
        gap: 0;
    }
    .stats .number{
        font-size: 55px;
        line-height: 1.14;
    }
    .stats .text{
        font-size: 20px;
        line-height: 1.14;
    }
    .hero-products {
        padding: 20px 0;
    }
    .hero-products .container{
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-products h1 {
        font-size: 30px;
        line-height: 30px;
        margin: 0 0 20px;
        max-width: 200px;
    }
    .custom-select-wrapper{
        margin: 0;
        max-width: 230px;
    }
    .custom-select-wrapper select{
        font-size: 20px;
        line-height: 1.14;
        padding: 15px 0;
        width: 100%;
    }
    .blog-grid {
        padding: 0 0 30px;
    }
    .blog-grid .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .blog-card .card-blog-body{
        padding: 10px 16px;
    }
    .blog-card h2{
        font-size: 26px;
        line-height: 26px;
        margin: 0 auto 14px;
    }
    .blog-card p {
        font-size: 20px;
        line-height: 1;
        margin: 0 0 15px;
    }
    .service-card{
        padding: 30px 20px;
        max-width: 640px;
        margin: 0 auto;
    }
    .service-grid .container{
        padding: 0;
    }
    .service-card-content{
        flex-direction: column;
        gap: 15px;
    }
    .service-card h2{
        font-size: 26px;
        line-height: 26px;
        margin: 0 0 20px;
        text-align: center;
    }
    .service-card p{
        font-size: 20px;
        line-height: 1;
        margin: 0 0 15px;
    }
    .service-card ul{
        gap: 15px;
        margin: 0 0 20px;
    }
    .service-card ul li{
        font-size: 20px;
        line-height: 1;
    }
    .product-card{
        flex-direction: column;
        padding: 30px 20px;
    }
    .product-card h2{
        font-size: 26px;
        line-height: 26px;
        margin: 0;
    }
    .product-card p{
        font-size: 20px;
        line-height: 1;
        margin: 0 0 15px;
    }
    .product-card img{
        margin: 0 auto 25px;
    } 
    .product-card .view-more{
        font-size: 20px;
        line-height: 1;
    }
    .product-card .view-more svg{
        width: 28px;
        height: 21px;
    }
    .product-card .link{
        justify-content: center;
    }
    .product-detail{
        padding: 20px 0 45px;
    }
    .product-header{
        align-items: flex-start;
        padding: 0;
    }
    .product-header h1{
        font-size: 30px;
        line-height: .96;
        margin: 0
    }
    .back-to-products{
        flex-direction: column;
    }
    .product-content {
        flex-direction: column;
        gap: 0;
    }
    .product-content .btn{
        font-size: 20px;
        line-height: 1;
        width: calc(100% - 48px);
        margin: 20px 0;
        text-align: center;
    }
    .product-info{
        width: auto;
        padding: 0 10px;
        font-size: 20px;
        line-height: 20px;
    }
    .image-slider{
        width: auto;
    }
    .product-info p{
        font-size: 20px;
        line-height: 20px;
        margin: 10px 0;
    }
    .slider-track{
        width: auto;
        padding: 10px 0;
        height: 220px;
    }
    .slider-track .slide img{
        width: auto;
        height: 200px;
    }
    .slider-dots{
        margin: 0;
    }
    .specs {
        margin: 30px 0;
    }
    .spec-item{
        position: relative;
        border-bottom: none;
        font-size: 18px;
        gap: 10px;
    }
    .our-clients-quote{
        padding: 35px 0 30px;
    }
    .our-clients-quote h2{
        font-size: 12px;
        line-height: .96;
        text-align: left;
        margin: 0 0 18px;
    }
    .our-clients-quote blockquote{
        font-size: 20px;
        line-height: 1.14;
        width: 80%;
    }
    .our-clients-quote blockquote footer{
        font-size: 14px;
        line-height: 1.14;
        margin: 20px auto 10px;
    }
    .testimonials {
        padding: 40px 0 10px;
    }
    .testimonials h2 {
        font-size: 30px;
        line-height: .96;
        margin: 0 0 20px;
        max-width: 300px;
    }
    .testimonials .text p{
        font-size: 20px;
        line-height: 1.14;
        margin: 0
    }
    .testimonials .author{
        margin: 0 0 25px;
    }
    .testimonials .author img{
        width: 46px;
        height: auto;
        margin-right: 15px;
    }
    .testimonials .author h4{
        font-size: 20px;
        line-height: 1.14;
        margin: 0;
    }
    .testimonials .author p{
        font-size: 18px;
        line-height: 1.14;
        margin: 0;
    }
    .slider-nav{
        position: relative;
        text-align: center;
        margin: 10px auto;
    }
    .slider-nav button svg{
        width: 24px;
    }
    .contact-form-section{
        padding: 40px 0 30px;
    }
    .contact-form-section h2 {
        font-size: 30px;
        line-height: .96;
        margin: 0 0 10px;
    }
    .contact-form-section p {
        font-size: 20px;
        line-height: 1.14;
        margin: 0 0 40px;
    }
    .contact-form-section form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0 0 30px;
    }
    .form-group label{
        font-size: 14px;
        line-height: .94;
        margin: 0 0 10px;
    }
    .form-group input,
    .form-group select {
        font-size: 22px;
        line-height: 1.14;
    }
    .about-mapa{
        padding: 20px 0;
    }
    /* Style the tab */
    .service-content .tab {
        gap: 20px;
        padding: 50px 0 50px;
    }
    .hero-service-card {
        max-width: 300px;
        margin-bottom: 30px;
    }
    .hero-services-text h2{
        margin: 0 0 30px;
    }
    .hero-service-card h3{
        margin: 0 0 20px;
        height: auto;
    }
    .hero-service-card-content{
        gap: 12px;
    }
    .hero-service-card .hero-service-card-images img{
        max-width: 600px;
    }
    .hero-service-card .hero-service-card-text {
        margin: 0 auto;
    } 
    .hero-service-card .hero-service-card-text p {
        margin: 0 0 12px;
    }
}
@media(max-width: 992px) {
    .services .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    /* Style the tab */
    .service-content .tab {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px 0 40px;
    }   
}