/*
    Theme Name: Theme OpenFS MDB
    Theme URI: https://github.com/Open-FS/mdb
    Author: OpenFS LLC
    Author URI: 
    Description: Theme for MDB
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: mdb
    Text Domain: mdb
*/
:root {
    --brand-main: #ff0666;
}

.bg-main {
    background-color: var(--brand-main);
}

.text-main {
    color: var(--brand-main);
}

/*-----------------
 section navbar
-------------------*/

.navbar-nav {
    padding-left: 1.5rem;
}

.navbar .navbar-brand .logo__navbar {
    height: 60px;
}

#scrolledNav {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.fw-900{
    font-weight: 900 !important;
}
/*-----------------
 navbar drop
-------------------*/
.navbar .dropdown-menu {
    background-color: #3b3838e7;
    border: solid 1px var(--brand-main);
    overflow: hidden;
    border-radius: 10px 10px 10px 10px;
    padding: 0;
    min-width: 250px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar .dropdown-menu li a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: normal;
    padding: 8px 20px;

    line-height: 1.5;
    display: block;
    text-decoration: none;
    transition: background-color 0.2s;
}


.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu li a:focus {

    background-color: var(--brand-main);

    color: white;
    border-radius: 8px 8px 8px 8px;
}

.navbar .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}

/*-----------------
 section offcanvas collapse
-------------------*/
#offcanvasNavbar {
    transition: transform 0.4s ease-in-out !important;
}

.offcanvas .collapse {
    transition: height 0.5s ease !important;
}

#offcanvasNavbar .bi-chevron-down {
    transition: transform 0.3s ease !important;
}

#offcanvasNavbar .navbar-nav>li {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

#offcanvasNavbar .navbar-nav>li>a {
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #000000 !important;
    display: flex;
    text-decoration: none !important;
    line-height: 1.2;
}


#offcanvasNavbar ul.list-unstyled li {
    padding: 5px 0;
    margin: 0;
    line-height: 1.4;
}

#offcanvasNavbar ul.list-unstyled li a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #000000 !important;
    text-decoration: none !important;
    display: block;
    padding: 3px 0;
}

#offcanvasNavbar .collapse a {
    color: #000000 !important;
    text-decoration: none !important;

    transition: none !important;
}

#offcanvasNavbar .collapse a:hover,
#offcanvasNavbar .collapse a:focus,
#offcanvasNavbar .collapse a:active {
    color: var(--brand-main) !important;
}

#offcanvasNavbar .bi-chevron-down {
    transition: transform 0.3s ease !important;
}

#offcanvasNavbar .collapse.show+a .bi-chevron-down,
#offcanvasNavbar a[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/*-----------------
 section slider
-------------------*/

.main-swiper {
    height: 100vh;
}

.swiper {
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 3;
}

#particles-instance-0 {
    width: 100% !important;
    height: 100% !important;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 4;
}

@media (max-width: 991px) {
    .hero-content {
        left: 5%;
    }
}

.hero-section {
    position: relative;
    z-index: 1;
}

.hero-content .title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content .title span.highlight {
    color: var(--brand-main);
}

.subtitle {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--brand-main);
    text-shadow: 0 0 5px rgba(255, 6, 102, 0.7);
}

.subtitle::before,
.subtitle::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 6px;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    background-color: var(--clr-main, #ff0666);
    top: 50%;
    translate: 0 -50%;
}

.subtitle::before {
    left: 0;
}

.subtitle::after {
    right: 0;
}

