::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

:root {
    --color-dark: #333;
    --primary-color3: #7b1315;
    --primary-color-2: #0875bb;
}

body {
    background: #0c0c0c;
}

.custom-cursor, .custom-cursor-dot {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
}

.custom-cursor {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.custom-cursor-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

html {
    background-color: #0c0c0c !important;
}

.absolute-footer {
    display: none !important;
}

#wrapper, #main {
    background: #0c0c0c !important;
}

ul, li {
    margin-bottom: 0px !important;
}

.row-0 {
    padding: 0px 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.row-5 {
    padding: 0px 10px !important;
}

.pd-5 {
    padding: 0px 5px 8px 5px !important;
}

.row-20 {
    padding: 0px 0px !important;
}

.pd-20 {
    padding: 0px 20px 20px 20px !important;
}

.pd-35 {
    padding: 0px 35px 20px 35px !important;
}

.row-7 {
    padding: 0px 7px !important;
}

.pd-7 {
    padding: 0px 7px 7px 7px !important;
}

.noPadding {
    padding-bottom: 0px !important;
}

.mr-1 {
    margin-right: 10px !important;
}

.mr-2 {
    margin-right: 20px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-4 {
    margin-right: 40px;
}

.mr-4 {
    margin-right: 50px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.button_style {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    text-align: center;
    min-width: 170px !important;
    padding: .5rem 1.5rem .5rem !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 9;
    border-radius: 99px;
    font-weight: 700;
    line-height: 1.5;
    font-size: .9375rem;
    border: 1px solid var(--primary-color) !important;
    text-transform: unset !important;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out !important;
}

.button_style:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.button_for_outline {
    background: transparent !important;
    border-color: #000 !important;
    color: #000 !important;
}

.button_for_outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.button_style:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/**footer*/
#footer {
    background: linear-gradient(0deg, black 1%, rgba(0, 0, 0, 0) 100%) !important;
}

/**pagination**/
.pagination {
    width: 100%;
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    border: 0 !important;
    background: transparent !important;
    border: 0;
    width: 20px;
    height: 20px;
    padding: 0px;
    line-height: 20px;
    font-weight: normal;
    color: #fff !important;
    display: inline-block;
    border-radius: 99px !important;
}

.pagination ul li a:hover, .pagination ul li span:hover {
    color: var(--primary-color);
    font-weight: normal !important;
}

.wp-pagenavi {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0 0;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    border: 0 !important;
    background: transparent !important;
    border: 0;
    width: 20px;
    height: 20px;
    padding: 0px;
    line-height: 20px;
    font-weight: normal;
    color: #fff !important;
    display: inline-block;
    border-radius: 99px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current, .pagination span.current {
    color: var(--primary-color) !important;
    font-weight: normal !important;
}

/**alert**/
.alert {
    position: relative;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.alert-success {
    color: #0f5132 !important;
    background-color: #d1e7dd !important;;
    border-color: #badbcc !important;;
}

.alert-danger {
    color: #842029 !important;
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

/**slide**/
.swiper-container {
    position: relative;
}

body .swiper-button-next, body .swiper-button-prev {
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .3s;
    transition: .3s;
    transform: translateY(-50%) !important;
    top: 50% !important;
    border-radius: 50% !important;
    color: #333 !important;
    margin: 0;
}

body .swiper-button-prev.swiper-button-disabled,
body .swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    content: '' !important;
    font-size: 18px;
    color: #fff;
}

body .swiper-button-next {
    right: -55px;
}

body .swiper-button-prev {
    left: -55px;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    display: none !important;
}

body .swiper-button-next i, body .swiper-button-prev i {
    color: #333 !important;
}

body .swiper-button-next img, body .swiper-button-prev img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

/**category**/
.entry-content {
    padding: 0 !important;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

.category-description p
.category-description ul li,
.category-description ol li,
.entry-content p,
.entry-content ul li,
.entry-content ol li {
    margin: 0 0 10px 0 !important;
}

.category-description ul,
.category-description ol,
.entry-content ul,
.entry-content ol {
    margin-left: 15px !important;
}

.category-description table,
.category-description table tr td,
.entry-content table,
.entry-content tr td {
    border-collapse: collapse;
    border: 1px solid #3333;
}

.category-description table tr td,
.category-description table tr th,
.entry-content tr td,
.entry-content tr th {
    padding: 10px;
    color: #fff !important;
}

.entry-content a, .category-description a {
    color: var(--primary-color) !important;
}


/**widget**/
.widget {
    width: 100%;
    background: rgb(240, 244, 255);
    padding: 20px;
}

.widget-title, span.widget-title, h4.filter-title {
    font-size: 20px !important;
    line-height: 24px !important;
    position: relative !important;
    margin: 0 0 30px 0 !important;
    text-transform: unset !important;
    width: 100% !important;
    display: block;
}

.is-divider.small {
    display: none;
}

.widget-title:after, span.widget-title:after, h4.filter-title:after {
    content: '';
    height: 2px;
    background: var(--primary-color);
    width: 30px;
    display: block;
    margin-top: 10px;
}

.widget-category ul li a {
    color: #333;
    font-size: 15px;
}

.widget-category ul li a:hover {
    color: var(--primary-color)
}

.widget-post-list .widget-post-item {
    width: 100%;
    margin-bottom: 25px;
}

.widget-post-list .widget-post-item:last-child {
    margin: 0;
}

.widget-post-list .widget-post-item {
    display: flex;
    flex-flow: wrap;
}


.widget-post-list .widget-post-item .widget-post-thumbnail {
    width: 100px;
    height: 80px;
}

.widget-post-list .widget-post-item .widget-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-list .widget-post-item .widget-post-content {
    width: calc(100% - 120px);
    padding: 0 0 0 10px;
}

.widget-post-list .widget-post-item .widget-post-content .widget-post-title a {
    display: inline-block;
    color: #000;
    font-weight: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    font-size: 18px;
    line-height: 26px;
}

.widget-post-list .widget-post-item .widget-post-content .widget-post-title a:hover {
    color: var(--primary-color2);
}

.widget-post-list .widget-post-item .widget-post-content .product-price {
    font-size: 13px;
}

.widget-post-list .widget-post-item .widget-post-content .product-price ins span {
    color: var(--primary-color) !important;
}

.widget-post-list .widget-post-desc {
    color: rgba(151, 149, 143);
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 10px 0 0 0;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**post item**/
.post-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem 1.75rem;
    background-color: #3c3d41;
    border: 1px solid #3c3d41;
    border-radius: 25px;
    box-shadow: 0 3px 6px #0003 !important;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.post-item .post-thumbnail {
    padding-top: 64.9572649573%;
    position: relative;
    overflow: hidden;
    margin-top: .5rem;
    border-radius: 5px;
}

.post-item .post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.post-item:hover .post-thumbnail img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

.post-item .post-content {
    padding: 1rem 0;
    text-align: center;
}

.post-item .post-content .post-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 80px;
}

.post-item:hover {
    background: #fff;
}

.post-item:hover .post-title {
    color: var(--color-dark)
}

.post-item .card__btn {
    margin-top: 50px;
}

.post-item .card__btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-width: 170px;
    padding: .75rem 1.5rem .65rem;
    text-align: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.post-item .card__btn time.card__period,
.post-item .card__btn span.card__btn-title {
    font-weight: 700;
    line-height: 1.5;
    font-size: .9375rem;
    color: #fff
}

.post-item .card__btn span.card__btn-title {
    position: absolute;
    inset: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #fff;
    opacity: 0;
    transition: color .3s ease-in-out, opacity .2s ease-in-out;
}

.post-item:hover .card__btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.post-item:hover .card__period {
    opacity: 0 !important;
}

.post-item:hover .card__btn-title {
    opacity: 1 !important;
}

.post-item .post-category {
    margin: .5rem auto 1rem;
    text-align: center;
    color: #fff;
    font-size: .9375rem;
}

.post-item .post-category i {
    color: var(--primary-color)
}

.post-item:hover .post-category {
    color: var(--color-dark);
}

.post-large {
    background: var(--primary-color3);
}

.post-large .post-thumbnail {
    padding-top: 49.6354166667%;
}

.post-large .post-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    display: flex;
}

.post-large .post-content .post-title {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 68%;
    max-width: 68%;
    text-align: left;
}

.post-large .post-content .post-footer {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 31%;
    max-width: 31%;
    display: flex;
    justify-content: flex-end;
}

.post-large .post-content .post-footer .card__btn {
    margin: 0;
}

.post-large .post-content .post-footer .card__btn {

}

.post-large .post-category i {
    color: #fff;
}

/**video**/
.home-herobanner {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.home-herobanner .home-herobanner__video > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

/**menu**/
#header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

.header-full-width .container {
    max-width: 95% !important;
    width: 95% !important;
}

#header .header__navigation {
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    text-align: right;
    margin-top: 15px;
}

#header .header__shortcuts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#header .menu--toggler .menu__group {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: auto;
    text-align: right;
}

#header .menu--toggler .menu__item {
    padding: 0 0 .65rem;
}

#header .menu--toggler .menu__link {
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(0, 0, 0, .2), 0 0 5px rgba(0, 0, 0, .2);
    transition: color .3s ease-in-out;
    font-size: 1.125rem;
    font-weight: 700;
}

