@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
    font-family: 'Roboto'!important;
    --blue-dark:#002d49;
    --blue: #1f4e7a;
    --blue2: #266eb3;
    --blue-light: #2d90ee;
    --dark: #383838;
    --dark-light: #a0a0a0;
    --white: #F9FAFC;
}

body {
    scroll-behavior: smooth;
    background-color: #f8f8f8;
}

.container {
    background: none;
}
.hide {
    display: none;
}

.invisible {
    visibility: hidden;
}

.center {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flex-sb {
    display: flex;
    justify-content: space-between;
}
.flex-sbc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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);
}
.alert a {
    color: white;
}

.btn {
    padding: 10px 25px;
    color:white;
    border-radius: 10px;
    font-weight: bold;
    background: #2569a8;
    line-height: 1;
    text-transform: uppercase;
    font-size: 14px;
}

.form-control {
    padding: 10px 20px;
    border-radius: 10px;
    border:1px solid #ccc;
    background:white;
    color: #666;
}

.gradient-blue {
    background: radial-gradient(
        circle at center,
        var(--blue) 0%,
        var(--blue) 50%,
        var(--blue-dark) 100%
    );
}

#prev-btn {
    background-color: #CCC!important;
}

@media (max-width:991px) {
    .flex-sb, .flex-sbc {
        flex-direction: column;
        gap:20px;
    }
    .flex-sb img, .flex-sbc img {
        max-width: 100%!important;
        height: auto;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.header__top {
    background: var(--blue-dark);
}
.header__top .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.header__top-link {
    font-size: 16px;
    font-weight: bold;
    color:var(--white);
    text-transform: uppercase;
}
.header__top-link:hover {
    color: var(--blue-light);
}
.header__social-list {
    list-style: none;
    display: flex;
    gap:5px;
    margin: 0 30px 0 0;
}
.header__social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color:white;
    font-size: 16px;
    font-weight: bold;
}
.header__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width:32px;
    height: 32px;
    border:1px solid var(--white);
    border-radius: 50%;
}
.header__social-item:first-child {
    margin-right: 20px;
}
.header__social-item:first-child .header__social-link {
    border: none;
}
.header__social-link img {
    max-width:100%;
}

.header__search {
    display: flex;
}
.header__search input {
    padding: 6px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 200px;
    font-size: 16px;
    background: white;
    
}
.header__search button {
    border: none;
    background-color: white;
    border-radius: 0 5px 5px 0;
    padding: 0 5px;
    cursor: pointer;
}
.header__main .container {
    padding: 0;
}
.header__logo {
    display: block;
    margin: 0!important;
}
.header__logo img {
    width: 250px;
    margin-bottom:10px;
}


.header__left {
    position: relative;
}
.header__left::after {
    display: none;
}

.header__right {
    background: none;
}

@media (max-width:991px) {
    .header__top .container {
        flex-direction: column;
        gap:20px;
    }
    .header__main .flex-sbc {
        flex-direction: row;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.menu__list {
    list-style: none;
    display: flex;
    gap: 10px;
    margin:0;
}
.menu__toggle span, .menu__toggle::before, .menu__toggle::after {
    background-color: white!important;
}
.menu__item {
    padding: 5px 15px;
}
.menu__link {
    display: flex;
    align-items: center;
    gap:0px!important;
    font-weight: bold;
    font-size: 15px;
    white-space: nowrap;
    color:white;
}
.menu__link:hover {
    color: var(--blue-light);
}
.menu__link .menu__down-arrow {
    transform: rotate(0deg);
}

.has-dropdown {
    position: relative;
    border: 1px solid var(--blue-light);
    background: var(--blue-dark);
    border-radius: 10px;  
}
.has-dropdown:hover {
    cursor: pointer;
    background-color: var(--white);
    border-color: var(--white);
}
.has-dropdown:hover .menu__link {
    color: var(--blue)!important;
}
.menu__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--blue-light)!important;
    padding: 20px 0;
    border-radius:10px;
    display: none;
    min-width: 200px;
    z-index: 10;
    list-style: none;
}
.menu__dropdown.visible {
    display: block;
}
.menu__dropdown li {
    font-size: 14px;
}
.menu__dropdown-item {
    padding: 5px 20px;
    cursor: pointer;
    color:white;
}
.menu__dropdown-item:hover {
    background-color: white;
    color: var(--blue);
    font-weight: bold;
}

