html {
    color: #2f2f2f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    min-height: 100%;
    scroll-behavior: smooth !important;
}

/* * {
  outline: 1px solid red !important;
} */


* {
    background-color: transparent;
    border: 0;
    box-sizing: border-box;
    font: inherit;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

p{
    margin:  0 !important;
}

main{
    padding-top: 110px;
}

.button-link{
    background: blue;
    color: white;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: .75rem;
    border-radius: 3px;
    border: 1px solid blue;
    transition: all .6s ease;    
}

.button-link:hover{
    cursor: pointer;
    background: white;
    color: blue;   
}

.section{
    padding: 0 10%;
}

.section p, .section h2{
   text-align: center;
}

.header{
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
    color: blue;
}

.back{
    transition: all .5s ease;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 13px;
    color: blue;
}

.back i{
    font-size: 1.5em;           
}

    .back:hover {
    cursor: pointer;
    color: rgb(22, 22, 151);
}

.navbar-toggler:focus{
    box-shadow: 0 !important;
}

@media screen and (max-width: 786px){
    .back-products{
        display: block !important;
        padding-bottom: 0 !important;
    }

    .back-products .back{
        justify-content: center;
    }

    .breadcrumb ol{
        padding: 0 !important;
    }

    .breadcrumb li{
        padding: 0 !important;
    }
}

.carousel-item:hover {
   animation-play-state: paused !important;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.marquee-track a img {
    height: 100px;
    object-fit: contain;
}

.marquee-track img{
  max-height: 180px; 
  height: auto;
  width: auto;
  object-fit: contain; 
  flex-shrink: 0;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

hr{
    height: .1px !important;
    color: lightgray !important;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