#header .menu--toggler .menu__link:hover {
    color: #ffffff80;
}

.header-search {
    text-transform: uppercase;
}

.header-search .header-search__link {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, .2), 0 0 5px rgba(0, 0, 0, .2);
    transition: color .3s ease-in-out;
    font-size: 1.125rem;
    font-weight: 700;
}

.header-search .header-search__title {
    margin-right: .375rem;
}

/**meu**/
#menuHamburger {
    z-index: 1010;
    position: fixed;
    overflow-x: hidden;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #292929;
}

.navbar-main__aside {
    padding: 1.5rem 0;
    background-color: #0c0c0c;
}

.navbar-main__wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#menuHamburger.collapse {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

#menuHamburger.collapse.show {
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
}

.navbar-main__wrapper ul.menu {
    width: 100%;
}

.navbar-main__wrapper ul.menu .menu-wrapper {
    display: flex;
}

.navbar-main__wrapper ul.menu .menu-column {
    flex: 1;
    padding: 10px;
}

.navbar-main__wrapper ul.menu .menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-main__wrapper ul.menu .column-1 {
    position: relative;
    padding-left: 2.5%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: #1e1e1e;
    min-height: 70vh;
}

.navbar-main__wrapper ul.menu .column-2,
.navbar-main__wrapper ul.menu .column-3 {
    min-height: 70vh;
}