.menu__dropdown-link {
    color:white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.menu__dropdown-link a {
    color: white;
}
.menu__dropdown-item:hover .menu__dropdown-link > * {
    color:var(--blue);
}
.menu__dropdown-submenu {
    position: absolute;
    top:0px;
    left: 100%;
    margin-left:10px;
    padding:20px 0;
    background: var(--blue-light);
    border-radius: 10px;
    white-space:  nowrap;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.menu__dropdown-submenu-item {
    padding: 5px 20px;
}
.menu__dropdown-submenu-item:hover {
    background-color: none;
}
.menu__dropdown-submenu-item:hover .menu__dropdown-submenu-link {
    font-weight: bold;
    color: var(--blue-dark);
}
.menu__dropdown-submenu-link {
    color: white;
    font-weight: normal;
}

.html-arrow {
    font-size: 25px;
    margin-top:-5px;
    margin-left: 15px;
}
.menu__dropdown-item:not(:has(> ul)) .html-arrow {
  display: none;
}

.menu__toggle{
    display:none;
    justify-content:center;
    align-items:center;
    position:relative;
    margin-left:20px;
    width:30px;
    height:30px;
    background:none;
    border: 0;
}
.menu__toggle span,.menu__toggle::before,.menu__toggle::after{
    content:"";
    position:absolute;
    border-radius:5px;
    width:70%;
    height:3px;
    background-color:white;
    color:transparent
}
.menu__toggle::before{
    margin-top:-12px
}
.menu__toggle::after{
    margin-top:12px
}
.menu__toggle--close{
    display:block;
    position:fixed;
    top:20px;
    right:20px;
    z-index:10;
}
.menu__toggle--close span{
    display:none;
}
.menu__toggle--close::before,
.menu__toggle--close::after{
    background-color:white!important;
}
.menu__toggle--close::before{
    margin-top:0;
    transform:rotate(-45deg);
}
.menu__toggle--close::after{
    margin-top:0;
    transform:rotate(45deg);
}
.menu--expanded{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    justify-content:center;
    background-color:var(--blue);
    z-index:10;
    overflow:hidden;
    transition:all 250ms ease;
}
.menu--expanded .menu__list{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.menu--expanded .menu__item{
    padding:20px;
    height:fit-content;
    width:fit-content;
    flex-direction:column;
    align-self:center;
}
.menu--expanded .menu__link{
    color: var(--white);
}
.menu--expanded .menu__link:hover{
    color:white;
    justify-self:center;
}
.menu--expanded .menu__dropdown{
    position:relative;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius:10px;
    padding:20px;
    max-width:100%;
    height:250px;
    gap:20px;
    overflow-y:scroll;
    transition:all 250ms ease;
}

@media (max-width:991px){
    .menu__toggle{
        display:flex;
        margin-right: 10px;
    }
    .menu__list{
        display:none;
        padding: 0;
        height: 100%;
    }
    
    #open-products img {
        display:block;
    }
   
    .menu__item {
        padding-top: 10px!important;
        padding-bottom: 10px!important;
    }
    .menu--expanded .menu__item.has-dropdown:hover {
        border: none;
        background: none;
    }
    .has-dropdown:hover .menu__link {
        color: var(--white)!important;
    }
    .menu--expanded,
    .menu__toggle--close {
        z-index: 14;
    }
    .menu__toggle--close::before,
    .menu__toggle--close::after {
        background:white;
    }
    .menu__dropdown {
        left:0;
        transform: translateX(-50%);
        width:94vw;
        padding-top: 40px;
        margin-top:0;
        margin-bottom: 20px;
    }
    .menu__dropdown-item {
        padding: 10px 0!important;
    }
    .menu__dropdown-item:hover {
        background: none;
    }
    .menu__dropdown-link {
        padding-left: 10px;
    }
    .menu__dropdown-submenu {
        position:unset;
        margin:0;
        padding:0;
        border-radius:3px;
        white-space: wrap;
    }
    .menu__dropdown-submenu.visible {
        padding:10px;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.slogan {
    padding:30px 0;
}
.slogan__title {
    color:white;
    font-size: 32px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width:991px) {
    .slogan {
        padding: 20px 30px;
    } 
    .slogan .container {
        padding: 0;
    }  
    .slogan__title {
        margin: 0;
        font-size: 18px;
    }
}

.offers-category {
    padding: 50px 0;
    background-color: white;
}
.offers-category__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:30px;
    font-size: 42px;
    font-weight: bold;
    color:var(--blue-light);
    text-align: center;
    margin-bottom: 50px;
}
.offers-category__list {
    list-style: none;
    display: flex;
    gap:30px;
    padding-left: 0px;
}
.offers-category__item {
    height: 100%;
}
.offers-category__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap:25px;
    height: 100%;
}
.offers-category__item img {
    max-width: 150px;
}
.offers-category__item-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    color:var(--dark);
    margin: 0;
}
.offers-category__item-description {
    font-size: 16px;
    color:var(--dark);
    font-weight: 100;
    line-height: 1.4;
    margin: 0;
}
.offers-category__item-btn {
    margin-top: auto;
}

@media (max-width:991px) {
    .offers-category {
        padding: 30px 0;
    }
    .offers-category__title {
        font-size: 28px;
    }
}
/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.baixar-catalogo {
    padding: 10px 0 20px 0;
}
.baixar-catalogo .container {
    padding: 0;
}
.baixar-catalogo img {
    margin-right: 30px;
}
.baixar-catalogo h2 {
    font-size: 42px;
    color:white;
    font-weight: 300;
}
.baixar-catalogo h2 a {
    color: var(--blue-light);
    font-weight: bold;
}

@media (max-width:991px) {
    .baixar-catalogo {
        padding: 20px 0;
    }
    .baixar-catalogo h2 {
        font-size: 20px;
        text-align: center;
        margin: 0;
    }
    .baixar-catalogo img {
        width: 40px;
        margin: 0 10px 0 0;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.artigo {
    padding: 50px 0;
}
.artigo .container {
    padding: 0;
}

.artigo__title {
    font-size: 68px;
    color:var(--blue-light);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}
.artigo__title span {
    display: block;
    color: #999;
    font-size: 32px;
}
.artigo__text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--dark);
    text-align: justify;
}
.artigo__btn {
    margin-top: 20px;
}
.artigo__hero {
    display: flex;
    justify-content: center;
    align-items: center;
}
.artigo__hero img {
    max-width: 600px;
}

@media (max-width:991px) {
    .artigo {
        padding: 30px 20px;
    }
    .artigo__title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .artigo__title span {
        font-size: 18px;
    }
    .artigo__text p {
        font-size: 16px;
    }
    .artigo__hero img {
        max-width: 100%;
        margin-top: 20px;
    }
}
/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.mercado {
    background: #333 url(../../image/v3/mercado-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 20px 0;
}
.mercado .container {
    padding: 0;
}
.mercado .flex-sb {
    gap:100px;
    align-items: center;
}
.mercado .flex-sb > * {
    width: 100%;
}
.mercado .artigo__content {
    background-color: white;
    padding: 50px 80px;
    border-radius: 20px;
}
.mercado .artigo__title {
    font-size: 44px;
}
.mercado__hero img {
    max-width: 100%;
    margin-left: -40px;
}

@media (max-width:991px) {
    .mercado {
        padding: 10px 10px 50px 10px;
    }
    .mercado .flex-sb {
        gap:30px;
    }
    .mercado__hero img {
        margin: auto;
    }
    .mercado .artigo__content {
        padding: 30px;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.parceiros .flex-sb {
    gap:100px;
    align-items: center;
}
.parceiros .flex-sb > * {
    width: 100%;
}
.parceiros__list {
    display: grid;
    padding: 130px 20px;
    border-radius: 10px;
    background: white;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    height: 100%;
}
.parceiros__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.parceiros__item img {
    max-width: 100%;
    max-height: 100px;
}

@media (max-width:991px) {
    .parceiros .flex-sb {
        gap:30px;
        flex-direction: column;
    }
    .parceiros__list {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 10px;
    }
}
/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.catalogo {
    background: #333 url(../../image/v3/catalogo-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
}
.catalogo .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap:50px;
}
.catalogo__content {
    width: 50%;
}
.catalogo h2 {
    font-size: 48px;
    color:white;
    font-weight: bold;
    margin-bottom: 30px;
}
.catalogo p {
    font-size: 24px;
    line-height: 1.3;
    color:white;
    margin-bottom: 30px;
}
.catalogo__form {
    width: 50%;
    background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
    padding: 0 20px 20px 20px;
    border-radius: 30px;
}
.catalogo__form h3 {
    font-size: 44px;
    color:white;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.catalogo__form h3 span {
    color: var(--blue-light);
}
.catalogo__form fieldset {
    border: none;
    margin-bottom: 15px;
}
.catalogo__form label {
    display: block;
    font-size: 18px;
    color:white;
    margin-bottom: 5px;
    font-weight: bold;
}
.catalogo__form input {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-bottom: 10px;
}
.catalogo__form button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background: var(--blue);
    color:white;
    cursor: pointer;
    display: block;
}

@media (max-width: 991px) {
    .catalogo {
        padding: 30px 10px;
    }
   .catalogo .container {
        flex-direction: column;
        gap:30px;
    }
    .catalogo__content, .catalogo__form {
        width: 100%;
    }
    .catalogo h2 {
        font-size: 32px;
    }
    .catalogo p {
        font-size: 18px;
    }
    .catalogo__form h3 {
        font-size: 32px;
    } 
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.blog {
    background: white;
}
.blog .flex-sb {
    gap:100px;
    align-items: center;
}
.blog .artigo__hero {
    position: relative;
    width: 100%;
    background: #eaeaea;
    padding:20px;
    overflow: hidden;
    border-radius: 10px;
}
.blog__banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}
.blog__banner img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
}
.blog__prev {
    position: absolute;
    top: 125px;
    left: 30px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.blog__next {
    position: absolute;
    top: 125px;
    right: 30px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}
.blog__title {
    font-size: 24px;
    color:var(--dark-light);
    font-weight: bold;
    margin: 20px 0;
}
.blog__subtitle {
    font-size: 22px;
    color:var(--blue-light);
    font-weight: bold;
    margin-bottom: 20px;
}
.blog__excerpt {
    font-size: 16px;
    color:var(--dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
.blog__link {
    margin-top: auto;
}
/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.category-breadcrumb {
    position: relative;
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    border-radius: 0;
    height: 300px;
    display: flex;
    align-items: center;
}
.category-breadcrumb::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to right, 
        black 0%,
        black 5%,
        transparent 20%,
        transparent 80%,
        black 95%,
        black 100%
    );
}
.category-breadcrumb .container {
    position: relative;
    z-index: 2;
}
.category-breadcrumb__title {
    font-size: 36px;
    color:white;
    font-weight: bold;
    margin-bottom: 10px;
}

.breadcrumb2 {
    background: var(--black);
    padding: 10px 0;
}
.breadcrumb2 .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb2 ul {
    list-style: none;
    display: flex;
    gap:10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: white;
}
.breadcrumb2 ul li::after {
    content: ">";
    margin-left: 10px;
}
.breadcrumb2 ul li:last-child::after {
    content: "";
    margin: 0;
}


/* ---------------------------------*/
/* ---------------------------------*/
/* ---------------------------------*/
.category {
    padding: 60px 0;
    background: white;
}
.category .container {
    padding: 0;
}
.category-header {
    padding-top: 40px;
    background-color: white;
}
.category-header__parent, 
.category-header__parent a {
    font-size: 24px;
    font-weight: bold;
    color: var(--blue-light);
}
.category-header__title {
    font-size: 48px;
    color: var(--blue-light);
    font-weight: bold;
    margin: 0;
}
.category-header__filter {
    display: flex;
    gap: 10px;
}
.category-header__filter select {
    border: 1px solid var(--blue-light);
    background: white;
    color: var(--blue-light);
    font-weight: bold;
    width: 100px;
    padding-inline: 10px;
}
.category__list {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px;
    list-style: none;
    padding: 0;
}
.category__item {

}
.category__item-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
}
.category__item-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.category__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}
.category__item-title {
    text-align: left;
    font-size: 18px;
    color:var(--dark);
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
}
.category__item-text {
    color:#666!important;
    line-height: 1.5;
    padding-top:20px;
}
.category__item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category__item-consulta {
    font-size: 20px;
    font-weight: bold;
    color: var(--blue-light);
}
.category__item-link {
    padding:10px 20px;
    background-color: var(--blue2);
    color:white;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}