.buttons .btn__slider {
    border: 2px solid var(--brand-main, #09aff4);
    transition: all 0.3s ease;
    margin-right: 1rem;
    border-radius: 5px 20px 5px 20px;
    margin-top: 1rem;
}

.buttons .btn__slider:first-child:hover {
    background-color: transparent !important;
    color: var(--brand-main) !important;
}

.buttons .btn__slider:last-child:hover {
    background-color: var(--brand-main, #09aff4) !important;
    color: #ffffff !important;
}


/*-----------------
 section services
-------------------*/

.space {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.space .content .title {
    font-size: 2.5rem;
    font-weight: 900;
}

.space .content p {
    font-size: 20px;
}

.space .service__card {
    border: var(--brand-main) 1px solid;
    padding: 1rem;
    margin-top: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 8px;
    overflow: hidden;
}

.space .service__card .service__icon img {
    height: 75px;
    transition: filter 0.3s ease;
}

.space .service__card:hover .service__icon img {
    filter: brightness(0) invert(1);
}

.space .service__card .service__title {
    font-weight: 700;
}

.space .service__card .service__text {
    font-size: 17px;
}

.space .service__card a {
    text-decoration: none;
    color: var(--brand-main) !important;
}

.space .service__card:hover {
    color: white;
    border-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service__card:hover a,
.service__card:hover i {
    color: white !important;
}

.feature-card__animation {
    height: 93%;
    position: relative;
    z-index: 1;
    transition: all 0.3s linear 0s;
}

.feature-card__animation:before {
    background: var(--brand-main);
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.feature-card__animation:hover:before {
    left: 0;
    right: auto;
    width: 100%;
}

.buttons .btn__service {
    border: 2px solid var(--brand-main, #09aff4);
    transition: all 0.3s ease;
    margin-right: 1rem;
    border-radius: 5px 20px 5px 20px;
    margin-top: 1rem;
    color: white !important;
    background-color: var(--brand-main);
}

.buttons .btn__service:hover {
    color: var(--brand-main) !important;
    background-color: transparent;
}


/*-----------------
 SECTION BANNER
-------------------*/

.certification {
    position: relative;
    background-image: url('assets/img/como-fazer-imagens-3.gif');
    background-size: cover;
    background-position: center;
    min-height: 470px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.certification::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.certification .container {
    z-index: 3;
    width: 100%;
}

.certification svg {
    z-index: 2;
    height: 42px;
}

.balanceo {
    width: 90%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    animation: balanceo 5s infinite;
}

@keyframes balanceo {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}


/*-----------------
 section about
-------------------*/

.about__section {
    padding: 24px;
}

.about__section h1,
.about__section h2,
.about__section h3,
.about__section h4,
.about__section h5,
.about__section h6 {
    font-size: 23px;
}

.about__section p {
    text-align: justify;
    line-height: 27px;
    font-size: 18px;
}

.about__section a {
    color: var(--brand-main) !important;
    text-decoration: none !important;
}

.about__section .title {
    font-size: 2rem;
    font-weight: 900;
}

#img__color {
    fill: var(--brand-main) !important;
}

.section__image {
    object-fit: cover;
    height: 600px;
    border-radius: 5px 80px 5px 80px;
    object-position: center;
}

/*-----------------
 section chouse
-------------------*/
.chouse__section p {
    text-align: justify;
    line-height: 27px;
    font-size: 18px;
}

.chouse__number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.8;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.chouse__title {
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.chouse__text p {
    text-align: justify;
    line-height: 27px;
    font-size: 18px;
}

.chouse__section .title {
    font-size: 2rem;
    font-weight: 900;
}

/*-----------------
  section blog 
 -------------------*/
.section {
    padding-top: 70px;
    padding-bottom: 80px;
    position: relative;
}

.blog-section .blog-card {
    padding: clamp(12px, 1.25vw, 40px);
    border-radius: 8px;
    border: 1px solid #efefef;
    box-shadow: 0px 2px 15px #f7f7f7;
    background: #fff;
}

.blog-section .blog-card .image-box {
    border-radius: 16px;
    overflow: hidden;
}

.blog-section .blog-card .image-box img {
    transition: all 0.35s linear 0s;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section .blog-card .content-box {
    position: relative;
    padding-top: clamp(12px, 1.25vw, 40px);
}

.blog-section .blog-card .content-box .date-box {
    position: absolute;
    right: 12px;
    top: -60px;
    padding: clamp(8px, 0.625vw, 24px) clamp(10px, 0.833vw, 32px);
    border-radius: 8px;
    background: var(--brand-main);
    color: #fff;
}

.date-box h5 {
    margin-bottom: 0px;
}

.date-box p {
    margin-bottom: 0px;
    color: #fff;
}

.description-blog p {
    color: var(--brand-black);
}

@media (min-width: 2559px) {
    .blog-section .blog-card .content-box .date-box {
        top: -60px;
    }
}

@media (min-width: 3839px) {
    .blog-section .blog-card .content-box .date-box {
        top: -90px;
    }
}

@media (max-width: 1024px) {
    .blog-section .blog-card .content-box .date-box {
        top: -36px;
    }
}

.blog-section .blog-card .content-box .description-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-section .blog-card:hover .image-box img {
    transform: scale(1.1);
    transition: all 0.35s linear 0s;
}

.btn-blog {
    z-index: 3;
    transition-delay: 0.2s;
    font-size: 14px;
    padding: 5px 25px;
    border-radius: 0px;
    background: var(--brand-main);
    border: none;
}

.pagination .page-item.active .page-link {
    background-color: var(--brand-main);
    color: white;
    border-color: var(--brand-main);
}

.pagination .page-item:not(.active) .page-link {
    background-color: transparent;
    border-color: #dee2e6;
    color: var(--brand-main) !important;
}

/*-----------------
 section single blog
-------------------*/
.img-single {
    object-fit: cover;
    height: 400px;
    border-radius: 20px;
    object-position: center;
}

.section-space {
    padding-top: 70px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-space {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.img-sinlge-services {
    object-fit: cover;
    height: 400px;
    border-radius: 20px;
    object-position: center;
}

/*-----------------
 SECTION SINGLE CONTENT
-------------------*/
.content-single {
    padding-top: 0px;
    padding-bottom: 10px;
}

.content-single>h1,
.content-single>h2,
.content-single>h3,
.content-single>h4,
.content-single>h5,
.content-single>h6 {
    font-size: 30px;
    color: var(--brand-main);
}

.content-single p {
    line-height: 28px;
    font-size: 18px;
    text-align: justify;
}

.content-single ul {
    font-size: 18px;
}

.content-single ul li::marker {
    line-height: 28px;
    color: var(--brand-main);
}

.content-single a {
    text-decoration: none;
    color: var(--brand-main);
    font-weight: 700;
    font-size: 18px;
}

/*-----------------
 section preguntas frecuentes
-------------------*/
.accordion-item {
    border-color: none !important;
}

.accordion-button {
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-main) !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.accordion-button::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-right-icon lucide-chevrons-right"%3E%3Cpath d="m6 17 5-5-5-5"%3E%3C/path%3E%3Cpath d="m13 17 5-5-5-5"%3E%3C/path%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: 0px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-right-icon lucide-chevrons-right"%3E%3Cpath d="m6 17 5-5-5-5"%3E%3C/path%3E%3Cpath d="m13 17 5-5-5-5"%3E%3C/path%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: 0px;
    transform: rotate(90deg);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ffffff !important;
    outline: 0;
    box-shadow: none !important;
}

.accordion-button {
    font-size: 17px;
    font-weight: 600;
}

/*-----------------
 section single form 
-------------------*/
.bg-form-single {
    background: #000000 !important;
    border-radius: 10px;
}

.bg-form-single.nf-error-msg,
.bg-form-single.nf-error,
.bg-form-single .nf-error-required-error {
    color: var(--brand-main) !important;
    font-weight: 600;
}

.bg-form-single .nf-field-label label {
    color: #fff !important;
    font-size: 1rem;
}

.bg-form-single .nf-error-msg,
.bg-form-single .ninja-forms-req-symbol {
    color: var(--brand-main) !important;
}

.bg-form-single .nf-form-fields-required {
    display: none;
}

.project-categories li {
    font-size: 15px;
}

.project-categories li a {
    color: #000000 !important;
    font-weight: 600;
}

.project-categories li a :hover {
    color: var(--brand-main) !important;
}

.card-call-single {
    border-radius: 15px;
    overflow: auto;
}

/*-----------------
 section hero-banner
-------------------*/
.banner-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.overlay-banner::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(46deg, rgb(0 0 8) 0%, rgb(47 47 47 / 72%) 71%);
    opacity: 0.9;
}

.card-call-single {
    border-radius: 24px;
    overflow: auto;
}

/*-----------------
 section rrss
-------------------*/

.social-rrss {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 0;
    margin-bottom: 10px;
    width: 195px;
    z-index: 9999;
}

.social-rrss a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.6em;
    margin: 3px 0px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
    display: flex;
}

.book {
    color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.icon {
    margin-right: 5px;
    width: 30px;
    height: 30px;
}

.book p {
    color: #fff;
    margin-bottom: 0px;
}

.social-rrss a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social-rrss>a:hover {
    transform: translateX(0px);
    color: white;
}


/*-----------------
 section whatsapp
-------------------*/

.floatWapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #7acf4a;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: 0.3s all;
}

.floatWapp:hover {
    color: #FFF;
    transform: scale(1.08);
    transition: 0.3s all;
}

.floatWapp svg {
    margin-top: 10px;
}

.floatWapp:after,
.floatWapp:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #7acf4a;
    -webkit-animation-name: popupBtn;
    animation-name: popupBtn;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes popupBtn {
    0% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.6);
        opacity: .3
    }

    to {
        transform: scale(2.2);
        opacity: 0
    }
}


/*-----------------
 section footer
-------------------*/

.footer__section {
    background-color: #000000 !important;
    padding-top: 4rem;
    position: relative;
    z-index: 0;
}

.overlay__footer {
    /* background-image: url('../img/footer-bg-1.jpg'); */
    opacity: 0.25;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer__section .footer__img {
    margin-bottom: 1.5rem;
    max-width: 30%;
}

.footer__section .footer__text p {
    color: #f1f1f1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
}

.footer__section .footer__title {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    color: var(--brand-main);
}

.footer__section .footer__item {
    display: block;
    position: relative;
    padding-bottom: 1rem;
}

.footer__section .footer__icon {
    font-size: 0.75rem;
    text-align: right;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--brand-main);
}

.footer__section .footer__link {
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    transition: all 0.25s ease-in-out 0s;
    color: white;
}

.footer__section .footer__link:hover {
    transition: all 0.3s ease-in-out 0s;
    color: var(--brand-main);
}

.footer__section .footer__contact {
    font-weight: 600;
    padding: 0;
    padding-bottom: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out 0s;
    color: white;
}

.footer__section .icon__contact {
    font-size: 1.5rem;
    text-align: center;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--brand-main);
}

.footer__section .link__contact {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.25s ease-in-out 0s;
    color: white;
}

.footer__section .footer__contact .link__contact:hover {
    color: var(--brand-main);
}

.footer__section .copy__section {
    padding: 0.5rem;
    overflow: hidden;
}

.footer__section .copy__section .copy__text {
    text-align: left;
    font-weight: 600;
    margin: 0;
    font-size: 0.85rem;
    color: var(--brand-main);
}

/*-----------------
 
-------------------*/

.offcanvas-open {
    padding-right: 0px !important;
    overflow-y: scroll !important;
}

body,
html {
    overflow-x: hidden !important;
    width: 100% !important;
}

/*-----------------
 banner hero-home
-------------------*/
.home-cta-banner {

    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('assets/img/hero-bg-3.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.home-cta-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
}

.home-cta-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    transform: rotate(180deg);
}

.home-cta-top-shape svg,
.home-cta-bottom-shape svg {
    display: block;
    width: 100%;
    height: 100%;
}

.home-cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-cta-lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .home-cta-banner {
        padding: 80px 0;
    }

    .home-cta-title {
        font-size: 3rem;
    }

    .home-cta-lead {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .home-cta-banner {
        padding: 70px 0;
    }

    .home-cta-title {
        font-size: 2.5rem;
    }

    .home-cta-lead {
        font-size: 1rem;
    }

}

@media (max-width: 767.98px) {
    .home-cta-banner {
        padding: 60px 15px;
    }

    .home-cta-title {
        font-size: 2rem;
    }

    .home-cta-lead {
        font-size: 0.9rem;
        margin-bottom: 3rem !important;
    }

    .subheading-home {
        font-size: 0.8rem;
    }

}


/*-----------------
 section scroll
-------------------*/
::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-main);
    border-radius: 2px;
}