.navbar-main__wrapper ul.menu .menu-column li {
    cursor: pointer;
    padding-top: .15rem;
    padding-bottom: .15rem;
}

.navbar-main__wrapper .menu-column li:hover {
    color: #f2f2f2 !important;
}

.navbar-main__wrapper .menu-column li a {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
    display: block;
    color: #ababab;
    white-space: normal;
    word-break: break-word;
    transition: color .3s ease-in-out;
}

.navbar-main__wrapper .column-1 li a {
    text-transform: uppercase;
    color: #ababab;
    transition: color .3s ease-in-out, font-size .1s ease-in-out;
    font-size: 1rem;
    font-weight: 700;
}

.navbar-main__wrapper li a span.submenu-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.navbar-main__wrapper .column-1 li a span.submenu-icon {
    display: none;
}

.navbar-main__wrapper ul.menu .column-1 ul li.active a {
    font-size: 1.625rem;
    color: var(--primary-color);
}

.navbar-main__actions {
    display: flex;
    justify-content: end;
    align-items: center;
}

.hamburger .hamburger__toggler {
    position: relative;
    padding-bottom: 0;
    padding-right: 0;
    margin: 0;
    margin-left: .35rem;
}

.hamburger .hamburger__toggler span {
    position: relative;
    left: 0;
    display: block;
    height: 2px;
    width: 26px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
    background-color: #fff;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.hamburger .hamburger__toggler:not(.collapsed) span:nth-child(2) {
    visibility: hidden;
}