.category__item-link:hover {
    background-color: var(--blue-light);
    color: white!important;
}
.category__item-link--saiba-mais {
    width: fit-content;
}

.category-faq {
    margin-bottom: 50px;
}
.category-faq-title {
    font-size: 32px;
    color: var(--blue-light);
    margin-bottom: 20px;
    font-weight: bold;
}
.category-faq p b, .category-faq p strong {
    font-size: 22px;
    color: var(--blue-light);
    margin-bottom: 15px;
}
.category-faq p > b::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius:2px;
    border-left: 5px solid var(--blue-light);
    border-bottom: 5px solid var(--blue-light);
    transform: rotate(135deg);
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 10px;
}
.category-faq p.active > b::after {
    content: ""; 
    transform: rotate(-45deg);
}
.category-faq p {
    cursor: pointer;
    display: flex;
    align-items: center; 
    color: var(--dark);
    line-height: 1.4;
    font-size: 16px;
}
.category-faq p:not(:has(> b:first-child)) {
    display: none;
    margin-bottom:20px;
}

@media (max-width:991px) {
    .category-header__title {
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .category {
        padding:50px 20px;
    }
}
/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.search-bar {
    background-color: var(--dark);
    color:white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
}
.search-bar > * {
    padding: 20px;
}
.search-bar #input-search {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    width: 250px;
}
.search-bar select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
    background-color: var(--blue-light);
    border-color: var(--blue-light);
    color: white;
    width: 200px;
}

