/* Variables */

:root {
    --color-blue: #1F4B60;
    --color-black: #000;
    --color-white: #fff;
    --color-grey: rgba(31, 75, 96, 0.20);
    --color-green: #2EF332;
    --color-pink-light: #DE487C;
    --color-pink: #901663;
    --font-size-default: 18px;
    --line-height-default: 24px;
}

/* General */

html {
    overflow-x: hidden;
}
body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-size: var(--font-size-default);
    line-height: var(--line-height-default);
    font-weight: 400;
    font-style: normal;
    color: var(--color-blue);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-blue);
    font-weight: 400;
}

h1 {

    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 16px;
}
h2 {
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
h3 {
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 166.667% */
}
h4 {
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 150% */
}

strong {
    font-weight: 700;
}

p {
    margin-bottom: 16px;
}

a {
    transition: all .3s ease;
    color: var(--color-blue);
}

img {
    max-width: 100%;
    height: auto;
}

img.radius {
    border-radius: 8px;
}

select:focus, :focus {
    outline: 0;
    box-shadow: none;
}

.padding-tb {
    padding-top: 88px;
    padding-bottom: 88px;
}
.padding-t {
    padding-top: 88px;
}
.padding-b {
    padding-bottom: 88px;
}
.pt-88 {
    padding-top: 88px;
}

.button {
    background-color: var(--color-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 55px;
    padding: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    font-size: 20px;
    line-height: 18px;
    display: table;
}
.button.white {
    background-color: var(--color-white);
    color: var(--color-blue);
}
.button-login {
    margin-right: 16px;
    line-height: 18px;
    text-decoration: none;
}
.button-login img {
    margin-right: 8.5px;
}

.button-arrow {
    position: relative;
    border-radius: 8px;
    border: 3px solid var(--color-blue);
    padding: 5.517px 11.034px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    color: var(--color-blue);
    text-decoration: none;
}
.button-arrow:after {
    content: '';
    background: url(../img/ico-arrow.svg) center center no-repeat;
    width: 16px;
    height: 12px;
    display: inline-block;
}
.button-arrow:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}
.button-arrow:hover:after {
    filter: brightness(0) invert(1);
}

.color-pink {
    color: var(--color-pink);
}

.bg-grey {
    background-color: var(--color-grey);
}



/* Header  */
header {
    width: 100%;

    position: relative;
    z-index: 10;
}
header .container {

}
header .navbar-expand-lg {
    padding-top: 0;
    padding-bottom: 0;
}
header.fix {
    position: fixed;
    z-index: 10;
    transform: translateY(-100%);
    transition: transform .3s ease;
    top: 0;
    border-bottom: var(--color-grey) 1px solid;
    background-color: var(--color-white);
}
header.fix.active {
    transform: translateY(0);
}
header .navbar-expand-lg .navbar-nav > .nav-item {
    padding-right: 16px;
    padding-left: 16px;
}
header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link {
    padding: 32px 0;
    position: relative;
}
header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #901663;
    transform: scaleX(0);
    transition: transform .3s ease;
    bottom: 25px;
    left: 0;
}
header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link:hover:before {
    transform: scaleX(1);
}
header .navbar-expand-lg .nav-item > .nav-link {
    color: var(--color-blue);
    font-size: 18px;
}
header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link.dropdown-toggle {
    padding-right: 15px;
}
header .dropdown-toggle::after {
    position: absolute;
    right: -5px;
    top: 42px;
}
header .button {
    padding: 8px 16px;
    line-height: 18px;
}

/* Home */


/* Intro */
.intro-home h1 {
    max-width: 800px;
    margin: 0 auto 16px;
    text-align: center;
}
.intro-home p {
    max-width: 506px;
    margin:0 auto 36px;
}
.intro-home .button {
    margin: 0 auto 56px;
    display: table;
}
.intro-home .img-intro {
    position: relative;
}
.intro-home .img-intro .bg {
    position: absolute;
    right: -447px;
    top: -668px;
}
.intro-home .img-intro .radius {
    position: relative;
}