.hamburger .hamburger__toggler span:not(:first-child) {
    margin-top: 5px;
}

.hamburger .hamburger__toggler:not(.collapsed) span:last-child {
    bottom: 9px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.hamburger .hamburger__toggler:not(.collapsed) span:first-child {
    top: 5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.stuck {
    box-shadow: unset !important;
}

.stuck div#masthead #logo {
    display: none;
}

/**about**/
.abouts h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.35;
}

.abouts p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

/**bunnies**/
.business-overview {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding-left: 1rem;
}

.business-overview .business-overview__item {
    position: relative;
    overflow: hidden;
    flex: 1 1;
    height: 90vh;
    min-height: 890px;
    padding: 4rem;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    background-color: #3c3d41;
}

.business-overview .business-overview__item--fashion {
    z-index: 4;
    background-color: #292929;
}

.business-overview .business-overview__item:not(:first-child) {
    margin-left: -1.25rem;
    padding-left: 5rem;
}

.business-overview .business-overview__item--food {
    z-index: 5;
    background-color: #3c3d41;
}

.business-overview .business-overview__item--hardline {
    z-index: 3;
    background-color: #1e1e1e;
}

.business-overview .business-overview__item--property {
    z-index: 2;
    background-color: #141414;
}

.business-overview .business-overview__item--health-wellness {
    z-index: 1;
    background-color: #141414;
}

.business-overview .business-overview__item.active {
    flex-grow: 18;
    background-color: #7b1315 !important;
}

.business-overview .business-overview__header {
    position: absolute;
    top: 0;
    left: .5rem;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: auto;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
    transition: opacity .2s ease-in-out;
}

.business-overview .business-overview__item.active .business-overview__header {
    opacity: 0;
}

.business-overview .business-overview__body {
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: all .3s ease-in-out, height .5s ease-in-out;
}

.business-overview .business-overview__item.active .business-overview__body {
    height: auto;
    opacity: 1;
    pointer-events: auto;
}

.business-overview .business-overview__item.active .business-overview__body .business-overview__headline {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: 1.75rem;
    color: #fff;
    margin: 0;
    text-align: left;
}

.business-overview .business-overview__slider {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    transition-delay: .5s;
}

.business-overview .business-overview__item.active .business-overview__slider {
    opacity: 1;
}

.business-overview .business-overview__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-overview .business-overview__prev, .business-overview .business-overview__next {
    position: absolute;
    z-index: 5;
    top: 3.5rem;
    display: inline-block;
}

.business-overview .business-overview__prev, .business-overview .business-overview__next {
    top: 3rem;
}

.business-overview .business-overview__prev {
    left: 0;
}

.business-overview .business-overview__next {
    right: 0;
}

.business-overview .business-overview__prev i, .business-overview .business-overview__next i {
    font-size: 1.5rem;
    color: #fff;
    transition: color .3s ease-in-out;
}

.slider--business-thumbnail {
    position: relative;
    overflow: hidden;
    margin: 0 2rem 1rem;
}

.slider--business-thumbnail .slider__image--color {
    display: none;
}

.slider--business-thumbnail .slider__image--grey,
.slider--business-thumbnail .slider__slide:hover .slider__image--color,
.slider--business-thumbnail .slider__slide.swiper-slide-thumb-active .slider__image--color {
    display: block;
}