@media (max-width: 991px) {
    .search-bar {
        flex-direction: column;
    }
    .search-bar > * {
        padding: 10px;
    }
    .search-bar #input-search {
        width: 200px;
    }
    .search-bar select {
        width: 100px;
    }
    .checkbox-inline {
        margin-left: 0!important;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.pagination li {
    background: white!important;
    border-radius: 5px!important;
}
.pagination li span,
.pagination li a {
    border: 1px solid var(--blue-light)!important;
    color: var(--blue-light)!important;
    background: none!important;
    border: 0;
    border-radius: 8px!important;
    font-size: 16px;
}
.pagination li.active span {
    border-width: 2px!important;
    font-weight: bold;
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.footer {
    background: var(--blue-dark);
    color:white;
}
.footer__main {
    padding: 50px 0;
}
.footer h2 {
    font-size: 24px;
    color:var(--white);
    margin-bottom: 20px;
    font-weight: bold;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__address {
    background: url('../../image/v3/footer-map.png') no-repeat bottom left;
    padding-left: 130px;
}
.footer__address address {
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    font-size: 14px;
}
.footer__links li {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}
.footer__contacts {
    background: url('../../image/v3/footer-phones.png') no-repeat bottom right;
    font-size: 16px;
    text-align: right;
    padding-right: 130px;
}
.footer__contacts li {
    margin-bottom: 5px;
}

.footer__copyright {
    background: black;
    padding:50px 0;
    font-size: 18px;
    color: var(--white);
}
.footer__copyright p {
    margin:0;
}

@media (max-width:991px) {
    .footer__address {
        background:none;
        padding: 0;
        text-align: center;
    }
    .footer__links {
        margin-bottom: 30px;
        text-align: center;
    }
    .footer__contacts {
        background:none;
        padding: 0;
        text-align: center;
    }
    .footer__copyright {
        text-align: center;
    }
}

/* --------------------------------------*/
/* --------------------------------------*/
/* --------------------------------------*/
.circle-btn {
  background-color: var(--blue-light); 
  border: none;
  border-radius: 800px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.circle-btn:hover {
  background-color: var(--blue);
}
.arrow {
  position: relative;
}
.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-style:solid;
  border-color: white;
  border-width: 6px 0 0 6px;
  border-radius: 3px; 
  transform: translate(-50%, -50%) rotate(-45deg);
}
.arrow--right::before {
    border-width: 0 6px 6px 0;
}

@media (max-width:991px) {
    .circle-btn {
        width: auto;
        height: auto;
        padding:13px;
    }
    .arrow::before {
        width: 8px;
        height: 8px;
        border-radius: 2px;
        border-width: 4px 0 0 4px;
    }
    .arrow--right::before {
        border-width: 0 4px 4px 0;
    }
}

/* FIXES */
[id*="information"], 
[id*="checkout"], 
[id*="product"].container {
    background-color: white;
}