:root{
    --primary-color: ; 
    --secondary-color: ;
    --red-logo: #9b2b2c;
    --yellow-logo: #f3b416;
    --black-logo: #1d1d1b;
    --primary-grey-bg: #14141F;
    --secondary-grey-bg: #3C3C56;
    --writer: rgba(184 187 199, 1);
    --gradient-how-mint: linear-gradient( 227.3deg, #8A208C 0%, #181B81 100.84%);
    --radius-10: 10px;
    --font-ibm: 'IBM Plex Sans', sans-serif;
    --font-inter: "Inter", sans-serif;
    --font-urbanist: "Urbanist", sans-serif;
    --card-shadow: rgb(51 61 74 / 20%) 0px 1px 2px 1px;
}

@media (prefers-reduced-motion: no-preference){
    html {
        scroll-behavior: smooth;
    }
}
a,
a:hover{
    text-decoration: none !important;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
strong{
    font-weight: 700;
}
p{
    font-size: 16px;
}
.btn{
    border-radius: 10px;
    border-width: 2px !important;
    font-weight: 700;
}
.btn-outline-default{
    border: 1px solid #b42424;
}
.btn-outline-default:hover{
    color: #fff;
    background-color: #c82727;
}
.btn-link:hover{
    color: #c82727;
}
.btn-link.btn-animated::after{
    background-color: transparent;
}
.super-title{
    font-size: 32px;
    font-weight: 700;
}
.secondary-bg{
    background-color: var(--yellow-logo);
    color: #fff;
}
section h2.super-title{
    font-family: var(--font-ibm);
}
.secondary-translucent-bg::after{
    background-color: rgba(243, 180, 22, .8);
}
.card{
    box-shadow: var(--card-shadow);
    border-radius: 10px;
}
.dropdown-menu{
    min-width: 220px;
}
.font-ibm{
    font-family: var(--font-ibm) !important;
}
.text-red{ color: var(--red-logo) !important; }
.text-yellow{ color: var(--yellow-logo) !important; }

/* Container custom 
-------------------------------------------------------------- */
.container{
    max-width: 1240px;
}
@media only screen and (max-width: 1199px){
    .container{
        max-width: 1200px;
    }
}
@media only screen and (max-width: 991px){
    .container{
        max-width: 1440px;
    }
}
@media only screen and (max-width: 767px){
    .container{
        max-width: 740px;
    }
}

/** Header
----------------------------------------------------------------------*/
.header-first{
    padding: 5px 0 5px 0;
}
.header-first .logo{
    padding-right: 40px;
    border-right: 1px solid #eaeaea;
    width: fit-content;
}
.header .navbar-nav li a{
    font-weight: 700;
    font-size: 16px !important;
}
.header .dropdown-searchbar{
    z-index: 103;
    padding: 20px;
    min-width: 280px;
    margin-top: 20px;
    top: 100%;
    border: none;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.header-top .list-inline .list-inline-item a{
    color: #fff !important;
}
.header .navbar-nav li .nav-link{
    padding-top: 35px;
}
.header .navbar-nav .dropdown-toggle::after{
    top: 55%;
}
.header-top.dark{
    background-color: var(--black-logo);
}

/* Ticker
-----------------------------------------------------------------------*/
.ticker-container{
    overflow: hidden;
}
.ticker-head span{
    color: #fff;
    background-color: var(--red-logo);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 35px;
    padding: 8px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}
.ticker-head span i{
    margin-left: 5px;
}
.news-rotate-list-item{
    text-transform: uppercase;
    padding: 0px 7px;
    line-height: 35px;
    font-family: "Inter", sans-serif;
}
.news-rotate-list-item a{
    font-size: 14px;
    color: #444444;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 10px;
}
.news-rotate-list-item a:hover{
    color: var(--red-logo);
}
.news-rotate-list-item a:hover i{
    color: #333;
}

/* Ads
----------------------------------------------------------------------*/
.adtop-area{
    display: flex;
    justify-content: center;
}
.adtop-area img{
    border:1px solid #333;
}

/* Banner grid home
----------------------------------------------------------------------*/
section.banner{
    padding: 0 0 40px 0;
    overflow: hidden;
}
.swiper {
    width: 100%;
    height: 100%;
}
section.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
section.banner .swiper-slide-item{
    background-size: cover;
    width: 100%;
    padding-top: 0;
    height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
section.banner .swiper-overlay:before{
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#14191c), color-stop(92%, rgba(20, 25, 28, 0)));
    background-image: -o-linear-gradient(top, #14191c 0%, rgba(20, 25, 28, 0) 92%);
    background-image: linear-gradient(180deg, #14191c 0%, rgba(20, 25, 28, 0) 92%);
}
section.banner .swiper-slide-item-content{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}
section.banner .swiper-slide-item-content p{
    margin-top: 15px;
    color: #fff;
    font-weight: 700;
}
.swiper-button-next:after,
.swiper-button-prev:after{
    color: var(--red-logo);
}
section.banner .swiper-pagination{
    top: 10px !important;
    /* left: 15px !important; */
    width: fit-content !important;
    height: fit-content !important;
}
section.banner .swiper-slide-item-content h1{
    font-size: 57px;
    line-height: 60px;
    color: #fff;
    font-family: var(--font-ibm);
}
section.banner .swiper-pagination-bullet{
    width: 40px;
    height: 3px;
    border-radius: 0;
    background-color: var(--yellow-logo);
    transition: all .4s ease;
    margin-right: 0.3rem;
}
section.banner .swiper-pagination-bullet-active{
    height: 5px;
}
section.banner .swiper-slide-item-content .container,
section.banner .swiper-pagination{
    /* padding-left: 60px; */
}

@media screen and (max-width: 767px){
    section.banner .swiper-button-next:after,
    section.banner .swiper-button-prev:after{
        font-size: 16px !important;
    }
    section.banner .swiper-slide-item-content .container,
    section.banner .swiper-pagination{
        padding-left: 15px;
    }
    section.banner .swiper-slide-item-content h1{
        font-size: 32px;
        line-height: 100%;
    }
    section.banner .swiper-slide-item-content p{
        font-size: 16px;
        line-height: 150%;
    }
}

/* services home
-----------------------------------------------------------------*/
.services-area .swiper{
    padding-bottom: 40px;
}
.services-area .swiper-pagination-bullets {
    position: relative;
    margin-top: 5px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    justify-items: center;
    padding-left: 15px;
}
.services-area .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px 0 5px;
}
.services-area .swiper-pagination-bullet, .auctions .swiper-pagination-bullet {
    border: 1px solid var(--yellow-logo);
    background: transparent;
    width: 8px;
    height: 8px;
    position: relative;
    opacity: 1;
}
.services-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    background: var(--yellow-logo);
}
.services-area .swiper-pagination{
    top: 0 !important;
    width: 100% !important;
}
.services-area .swiper-pagination-bullet{
    border-radius: 50%;
}
.services-area .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid var(--yellow-logo);
    overflow: visible;
}
.services-area .swiper-button-next{
    right: 30%;
}
.services-area .swiper-button-prev{
    left: 30%;
}
.services-area .swiper-button-next,
.services-area .swiper-button-prev{
    position: absolute;
    bottom: 0px;
    opacity: 1;
    top: auto;
}
.services-area .swiper-button-next::after,
.services-area .swiper-button-prev::after{
    font-size: 16px;
}
.services-area .card{
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: all .4s ease;
}
.services-area .card .card-media{
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.services-area .card .card-media img{
    border-radius: 10px;
}
.services-area .card .card-media img{
    transition: all .4s ease;
}
.services-area .card:hover .card-media img{
    transform: scale(1.1);
}
.services-area .card .card-info h3{
    margin-bottom: 20px;
}
.services-area .card .card-info h3{
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.services-area .card .card-info p{
    font-size: 14px;
}
.services-area .card .card-action a{
    padding-left: 0;
    text-align: left;
}
@media (max-width:767px){
    .services-area .swiper-button-next,
    .services-area .swiper-button-prev,
    .swiper-pagination{
        display: none;
    }
}

/* PARALLAX ASSOCIE-SE PRICING
-------------------------------------------------------------*/
.pricing-tables .plan:first-child,
.pricing-tables .plan:last-child{
    filter: blur(.175rem);
    pointer-events: none;
}
.pricing-tables{
    margin: 80px 0 0 0;
}
.subscriber-area .super-title{
    font-size: 42px;
}
.dark-translucent-bg a:not(.btn):hover{
    color: var(--dark);
}
@media(max-width: 767px){
    .subscriber-area .super-title{
        font-size: 32px;
    }
}

/* NEWS HOME 
----------------------------------------------------------------*/
.card-news{
    border-radius: 10px;
}
.card-news :is(.card-news-top, .card-news-title, .card-news-description, .card-news-footer){
    padding: 20px;
}
.card-news .card-news-top{
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #333;
    padding-bottom: 0;
    font-weight: 500;
}
.card-news .card-news-info-restrict{
    font-size: 12px;
    /* background-color: var(--yellow-logo);
    color: #fff;
    border-radius: 10px;
    padding: 0 15px; */
}
.card-news .card-news-info-restrict-img{
    font-size: 12px;
    position: absolute;
    top: 0;
    z-index: 9999999;
    background: var(--black-logo);
    padding: 0 15px;
    color: #fff;
    border-radius: 0 0 0 5px;
    right: 0;
}
.card-news .card-news-title{
    padding-bottom: 0;
    height: 100px;
}
.card-news .card-news-title a{
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 110%;
}
.card-news .card-news-description{
    line-height: 150%;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #555;
    height: 140px;
}
.card-news .card-news-image{
    overflow: hidden;
}
.card-news .card-news-image img{
    transition: all .4s ease;
    height: 260px;
    width: 100%;
    object-fit: cover;
}
.card-news .card-news-image:hover img{
    transform: scale(1.1);
}
.card-news .card-news-footer{
    font-size: 12px;
    letter-spacing: -0.01em;
    color: #555;
}
.card-news .card-news-footer span:last-child{
    cursor: pointer;
}
@media (max-width:767px){
    .news-area .col-12{
        margin-bottom: 20px;
    }
    .card-news .card-news-title,
    .card-news .card-news-description{
        height: auto;
    }
}

/** Regional
---------------------------------------------------------------*/
.regional-area .card.card-regional{
    color: #333 !important;
    /* padding: 20px; */
}
.card-regional :is(.card-regional-top,.card-regional-middle,.card-regional-bottom){
    padding: 20px;
}
.card-regional-news-item{
    margin-bottom: 20px;
}
.card-regional .card-regional-top{
    padding-bottom: 0;
    letter-spacing: -0.02em;
    font-size: 16px;
    font-weight: 500;
}
.card-regional .card-regional-middle{
    padding-bottom: 0;
}
.card-regional .card-regional-middle a:not(.btn){
    color: var(--yellow-logo) !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.card-regional .card-regional-bottom{
    font-size: 12px;
    letter-spacing: -0.01em;
    color: #555;
}
.card-regional .card-regional-bottom span:last-child{
    cursor: pointer;
}
.regional-area h4{
    margin: 20px 0;
}
.card-regional-sedes{
    font-weight: 700;
}
.card-regional-sedes .pt-popover{
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
}

/* customer pages
--------------------------------------------------------*/
.response-cnpj,
.response-cnpj small{
    color: var(--red-logo);
    font-weight: 700 !important;
}
.customer-area__title h3{
    color: var(--red-logo);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    text-align:center;
    letter-spacing: -0.003rem;
}
.customer-area__form,
.customer-area__success{
    box-shadow: rgb(51 61 74 / 20%) 0px 1px 2px 1px;
    padding: 40px 20px;
}
.customer-area__form h2{
    font-size: 26px;
    font-weight: 700;
}
.customer-area__form p{
    font-size: 14px;
}

/* exclusive news 
--------------------------------------------------------------*/
.exclusive-news-area .swiper{
    padding-bottom: 40px;
}
.exclusive-news-area .swiper-pagination-bullets {
    position: relative;
    margin-top: 5px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    justify-items: center;
    padding-left: 15px;
}
.exclusive-news-area .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px 0 5px;
}
.exclusive-news-area .swiper-pagination-bullet, .auctions .swiper-pagination-bullet {
    border: 1px solid var(--yellow-logo);
    background: transparent;
    width: 8px;
    height: 8px;
    position: relative;
    opacity: 1;
}
.exclusive-news-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    background: var(--yellow-logo);
}
.exclusive-news-area .swiper-pagination{
    top: 0 !important;
    width: 100% !important;
}
.exclusive-news-area .swiper-pagination-bullet{
    border-radius: 50%;
}
.exclusive-news-area .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    content: "";
    width: 16px;
    height: 16px;
    border: 1px solid var(--yellow-logo);
    overflow: visible;
}
.exclusive-news-area .swiper-button-next{
    right: 30%;
}
.exclusive-news-area .swiper-button-prev{
    left: 30%;
}
.exclusive-news-area .swiper-button-next,
.exclusive-news-area .swiper-button-prev{
    position: absolute;
    bottom: 0px;
    opacity: 1;
    top: auto;
}
.exclusive-news-area .swiper-button-next::after,
.exclusive-news-area .swiper-button-prev::after{
    font-size: 16px;
}
@media (max-width:767px){
    .exclusive-news-area .swiper-button-next,
    .exclusive-news-area .swiper-button-prev,
    .exclusive-news-area .swiper-pagination{
        display: none;
    }
}

/* checkbox
--------------------------------------------------------*/
.container-custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}
.container-custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.container-custom-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.container-custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.container-custom-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* sweet alert
--------------------------------------------------------------*/
.swal-text{
    text-align: center !important;
}
.swal-button{
    background-color: var(--yellow-logo);
    color: #333;
    transition: .2s ease;
}
.swal-button:hover{
    background-color:rgba(243, 180, 22, .8) !important;
}