.slider--business-thumbnail .slider__image--grey,
.slider--business-thumbnail .slider__slide:hover .slider__image--color,
.slider--business-thumbnail .slider__slide.swiper-slide-thumb-active .slider__image--color {
    display: block;
}

.slider--business-thumbnail .slider__slide:hover .slider__image--grey, .slider--business-thumbnail .slider__slide.swiper-slide-thumb-active .slider__image--grey {
    display: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.slider--business-overview .slider__image {
    padding-top: 62.5%;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.slider--business-overview .slider__image > .img-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider--business-overview .slider__content {
    padding-top: 1.75rem;
}

.slider--business-overview .slider__title {
    margin-bottom: 1rem;
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.slider--business-overview .slider__body {
    position: relative;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 6;
    font-size: 1rem;
    padding-bottom: 2rem;
    color: #fff;
}

.slider--business-overview .slider__btn-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.btn--outline-primary {
    position: relative;
    min-width: 170px;
    padding: .75rem 1.5rem .65rem;
    text-align: center;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
}

.slider--business-overview .slider__btn-group .btn:not(:first-child) {
    margin-left: 1.5rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
}

.btn--link .btn__icon {
    position: relative;
    width: 25px;
    height: 10px;
    display: inline-block;
    overflow: hidden;
    margin-left: 5px;
}

.btn__icon {
    font-size: .875rem;
    color: #fa0505;
}

.business-overview .business-overview__headline {
    display: block;
    margin-bottom: 0;
    font-size: 1.75rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    transition: color .3s ease-in-out;
}

.btn--outline-primary:hover {
    background: #fff !important;
}

/**home title**/
.home-title h3 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700 !important;
    line-height: 1.35;
}

.colorWhite h3 {
    color: #fff;
}

.button_white {
    color: #fff !important;
    border-color: #fff !important;
}

/**category**/
.page-header .page-header__wrapper {
    position: relative;
    overflow: hidden;
}

.page-header .page-header__banner {
    width: 100%;
}
.page-header .page-header__banner img{
	width:100%;
}

.page-header .page-header__body {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding-top:  4rem !important;
    padding-bottom: 0rem;
    color: #fff;
    background-color: transparent;
}

.page-header .page-header__headline-wrapper {
    position: relative;
}

.page-header .page-header__headline {
    display: block;
    -webkit-transform: translateY(105%);
    transform: translateY(0);
    opacity: 1;
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    font-size: 3.875rem;
}

.breadcrumbs p {
    margin: 0 0 5px 0;
}

.breadcrumbs a, .breadcrumbs span, .breadcrumbs {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff !important;
    opacity: 1 !important;
}

.category-entry {
    margin: 40px 0;
}

/**filter**/
.form--newsroom .form-group {
    margin-bottom: 1rem;
}

.form-row > .col, .form-row > [class*=col-] {
    padding-right: 10px;
    padding-left: 10px;
}

.pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
}

.form-control {
    width: auto;
    padding: .5rem 1.15rem !important;
    color: #fff !important;
    background-color: transparent !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #fff !important;
    border-radius: 30px !important;
    outline: none !important;
    margin: 0 !important;
    height: 45px !important;
    box-shadow: unset !important;
}

.form-group--md-inline label {
    margin-bottom: 0;
    font-size: .9375rem;
    color: #fff;
    margin-right: .5rem;
}

.form-search {
    display: flex;
    gap: 10px;
}

button.btn.btn--outline-secondary {
    min-height: 45px;
    height: 45px;
    margin: 0;
    text-transform: unset !important;
    color: var(--primary-color) !important;
    border: 1px solid #fff !important;
    border-radius: 99px !important;
}

.form--newsroom {
    margin-bottom: 20px;
}

.form-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-flex select {
    padding-right: 35px !important;
}

.select-resize-ghost,
.select2-container .select2-choice,
.select2-container .select2-selection,
select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ec1e27' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.footer__copyright {
    font-weight: 400;
    font-size: .875rem;
    color: #b6b7bc;
    white-space: nowrap;
}