/* brands */
.brands h2 {
    font-weight: 400;
}
.brands h2 strong {
     color: var(--color-pink);
     font-weight: 700;
}
.brands .owl-carousel {
    margin-top: 48px;
}
.brands .owl-carousel .item img {
    display: table;
    margin: 0 auto;
    width: auto;
}
.brands .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* banner-full */
.banner-full {
    position: relative;
}
.banner-full img {
    width: 100%;
}
.banner-full.esg .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
}
.banner-full.esg .text {
    max-width: 460px;
}
.banner-full.esg h2 {
    color: var(--color-white);
    margin-bottom: 0;
}
.banner-full.esg hr {
    border: none;
    height: 4px;
    background-color: var(--color-pink-light);
    width: 100%;
    opacity: 1;
    margin-top: 5px;
    margin-bottom: 20 px;
}
.banner-full.esg p {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
}

/* tabs-vertical */
.tabs-vertical {
    position: relative;
    z-index: 1;
}
.tabs-vertical h2 {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}
.tabs-vertical h3 {
    margin-bottom: 8px;
    color: var(--color-blue);
}
.tabs-vertical p {
    margin-bottom: 26px;
}
.tabs-vertical .sticky-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 240px 1fr;
}
.tabs-vertical .tabs-container {
    border: 3px solid rgb(212 219 223);
    border-radius: 8px;
    overflow: hidden;
}
.tabs-vertical .tabs-container .nav-link {
    width: 240px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-blue);
    font-weight: 700;
    border-radius: 0;
    background: #fff;
    border: 3px solid rgb(212 219 223);
    border-bottom: 0;
    border-left: 0;
    flex: 1; /* Distribui igualmente o espaço */
}
.tabs-vertical .tabs-container .nav-link:first-child {
    border-top: 0;
}
.tabs-vertical .tabs-container .nav-pills .nav-link.active, .tabs-vertical .tabs-container .nav-pills .show>.nav-link {
    background-color: rgb(212 219 223);
    color: var(--color-blue);
}
.tabs-vertical .tabs-container .tab-content {
    padding: 24px 24px 24px 48px;
    background-color: rgb(212 219 223);
    color: var(--color-blue);
}
.tabs-vertical .tabs-container .tab-content .button {
    display: table;
    margin-top: 40px;
}

/* slider-tabs */
.slider-tabs {
    position: relative;
}
.slider-tabs h2 {
    margin-bottom: 48px;
    font-weight: 400;
    text-align: center;
    position: relative;
}
.slider-tabs h2 strong {
    color: var(--color-pink);
    font-weight: 700;
}
.slider-tabs .carousel .buttons.carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 0 48px;
}
.slider-tabs .carousel .buttons button {
    background: none;
    border: none;
    padding: 24px 80px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    color: var(--color-blue);
    border-bottom: 3px solid var(--color-blue);
    opacity: .4;
    transition: opacity .3s ease;
    text-indent: unset;
    margin: 0;
    width: auto;
    height: auto;
}
.slider-tabs .carousel .buttons button.active {
    opacity: 1;
}
.slider-tabs .bg {
    position: absolute;
    left: -180px;
    top: -500px;
}

