@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
    font-family: 'Roboto'!important;
    --blue: #08508C;
    --blue-light: #1F83E5;
    --dark: #222222;
    --dark-light: #393939;
    --white: #F9FAFC;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
a {
    text-decoration: none;
    color: var(--blue-light);
}
a:hover {
    color: var(--blue);
}

.no-border {
    border: 0, !important;
}
.hide {
    display: none;
}
.invisible {
    visibility: hidden;
}
.center {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flex {
    display: flex;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gap-5 {
    gap: 5px;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-40 {
    gap: 40px;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.alert {
    padding: 10px;
    color:white;
}
.alert-success {
    background-color: rgb(54, 188, 54);
}
.alert-warning {
    background-color: rgb(190, 175, 40);
}
.alert-danger {
    background-color: rgb(172, 60, 36);
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.title {
    width: fit-content;
    font-size: 30px;
    color:black;
    margin-bottom: 20px;
}
.title::after {
    content:'';
    display: block;
    margin-top: 10px;
    width: 60px;
    height: 4px;
    background-color: var(--blue-light);
}
.title--center {
    margin:auto;
}


/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.subtitle {
    font-size: 18px;
    line-height: 1.5;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.btn {
    display: block;
    padding: 10px;
    width:fit-content;
    background-color: var(--blue-light);
    color:white;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: var(--blue);
    color:white!important;
}
.btn--large {
    padding: 20px;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    border:1px solid var(--blue-light);
    border-radius: 3px;
    padding:10px;
    background: white;
    color: var(--blue-light);
    font-size: .8rem;
    height: fit-content;
    width: fit-content;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.form-group {
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.form-control {
    padding: 10px;
    border-radius: 4px;
    border:1px solid #CCC;
    color: #555;
}
.form-cotrol::placeholder {
    color: #555;
}
.form-control--dark {
    border:1px solid #555;
    background: var(--dark-light);
    color: #999;
}
.form-control--dark::placeholder {
    color: #999;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.html-arrow {
    display:inline-flex;
    align-items: center;
    justify-content: flex-end;;
    width:12px;
    height: 15px;
    overflow: hidden;
    font-size: 25px;
    margin-left: 10px;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.icon-size-1 {
    width: 15px!important;
    height: 15px!important;
}
.icon-size-2 {
    width:20px!important;
    height: 20px!important;
}
.icon-size-3 {
    width:30px!important;
    height: 30px!important;
}
.icon-size-4 {
    width:40px!important;
    height: 40px!important;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.header {
    background:white;
    height: 100px;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__nav {
    display: flex;
    justify-content: space-between;
    width: 67%;
}

@media (max-width: 991px) {
    .header__social {
        display: none;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.menu__toggle span, .menu__toggle::before, .menu__toggle::after {
    background-color: var(--dark-light);
}
.menu__item {
    padding: 25px 15px;
}
.menu__link,
.menu__link a {
    color:#666;
    font-weight: 600;
}
.menu__link {
    display: flex;
    align-items: center;
    gap:0px!important;
}
.menu__link:hover {
    color:var(--blue-light);
}
.menu__link .menu__down-arrow {
    transform: rotate(0deg);
}

.menu__dropdown {
    margin-top:10px;
    border-radius:20px;
    grid-template-columns: none;
    left:-30px;
    transform: none;
    background: #363636;
    padding: 50px 0 20px 0;
    max-width: none;
    gap: 5px;
}
.menu__dropdown.visible {
    display: grid;
}
.menu__item--applications {
    position: relative;
    white-space: nowrap;
}
.menu__dropdown--applications {
    position: absolute;
    top:90px;
    left:50%!important;
    transform: translateX(-50%);
    padding-top: 20px;
}
.menu__dropdown-item {
    width: auto;
    padding:5px 20px;
    position: relative;
}
.menu__dropdown-item:hover {
    background-color: #666;
}
.menu__dropdown-item:hover .menu__dropdown-link {
    color: white;
}
.menu__dropdown-link {
    color:#a6a6a6;
    font-size: 0.8rem;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.menu__down-arrow {
    content:'';
    transform: rotate(-90deg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu__down-arrow img {
    width: 8px;
}
.menu__dropdown-submenu {
    position: absolute;
    top:-10px;
    left: 100%;
    margin-left:10px;
    padding:25px;
    background: #363636;
    border-radius: 20px;
    white-space:  nowrap;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu__dropdown-submenu-link {
    color:#a6a6a6;
    font-size: .8rem;
    font-weight: normal;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.breadcrumb {
    position: relative;
    z-index: 1;
    padding:60px 0;
    background-color: var(--dark-light);
}
.breadcrumb::before {
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
    filter:brightness(.7)
}
.breadcrumb--parceiros-comerciais::before {
    background: url('../../image/parceiros_comerciais.webp') no-repeat center center;
    background-size: cover;
}
.breadcrumb--aplicacoes::before {
    background: url('../../image/aplicacoes.webp') no-repeat center center;
    background-size: cover;
}
.breadcrumb--contato::before {
    background: url('../../image/contato.webp') no-repeat center center;
    background-size: cover;
}
.breadcrumb__title {
    font-size: 50px;
    color:white;
}
.breadcrumb__text {
    color:white;
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.5;
}
.breadcrumb__list {
    justify-content: left;
}
.breadcrumb__item, 
.breadcrumb__link {
    font-size: 18px;
    color:white;
}

@media (max-width: 991px) {
    .breadcrumb {
        padding: 30px 0;
    }
    .breadcrumb__title {
        font-size: 28px;
    }
    .breadcrumb__text {
        font-size: 16px;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.banner {
    --banner-height: 800px;
    background-color: #999;
    width:100%;
    height: var(--banner-height);
}
.banner__list {
    list-style: none;
}
.banner__item {
    position: relative;
}
.banner__item-image {
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.7);
}
.banner__item-content {
    position: relative;
    z-index: 2;
    height: var(--banner-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
  
}
.banner__title {
    font-size: 50px;
    color:white;
}
.banner__text {
    color:white;
    font-size: 20px;
    margin: 30px 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .banner {
        --banner-height: 400px;
    }
    .banner__title {
        font-size: 28px;
    }
    .banner__text {
        font-size: 16px;
    }
    .banner__title br {
        display: none;
    }
    .banner .btn--large {
        padding: 10px;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.destaques {
    padding: 60px 0;
}
.destaques__title {
    margin-bottom:20px;
}
.destaques__text {
    margin:10px 0 40px 0;
    color:#666;
    line-height: 1.5;
    font-size: 18px;
}
.destaques__list {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    list-style: none;
}
.destaques__item {
    background-color: white;
    border:1px solid #EEE;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.destaques__item-img {
    width: 100%;
    height: 250px;
}
.destaques__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.destaques__item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.destaques__item-text {
    line-height: 1.5;
}
.destaques__btn {
    margin: auto;
}

@media (max-width: 500px) {
    .destaques__list {
        grid-template-columns: 1fr;
    }
    .destaques__item-text {
        font-size: 14px;
    }
    
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.solucoes {
    background-color: var(--dark);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
.soluicoes.container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.solucoes__title {
    color:white;
    font-size: 34px;
    margin-bottom:20px;
    text-align: center;
}
.solucoes__btn {
    margin: auto;
}

@media (max-width: 600px) {
    .solucoes__title {
        font-size: 28px;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.about {
    padding: 60px 0;
}
.about__content {
    margin-right: 50px;
}
.about__text {
    margin-top:20px;
    line-height: 1.5;
}
.about__image {
    width: 100%;
    height: 500px;
    background-color: #EEE;
    overflow: hidden;
}
.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about .container {
        flex-direction: column;
        gap: 20px;
    }
    .about__content {
        margin-right: 0;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.categorias {
    padding: 60px 0;
    background-color: #F9FAFC;
}
.categorias__title {
    font-size: 34px;
}
.categorias__text {
    margin:10px 0 40px 0;
    color:#666;
    line-height: 1.5;
    font-size: 18px;
}
.categorias__list {
    margin-top:20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
}
.categorias__item {
    border-left:3px solid var(--blue-light);
    background-color: white;
    border-radius: 3px;
    padding:30px;
}
.categorias__item-title {
    margin-bottom: 10px;
}
.categorias__item-text {
    color:#666;
    line-height: 1.4;
}
.categorias__btn {
    margin:50px auto 0 auto;
} 

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.newsletter {
    background-color: var(--dark);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
.newsletter__title {
    color:white;
    font-size: 28px;
    margin-bottom:20px;
    text-align: center;
}
.newsletter__text {
    text-align: center;
    color:#CCC;
    line-height: 1.5;
}
.newsletter__form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top:20px;
}
.newsletter__form-fieldset {
    width:100%;
}
.newsletter__form input {
    width:100%;
    color:#CCC;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.footer {
    background-color: var(--dark);
    padding: 50px 0 0 0;
}
.footer-bottom .container {
    border-top: 1px solid var(--dark-light);
    margin-top:20px;
    padding: 20px 0;
}
.footer__title {
    color:white;
    font-size: 20px;
    margin-bottom:20px;
}
.footer__menu-list {
    list-style: none;
    display:flex;
    flex-direction: column;
    gap:15px;
}
.footer__menu-list--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.footer__menu-list.disabled-links {
    pointer-events: none;
}
.footer__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color:white;
}
.footer__menu-link {
    color:white;
}
.footer__menu-link:hover {
    color: white;
}
.footer__links {
    margin-left:30px;
}
.footer__dsmaquinas-text {
    color:white;
    line-height: 1.4;
}
.footer__dsmaquinas-logo {
    display: block;
    margin:20px 0;
}
.footer__dsmaquinas-social {
    display: flex;
    gap: 10px;
}
.footer-bottom__logo img {
    width:100px;
}
.footer-bottom__copyright {
    color:#999;
}

@media (max-width: 991px) {
    .footer .even-columns {
        flex-direction: column;
        align-items: center;
        gap:50px;
    }
    .footer__title {
        text-align: center;
    }
    .footer__links {
        margin-left:0;
    }
    .footer__menu-item {
        justify-content: center;
    }
    .footer__dsmaquinas-text {
        text-align: center;
    }
    .footer__dsmaquinas-logo {
        text-align: center;
    }
    .footer__dsmaquinas-social {
        justify-content: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-bottom__logo {
       display: none;
    }

    .footer-bottom__copyright {
        text-align: center;
        font-size: 14px;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.contact {
    padding: 60px 0;
}
.contact__title {
    margin-bottom: 30px;
}
.contact__text {
    font-size:18px;
}
.contact__form {
    margin-top:40px;
}
.contact__form label {
    color:#444;
    font-weight: bold;
}
.contact__form-btn {
    width:100%;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.contact__info-item {
    display: flex;
    gap: 20px;
}
.contact__info-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EBF4FB;
    border-radius: 50%;
}
.contact__info-item-content h2 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom:10px;
}
.contact__info-item-content p {
    margin-top:5px;
    color:#666;
    font-size: 16px;
    line-height: 1.5;
}
.contact__info-item-content a {
    margin-top: 10px;
}
.contact__info-localizacao {
    margin-top: 40px;
    background-color: #F3F4F6;
    padding: 20px;;
}
.contact__info-localizacao-map {
    margin: 20px 0;
}

@media (max-width: 991px) {
    .contact__wrap {
        flex-direction: column;
        gap: 50px;
    }
    .contact__info-item-content p {
        max-width:250px;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.aplicacoes {
    padding: 60px 0;
}
.aplicacoes__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 50px;
    list-style: none;
    margin:40px 0;
}
.aplicacoes__item {
    display: flex;
    width:100%;
    gap:20px;
}
.aplicacoes__item-image {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    background-color: #EEE;
}
.aplicacoes__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aplicacoes__item-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.aplicacoes__item-content h3 {
    font-size: 24px;
    color:black;
}
.aplicacoes__item-content p {
    color:#666;
    line-height: 1.5;
}
.aplicacoes__item-content h4 {
    font-size: 18px;
}
.aplicacoes__item-content ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    list-style: disc;
    gap:5px;
}
.aplicacoes__btn {
    margin: auto;
}

@media (max-width: 991px) {
    .aplicacoes__list {
        grid-template-columns: 1fr;
    }
    .aplicacoes__item {
        flex-direction: column;
    }
    .aplicacoes__item-image {
        width: 100%;
        height: auto;
    }
    
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.parceiros-comerciais {
    padding: 60px 0;
}
.parceiros-comerciais__list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    list-style: none;
}
.parceiros-comerciais__item {
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.parceiros-comerciais__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    background-color: var(--white);
}
.parceiros-comerciais__item-img img {
    max-width: 80%;
}
.parceiros-comerciais__item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.parceiros-comerciais__item-content h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.parceiros-comerciais__item-content h3 span {
    display: block;
    padding:5px;
    background-color: #EEE;
    font-size:14px;
    font-weight: normal;
    border-radius: 3px;
}
.parceiros-comerciais__item-content p {
    line-height: 1.5;
}

.vantagens {
    padding: 60px 0;
    background-color: var(--white);
}
.vantagens__title {
    margin-inline:auto;
}
.vantagens__text {
    margin-inline:auto;
    width: fit-content;
}
.vantagens__list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    list-style: none;
}
.vantagens__item {
    display: flex;
    gap: 20px;
    background-color: white;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.vantagens__item-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vantagens__item-image img {
    width: 100px;
}
/* .vantagens__item-number {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EBF4FB;
    border-radius: 50%;
    color:var(--blue-light);
    font-size: 20px;
    font-weight: bold;
} */
.vantagens__item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vantagens__item-title {
    font-size: 20px;
}
.vantagens__item-text {
    line-height: 1.5;
}

@media (max-width: 991px) {
    .vantagens,
    .parceiros-comerciais {
        padding: 30px 0;
    }
    .vantagens__title,
    .parceiros-comerciais__title {
        font-size: 28px;
    }
    .vantagens .subtitle,
    .parceiros-comerciais .subtitle {
        font-size: 16px;
    }
    .vantagens__list,
    .parceiros-comerciais__list {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.servicos {
    padding: 60px 0;
}
.servicos__list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    list-style: none;
}
.servicos__item {
    display: flex;
    padding:25px;
    gap:20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.servicos__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 100px;
    background-color: var(--white);
}
.servicos__item-img img {
    max-width: 80%;
}
.servicos__item-content {
    display: flex;
    flex-direction: column;
    gap:10px;
}
.servicos__item-content h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:black;
    font-size: 24px;
}
.servicos__item-content p {
    line-height: 1.5;
    margin-bottom: 15px;
}
.servicos__item-content h4 {
    font-size: 20px;
    color:black;
}
.servicos__item-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.servicos__item-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}
.servicos__item-content ul li svg, 
.servicos__item-content ul li img {
    flex-shrink: 0;
}

.servicos-adicionais {
    padding: 60px 0;
    background-color: var(--white);
}
.servicos-adicionais__title {
    margin-inline:auto;
    font-size: 34px;
}
.servicos-adicionais__text {
    margin-inline:auto;
    width: fit-content;
}
.servicos-adicionais__list {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    list-style: none;
}
.servicos-adicionais__item {
    display: flex;
    gap: 20px;
    background-color: white;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.servicos-adicionais__item-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.servicos-adicionais__item-image img {
    width: 100px;
}
/* .servicos-adicionais__item-number {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EBF4FB;
    border-radius: 50%;
    color:var(--blue-light);
    font-size: 20px;
    font-weight: bold;
} */
.servicos-adicionais__item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.servicos-adicionais__item-title {
    font-size: 20px;
    color:black;
}
.servicos-adicionais__item-text {
    line-height: 1.5;
}

@media (max-width: 991px) {
    .servicos-adicionais,
    .servicos {
        padding: 30px 0;
    }
    .servicos-adicionais__title,
    .servicos__title {
        font-size: 28px;
    }
    .servicos-adicionais .subtitle,
    .servicos .subtitle {
        font-size: 16px;
    }
    .servicos-adicionais__list,
    .servicos__list {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.category {
    padding: 60px 0;
}
.category__list {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    list-style: none;
}
.category__item {
    background-color: white;
    border:1px solid #EEE;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.category__item-img {
    width: 100%;
    height: 250px;
}
.category__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category__item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.category__item-title {
    text-align: left;
}
.category__item-text {
    line-height: 1.5;
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.product__metadescription {
    border-top: 1px solid var(--blue-light);
}
.product__description {
    border-bottom: 1px solid var(--blue-light);
}
.product__description-content {
    margin-bottom: 30px;
}
.product__description-title {
    border-bottom: 0;
}
.product__link {
    background-color: var(--blue-light);
}

.related__title {
    text-transform: none;
}

@media (max-width: 991px) {
    .related__title {
        text-align: left;
    }
    
}

/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: var(--blue-light)!important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white!important;
    font-size: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: var(--blue)!important;
}
.owl-nav .owl-prev {
    margin-left: 20px!important;
    transform: rotate(180deg);
}
.owl-nav .owl-next {
    margin-right: 20px!important;
}
.owl-nav .html-arrow {
    margin-left:3px;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .banner__list .owl-nav {
        bottom:-30px;
        top:auto;
    }
    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }
    
}
/* GERAL */
@media (max-width: 991px) {
   
    .breadcrumb__list {
        margin-top:20px;
    }
    #open-products img {
        display:block;
    }
    .menu__down-arrow {
        width: 30px;
        height: 30px;
    }
    .menu__link a {
        color:var(--color-2);
    }
    .menu--expanded,
    .menu__toggle--close {
        z-index: 14;
    }
    .menu__toggle--close::before,
    .menu__toggle--close::after {
        background:black!important;
    }
    .menu__dropdown {
        left:0;
        width:94vw;
    }
    .menu__dropdown-item {
        padding: 0;
    }
    .menu__dropdown-link {
        padding-left: 10px;
    }
    .menu__down-arrow {
        width: 40px;
    }
    .menu__dropdown--applications .menu__dropdown-item {
        padding:10px!important;
    }
    .menu--expanded .menu__dropdown--applications {
        height:fit-content!important;
        gap:0!important;
    }
    .menu__dropdown-submenu {
        position:unset;
        margin:0;
        padding:0;
        border-radius:3px;
        white-space: wrap;
    }
    .menu__dropdown-submenu.visible {
        padding:20px;
        background: #666;
    }
}