.banner_footer, .banner_footer img, .banner_footer .fill {
    border-radius: 25px;
}

.post-related {
    background: #1e1e1e !important;
    padding: 50px 0;
}

header#header-single {
    margin: 0 0 30px 0;
}

header#header-single h1 {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
}

.badge {
    background: #3c3d41;
    color: #fff;
    margin: 0 0 20px 0;
    border-radius: 3px;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: .4rem .875rem;
    gap: 5px;
    font-size: 75%;
    width: auto !important;
    height: auto !important;
}

.badge i {
    color: var(--primary-color);
}

header#header-single .post-date {
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
}

.entry-footer {
    margin: 40px 0 0 0;
}

.entry-thumbnail img {
    width: 100%;
}

.news-detail__share {
    height: 45px;
    margin-left: auto;
    position: relative;
    pointer-events: visible;
}

.news-detail__share-toggle {
    margin-left: auto;
    color: #fff;
    background-color: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 45px;
    border-radius: 25px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: .9375rem;
    transition: all .3s ease-in-out;
}

.news-detail__share-body {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 10px;
    background-color: #e0e0e0;
    border-radius: 25px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.news-detail__share-link {
    color: #000;
    margin: 0 10px;
    line-height: 0;
    font-size: .9375rem;
}

.news-detail__share:hover .news-detail__share-body {
    width: 155px;
    opacity: 1;
    pointer-events: visible;
}

.news-detail__share:hover .news-detail__share-toggle {
    border-color: transparent;
}

/**search**/
.page-header--search .page-header__body {
    height: 60vh;
    align-items: center;
    padding-top: 10rem !important;
    padding-bottom: 0 !important;
}

input.form-search {
    color: #000 !important;
    height: 60px !important;
    border-color: transparent !important;
    padding-left: 60px !important;
    background-color: #fff !important;
    border-radius: 12px !important;
    box-shadow: unset !important;
}

button.button_search {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px !important;
    margin: 0 !important;
    color: var(--primary-color);
}

.home-about__black .abouts h3, .home-about__black .abouts {
    color: #fff;
}

.contact_us {
    align-items: center;
}

.contact_us h3 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.contact_us p {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 !important;
}

.contact_social a {
    margin: 0 10px !important;
}

.contact_social a i {
    font-size: 25px;
}

.home-future h3 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 30px 0;
}

.home-future h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 20px 0;
}