/* numbers */
.numbers h2 {
    margin-bottom: 48px;
}
.numbers .box {
    width: 284px;
    height: 284px;
    border-radius: 8px;
    /* border: 3px solid var(--color-pink); */
    margin:0 auto 32px;
    display: flex;
    align-items: center;
    padding: 31px;
    background-color: #CBD9E0;
}
.numbers .box p {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 8px;
}
.numbers .box .num {
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}
.numbers .box .num span {
    color: var(--color-pink);
}
.numbers .box img {
    margin-bottom: 28px;
    display: block;
}
.numbers .box-big {
    padding: 32px 48px 65px;
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.numbers .box-big h2 {
    color: var(--color-white);
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 12px;
}
.numbers .box-big img {
    margin-bottom: 40px;
}
.numbers .box-big .num {
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px; /* 111.111% */
    color: var(--color-white);
}

/* slider-numbers */
.slider-numbers .container {
    position: relative;
}
.slider-numbers .box {
    height: 284px;
    display: flex;
    align-items: center;
    padding: 22px 29px;
    border-radius: 8px;
    border: 3px solid var(--color-blue);
}
.slider-numbers .box img {
    margin-bottom: 24px;
}
.slider-numbers .box h3 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
}
.slider-numbers .box p {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    color: rgba(31, 75, 96, 0.80);
    max-width: 380px;
}
.slider-numbers .box:first-child {
    margin-bottom: 32px;
}
.slider-numbers .box-big {
    padding: 72px 30px 30px 50px;
}
.slider-numbers .box-big img {
    margin-bottom: 32px;
}
.slider-numbers .box-big p {
    color: var(--color-white);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 32px;
}
.slider-numbers .box-big .name {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 166.667% */
    color: var(--color-green);
}
.slider-numbers .box-big .name span {
    margin-top: 8px;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.slider-numbers .carousel-control-next-icon {
    background: none;
    width: 49px;
    height: 48px;
}
.slider-numbers .carousel-control-prev-icon {
    background: none;
    width: 49px;
    height: 48px;
}
.slider-numbers .carousel-control-next {
    right: -140px;
    opacity: 1;
}
.slider-numbers .carousel-control-prev {
    left: -140px;
    opacity: 1;
}
.slider-numbers .button {
    margin: 45px auto 0;
    display: table;
}

.slider-numbers .bg-left {
    position: absolute ;
    top: -240px;
    left: -580px;
}
.slider-numbers .bg-right {
    position: absolute ;
    top: -240px;
    right: -270px;
}


/* blog-grid */
.blog-grid h2 {
    margin-bottom: 16px;
    font-weight: 400;
    text-align: center;
    position: relative;
}
.blog-grid .text-center {
    max-width: 540px;
    margin: 0 auto 48px;
}
.blog-grid .text-center p {
    margin-bottom: 0;
}
.blog-grid h2 strong {
    color: var(--color-pink);
    font-weight: 700;
}
.box-thumb-post {
    max-width: 381px;
    padding: 16px;
    border-radius: 8px;
    overflow: hidden;
    background: url(../img/bg-thumb-post.webp) center center/cover no-repeat;
    height: 100%;
}
.col-lg-4:nth-child(3n+2) .box-thumb-post {
    margin: 0 auto;
}
.col-lg-4:nth-child(3n) .box-thumb-post {
    margin: 0 0 0 auto;
}
.box-thumb-post.big {
    max-width: 830px;
}
.box-thumb-post img {
    border-radius: 8px;
    margin-bottom: 24px ;
}
.meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--color-white);
    margin-bottom: 16px;
}
.meta > div {
    padding: 4px 8px;
    border-radius: 8px;
    background-color: var(--color-pink-light);
}
.meta .time {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta .time::before {
    content: '';
    width: 17px;
    height: 16px;
    background: url(../img/ico-clock.svg) center center no-repeat;
    display: inline-block;
}
.meta-single-post {
    padding-top: 16px;
    border-top: 3px solid var(--color-blue);
}

.box-author {
    display: grid;
    grid-template-columns: 192px 1fr;
    gap: 32px;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    border-radius: 8px;
    border: 3px solid var(--color-blue);
    background: #F5F5F5;
    padding: 16px;
}
.box-author.big {
    grid-template-columns: 256px 1fr;
    gap: 48px;
    padding: 24px;
}
.box-author img {
    border-radius: 8px;
}
.box-author .name p, .box-author .name h3 {
    margin-bottom: 0;
}
.box-author .name p.autor {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}
.box-author .name a {
    text-decoration: none;
}
.box-author.big .name h3, .box-author.big .name p.autor {
    font-size: 32px;
    line-height: 51px;
}
.box-author.big  .name p {
    font-size: 24px;
    line-height: 38px;
}
.box-author .bio p {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 177.778% */
    margin-bottom: 16px;
}


.box-thumb-post h3 {
    color: var(--color-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 8px;
}
.box-thumb-post a {
    text-decoration: none;
}
.box-thumb-post p {
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 0;
}
.blog-grid .button {
    margin: 48px auto 0;
    display: table;
}

/* banner-blog */
.banner-blog {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
}
.banner-blog h1 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
.banner-blog p {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 32px;
    display: block;
}
.banner-blog .button {
    display: table;
}

/* category-featured */
.category-featured .grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    justify-content: center;
    flex-wrap: wrap;
}
.category-featured a {
    background-color: var(--color-white);
    border: 3px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: 8px;
    padding: 5.5px 11px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    text-decoration: none;
}
.category-featured a:hover, .category-featured a.active {
    color: var(--color-white);
    background-color: var(--color-blue);
}

/* menu-anchor */
.menu-anchor {
    margin-top: 26px;
}
.menu-anchor a {
    display: block;
    font-size: 20px;
    padding-left: 25px;
    border-left: 3px solid var(--color-white);
    margin-bottom: 32px;
    text-decoration: none;
    font-weight: 700;
}
.menu-anchor a.active, .menu-anchor a:hover {
    color: var(--color-black);
    border-color: var(--color-black);
}

/* sidebar */
.sidebar .banner {
    border-radius: 8px;
    box-shadow: 8px 8px 32px #DDDDDD80;
}
.sidebar .posts .box {

    background: #F5F5F5;
    padding: 15px;
    box-shadow: 8px 8px 32px #DDDDDD80;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 24px;
    align-items: center;
}

.sidebar .posts .box img {
    border-radius: 8px;
}
.sidebar .posts .box a {
    text-decoration: none;
}
.sidebar .posts .box h4 {
    line-height: 26px;
}
/* awards */

.awards {
    padding: 50px 0;
    background: var(--color-grey) url(../img/bg-premios-e-selos.svg) 300px bottom no-repeat;
}
.awards .text {
    max-width: 550px;
}

/* form */
.form.bg {
    background-image: url(../img/bg-form.webp);
    background-position: 80% top;
    background-repeat: no-repeat;
}

.form  #rd-row-m8x84u57 .bricks--column > div {
    padding: 0;
}

/* banner-text */
.banner-text .col-lg-6 {
    display: flex;
    align-items: center;
    min-height: 480px;
}
.banner-text .text {
    padding: 80px;
    color: var(--color-white);
    max-width: 600px;
}
.banner-text .text h2 {
    color: var(--color-white);
    margin-bottom: 24px;
}
.banner-text .text p {
    margin-bottom: 32px;
}

/* banner-post */
.banner-post {
    position: relative;
}
.banner-post img {
    border-radius: 8px;
}
.banner-post .box {
    max-width: 680px;
    padding: 32px;
    text-align: center;
    margin: -100px auto 0;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 8px 8px 32px 0px rgba(221, 221, 221, 0.50);
    position: relative;
}
.banner-post .box .meta {
    justify-content: center;
}

/* default-text */
.default-text p {
    line-height: 40px;
}
.default-text p, .default-text h2, .default-text h3, .default-text h4, .default-text h5, .default-text h6 {
    margin-bottom: 32px;
}

/* breadcrumbs */
.breadcrumbs {
    margin-bottom: 16px;
}
.breadcrumbs .grid {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 8px;
}
.breadcrumbs .grid a {
    text-decoration: none;
}
.breadcrumbs .grid a:after {
    content: '';
    width: 7.41px;
    height: 12px;
    background: url(../img/ico-arrow1.svg);
    display: inline-block;
    margin-left: 8px;
}
.breadcrumbs .grid span {
    color: var(--color-pink-light);
}