.home-future p {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.section__img-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section__img-group .section__image {
    position: absolute;
    display: inline-flex;
    opacity: 0;
}

.section__img-group .section__image--1 {
    top: 17%;
}

.section__img-group .section__image--2 {
    top: 0;
    left: 6rem;
    right: 0;
    margin: 0 auto;
    justify-content: center;
}

.section__img-group .section__image--3 {
    top: 10%;
    right: 0;
}

.section__img-group .section__image--4 {
    right: 10%;
    bottom: 10%;
}

.section__img-group .section__image--5 {
    right: 1rem;
    left: 0;
    bottom: 2rem;
    justify-content: center;
    margin: 0 auto;
}

.section__img-group .section__image--6 {
    bottom: 8%;
    left: 6rem;
}

.section--sustainability .section__image--1 > .img-fluid {
    max-width: 500px;
}

.section--sustainability .section__image--2 > .img-fluid {
    max-width: 220px;
}

.section--sustainability .section__image--3 > .img-fluid {
    max-width: 400px;
}

.section--sustainability .section__image--4 > .img-fluid {
    max-width: 350px;
}

.section--sustainability .section__image--5 > .img-fluid {
    max-width: 280px;
}

.section--sustainability .section__image--6 > .img-fluid {
    max-width: 500px;
}

.section--investor .section__image > .img-fluid, .section--sustainability .section__image > .img-fluid, .section--career .section__image > .img-fluid, .section--parallax .section__image > .img-fluid {
    border-radius: 5px;
}

.home-future {
    position: relative;
    z-index: 999;
}

.section--sustainability .section-content {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section--bg-cover-gradient::before {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.home-desc {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.share-price--home {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    min-height: 90px;
    color: rgb(255, 255, 255);
    background-color: transparent;
    overflow: hidden;
    padding: 1.25rem 1.5rem;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
}

.share-price--home .share-price__last-done {
    font-size: 2.25rem;
    font-weight: 700;
}

.share-price--home .share-price__change {
    font-size: 1.25rem;
    font-weight: 700;
}

.share-price--home .share-price__change {
    position: relative;
    padding-left: 1.25rem;
}

.share-price--home .share-price__change--up::before {
    content: "";
}

.share-price--home .share-price__change::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    margin: auto 0px;
}

.font-weight-bold {
    font-weight: 700 !important;
    color: #fff;
}

.home-investor .section-content {
    z-index: 99;
}

.performance {
    text-align: center;
}

.performance .performance__text {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #fff;
}

.performance--home .performance__number {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.performance--home .performance__unit {
    font-size: 1.75rem;
    color: #fff;
}

.nv-faq a.accordion-title.plain {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.nv-faq button.toggle {
    margin: 0;
    position: absolute;
    right: 0;
    left: unset;
    transform: unset;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
    min-width: 80px;
    padding: .375rem .5rem;
    text-transform: unset;
    font-size: 1rem;
    line-height: 1.5;
}

.nv-faq a.accordion-title.plain {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    padding: .875rem 0;
    border-color: #fff !important;
}

.nv-faq h5 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.nv-faq .accordion-inner {
    padding: .875rem 0;
    color: #fff;
}

.nv-faq .accordion-inner p {
    margin-bottom: 8px;
}

.our-purpose:before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .9) 100%);
}

.our-purpose .section-content {
    z-index: 9;
}

.who-are h3 {
    font-size: 3.4375rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    text-transform: uppercase;
}

.who-are p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.who-are h5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.who-are p strong {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.4;
}

.header__navigation .hamburger {
    display: none;
}

.banner_footer .button_style {
    width: 100% !important;
}

.banner-radius img {
    border-radius: 25px !important;
}

.who-author {
    text-align: center;
}

.page-header .page-header__video > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.row.gallery-store {
    width: 100% !important;
    max-width: 100% !important;
}

/**icon contact**/
.icon-contact {
    background-color: #3c3d41;
    text-align: center;
    min-height: 290px;
    justify-content: space-between;
    padding: 45px 30px 30px;
    color: #fff;
    border-radius: 25px;
    transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out, color .3s ease-in-out;
}

.icon-contact h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
}

.icon-contact a.btn--link {
    color: #fff;
    font-weight: 700;
}

.icon-contact a.btn--link {
    color: #fff;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-contact a.btn--link:after {
    content: "";
    width: 25px;
    height: 10px;
    background-image: url(../images/link-out.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .3s ease-in-out;
    display: block;
}

.col-5 {
    flex-basis: 20% !important;
    max-width: 20% !important;
}

.icon-contact:hover {
    background: #fff !important;
    box-shadow: 0 3px 20px #0003;
}

.icon-contact:hover h3, .icon-contact:hover a {
    color: var(--color-dark) !important;
}

#footer{
	 color: #424d54;
    font-size: 15px;
}

#footerc .footer-top .footer-title {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 15px 0;
}

#footer .footer-top .footer-copyright {
    color: #424d54;
    font-size: 15px;
}

#footer .footer-menu a {
    padding: 0;
    font-size: 15px;
    color: #424d54;
    min-height: unset;
    margin: 0 0 10px 0;
}


#footer .footer-menu.menu-bold a{
	font-weight:700
}

#footer .footer-menu a:hover{
	color:var(--primary-color);
}

.error404  span.header-font {
    color: #fff;opacity:1 !important;
}

.error404  h1.page-title,.error404  .page-content p {
    color: #fff;
}