/* Search */
.form-search {
    width: 100%;
    max-width: 368px;
    height: 40px;
    position: relative;
}
.form-search input {
    width: 100%;
    height: 100%;
    padding: 8px 36px 8px 16px;
    border-radius: 8px;
    border: 3px solid var(--color-blue);
    background-color: var(--color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.form-search button {
    background: url(../img/ico-search.svg) center center no-repeat;
    border: none;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.search-full {
    text-align: center;
}

.search-full form {
    max-width: 800px;
    height: 56px;
    margin: 0 auto;
}
.trash form {
    max-width: 630px;
}

/* trash */
.trash {
    position: relative;
    z-index: 1;
}
.trash .ico-trash {
    color: var(--color-blue);
    text-align: center;
    font-size: 224.345px;
    font-style: normal;
    font-weight: 900;
    line-height: 32.049px; /* 14.286% */
    letter-spacing: 8.012px;
}

/* .pagination-content */
.pagination-content {
    margin-top: 50px;
}
.pagination-content ul.pagination {
    justify-content: center;
    gap: 12px;
}
.pagination-content ul.pagination .page-link {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #7E7E7E;
    border-radius: 8px;
    background-color: var(--color-white);
    color: #7E7E7E;
}
.pagination-content ul.pagination .active>.page-link, .pagination-content ul.pagination .page-link.active, .pagination-content ul.pagination .page-link:hover {
    background-color: #7E7E7E;
    color: var(--color-white);
}


/* footer */
footer {
    background-color: var(--color-pink);
    padding-bottom: 24px ;
}
footer .logo {
    margin-bottom: 40px;
}
footer p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 40px;
    max-width: 340px;
}
footer .social {
    display: flex;
    align-items: center;
    gap: 16px;
}
footer h3 {
    color: var(--color-pink-light);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 40px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li a {
    color: var(--color-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 100% */
    display: block;
    margin-bottom: 18px;
    text-decoration: none;
}
footer .copy {
    margin-top: 130px;
    padding-top: 30px;
    color: var(--color-pink-light);
    text-align: center;
    border-top: 1px solid var(--color-white);
}
footer .copy a {
    text-decoration: underline;
    color: var(--color-white);
}


@media (min-width: 1300px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1304px;
    }
    /* header .container {
        max-width: 1344px;
    } */
}

@media (max-width: 1800px) {

}

@media (min-width: 992px) {

}

@media (max-width: 1500px) {
    .awards {
        background-position: 50px bottom;
    }
    .form {
        background-position: 95% top;
    }
}

@media (min-width: 1300px) {

}
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu,
    .dropend:hover > .dropdown-menu {
        display: block;
        margin-top: 0.125em;
        margin-left: 0.125em;
        padding: 5px 10px 14px;
    }
    .dropdown-menu {
        background: #fff;
        border-radius: 0 0 20px 20px;
        position: absolute;
        top: 84px;
        border: none;
        left: 0;
        width: 216px;
    }
}
@media screen and (min-width: 768px) {
}

@media screen and (min-width: 992px) {

}
@media (min-width: 1200px) {

}
@media (max-width: 1199px) {

}

@media (max-width: 991px) {
    .padding-tb {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .padding-t {
        padding-top: 50px;
    }
    .padding-b {
        padding-bottom: 50px;
    }
    .pt-88 {
        padding-top: 50px;
    }
    header .navbar-collapse {
        background: var(--color-blue);
        padding: 16px 0;
    }
    header .dropdown-toggle::after {
        right: 0;
        top: 17px;
    }
    header .navbar-nav .dropdown-menu {
        background: none;
        border: none;
        margin-top: 0;
        padding-top: 0;
    }
    header .navbar-toggler:focus {
        box-shadow: none;
        background-color: var(--color-blue);
    }
    header .navbar-toggler:focus .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }
    header .navbar-toggler.collapsed {
        background-color: var(--color-white);
        margin-bottom: 16px;
    }
    header .navbar-toggler.collapsed .navbar-toggler-icon {
        filter: none;
    }
    header .button {
        padding: 8px 16px;
        line-height: 18px;
        display: inline-block;
        font-size: 18px;
        background: var(--color-pink);
    }
    header .button-login {
        color: var(--color-white);
        margin: 26px;
        display: inline-block;
    }
    .button-login img {
        filter: brightness(0) invert(1);
    }
    header .navbar-expand-lg .nav-item .dropdown-menu .nav-link {
        color: var(--color-white);
        padding: 10px 10px 10px 20px;
    }
    header .container {
        padding: 0;
        max-width: 100%;
    }
    header .navbar-brand {
        margin-left: 30px;
        margin-bottom: 0;
        padding: 16px 0;
    }
    header .navbar-toggler {
        margin: 16px 30px 16px 0;
    }
    header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link {
        padding: 10px;
        color: var(--color-white);
    }
    header .navbar-expand-lg .navbar-nav > .nav-item > .nav-link:before {
        display: none;
    }
    .brands .owl-carousel .owl-stage {
        display: block;
    }
    .intro-home .img-intro .bg {
        top: -500px;
    }
    /* header .navbar-expand-lg {
        padding-top: 16px;
        padding-bottom: 16px;
    } */

    .tabs-vertical .tabs-container .tab-content .text .row {
        flex-direction: column-reverse;
    }
    .tabs-vertical .tabs-container .tab-content .text .row img {
        margin-bottom: 30px;
    }

    .numbers .bg {
        background: none !important;
    }
    .numbers .box {
        width: 100%;
    }
    .numbers .box-big {
        background-color: var(--color-pink);
        margin-bottom: 30px;
    }
    .slider-numbers .bg {
        background: none !important;
    }
    .slider-numbers .box-big {
        background-color: var(--color-blue);
        margin-top: 30px;
        padding: 50px;
    }
    .col-lg-4:nth-child(3n) .box-thumb-post, .box-thumb-post, .col-lg-4:nth-child(3n+2) .box-thumb-post {
        margin: 30px auto 0;
        display: table;
        height: auto;
    }
    .col-lg-4:first-child .box-thumb-post {
        margin-top: 0;
    }

    .awards {
        padding-bottom: 100px;
    }

    footer .copy {
        margin-top: 30px;
    }

    .col-lg-4:nth-child(3n) .box-thumb-post, .box-thumb-post, .col-lg-4:nth-child(3n+2) .box-thumb-post {
        margin: 0 auto !important;
    }
    .sidebar  {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {

    .banner-post {
        padding-top: 50px;
    }

    .breadcrumbs, .meta .time {
        display: none;
    }
    .banner-blog {
        height: auto;
        padding: 50px 0;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 32px;
        line-height: 32px;
    }

    h2 {
        font-size: 26px;
        line-height: 28px;
    }
    h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .banner-full {
        min-height: 0;
        height: auto;
        padding-top: 110px;
    }
    .banner-full img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        object-position: right;
        top: 0;
        left: 0;
    }
    .banner-full.esg .text {
        z-index: 1;
        position: relative;
        top: unset;
        left: unset;
        transform: none;
        padding: 0 30px;
    }
    .tabs-vertical .sticky-tabs {
        grid-template-columns: 1fr;
    }
    div#v-pills-tab {
        margin: 0 !important;
    }
    .tabs-vertical .tabs-container .nav-link {
        width: 100%;
    }
    .tabs-vertical .tabs-container .tab-content {
        padding: 30px;
    }
    .slider-tabs .carousel .buttons button {
        padding: 15px;
    }
    .numbers .box-big {
        padding: 30px;
    }
    .numbers .box-big h2 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .numbers .box-big .num {
        font-size: 36px;
    }
    .slider-numbers .box {
        height: auto;
    }
    .slider-numbers .box-big {
        padding: 30px;
    }
    .slider-numbers .box-big p {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 18px;
    }
    .slider-numbers .box-big .name {
        font-size: 20px;
    }
    .slider-numbers .box-big .name span {
        font-size: 16px;
        line-height: 24px;
    }
    .form.bg {
        background-image: none;
    }
    footer .copy a {
        display: block;
        margin: 5px 0;
    }
    footer .copy span {
        display: none;
    }
    .banner-text .text {
        padding: 30px;
    }

    .banner-post .box {
        margin-top: -20px;
        padding: 30px 10px;
    }
    .box-author {
        grid-template-columns: 1fr;
    }
    .box-author .bio {
        margin-top: 30px;
    }
    .sidebar .posts .box h4 {
        line-height: 30px;
    }
    .box-author.big {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .box-author.big .name h3, .box-author.big .name p.autor {
        font-size: 20px;
        line-height: 30px;
    }
    .box-author.big .name p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .box-author .bio p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 16px;
    }
    .box-author .bio img {
        width: 30px;
    }
    .trash .ico-trash {
        font-size: 40px;
    }
    .trash .ico-trash img {
        width: 100px;
    }
    .category-featured a {
        font-size: 16px;
    }

}
@media (max-width: 330px) {

}