.vector_map{
    height: 550px;
    width: 100%;
    background-color: #e4e4e4;
    background-size: 82%;
    background-repeat: no-repeat;
    background-position-x: 120%;
    background-position-y: 20%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.cursor-pointer{
    cursor: pointer;
}

.vector_map_title{
    left: 45px;
    top: 60px;
    max-width: 300px;
    color: #013088;
}

.spot{
    position: absolute;
    height: 33px;
    width: 33px;
    background-color: transparent;
    border-radius: 100%;
    z-index: 1;
}


.spot::after{
    content: ' ';
    position: absolute;
    height: 18px;
    width: 18px;
    background-color: var(--inteia-orange);
    z-index: 2;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse_invert  4s ease-in-out infinite;
}

.spot.spot_red::after{
    content: '';
    background-color: var(--inteia-orange);
}

.spot.spot_blue::after{
    content: '';
    background-color: var(--inteia-blue);
}

.spot.spot_green::after{
    content: '';
    background-color: var(--inteia-green);
}


.spot::before{
    content: ' ';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: white;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.spot_info{
    border: 1px solid white;
    padding: 20px 15px;
    position: absolute;
    bottom: 80%;
    display: flex;
    flex-direction: column;
    width: max-content;
    border-radius: 20px 20px 20px 20px;
    min-width: 150px;
    cursor: pointer;
    overflow: hidden;
    animation: bounce 4s ease-in-out infinite;
}

.spot_info span:first-child{
    font-size: 21px;
    line-height: normal;
    font-family: 'Montserrat-Bold';
    color: white;
    user-select: none;
    z-index: 1;
}

.spot_info .cta{
    color: white;
    display: flex;
    gap: 8px;
    user-select: none;
    align-items: center;
    font-family: 'Montserrat-Light';
    z-index: 1;
}

.spot_info .cta::after{
    content: ' ';
    background-image: url('../images/icon-arrow-light.png');
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    z-index: 1;
}

.spot_left{
    border-radius: 20px 20px 0px 20px !important;
    left: -450%;
}

.spot_right{
    border-radius: 20px 20px 20px 0px !important;
    left: 100%;
}

.spot_red .spot_info, .spot_blue .spot_info, .spot_green .spot_info{
   backdrop-filter: blur(5px);
}

.spot_red .spot_info{
   background: linear-gradient(180deg, rgba(254, 80, 0, 0.8) 0%, rgba(55, 17, 0, 0.8) 100%);
}

.spot_red .spot_info::before{
    background: linear-gradient(180deg, rgba(254, 80, 0, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.spot_blue .spot_info{
   background: linear-gradient(180deg, rgba(0, 153, 255, 0.8) 0%, rgba(0, 48, 135, 0.8) 100%);
}

.spot_info::before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    animation: gradient_pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.spot_blue .spot_info::before{
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.spot_green .spot_info{
   background: linear-gradient(180deg, rgba(0, 191, 99, 0.8) 0%, rgba(0, 60, 31, 0.8) 100%);
}

.spot_green .spot_info::before{
    background: linear-gradient(180deg, rgba(0, 191, 99, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
}

@keyframes gradient_pulse{
    0%{ opacity: 0; }
    50%{ opacity: 1; }
    100%{ opacity: 0; }
}

@keyframes bounce {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes pulse_invert {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* challenge_section */

.challenge_section{
    padding: 4rem 7rem;
}

.challenge_section_info{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.challenge_section_info h2 span{
    color: #fe5000;
}

.challenge_section_info h2{
    color: #013088;
}

.challenge_section_info p{
    color: #00000090;
}

.btn_orange{
    display: block;
    padding: 15px 30px;
    background-color: #FE5000;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    width: fit-content;
    font-family: 'Montserrat-Bold';
}

.portfolio_float_btn{
    position: fixed;
    bottom: 10px;
    right: 30px;
    border: 1px solid var(--inteia-orange);
    background-color: #ffffff90;
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0px 18px 24px 0px #0000001C;
    z-index: 2;
}

.portfolio_float_btn a{
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.portfolio_float_btn a p{
    margin: 0;
    max-width: 220px;
    background: #01102e;
    background: radial-gradient(circle,rgba(1, 16, 46, 1) 0%, rgba(0, 48, 135, 1) 45%, rgba(0, 153, 255, 1) 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.portfolio_float_btn a span{
    display: block;
    padding: 10px 20px;
    background-color: var(--inteia-orange);
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    width: fit-content;
    font-family: 'Montserrat-Bold';
}

.fade-sides {
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);

  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}

.data_section_slide{
    line-height: normal;
    width: fit-content;
}

.data_section_slide strong{
    color: var(--inteia-orange);
    font-size: 5rem;
    width: 100%;
    display: block;
    text-align: center;
}

.data_section_slide p{
    font-family: 'Montserrat-Bold';
    font-size: 1.3rem;
    max-width: 400px;
    /* padding-right: 20px; */
    text-align: center;
    color: #00000090;
}

.flex-1{
    flex: 1;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 20px 0px;
  overflow: hidden;
  border-radius: 99px 0 0 99px;
}


.marquee-inner {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  gap: 50px;
}

.marquee-content {
  display: flex;
  gap: 50px;
}

.marquee-content img {
    height: 60px;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: .7;
}

.territories_section_container{
    background-color: var(--inteia-light-blue);
    border-radius: 40px;
    padding-top: 20px;
    max-height: 380px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
}

.territories_section_video video{
    mask-image: url("../images/t_mask.webp");
    mask-size: 90%;
    mask-clip: content-box;
    mask-position: 0px 15px;
    mask-repeat: no-repeat;
    width: 100%;
    min-height: 350px;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.territories_section_brands{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.territories_section_brands h2{
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat-Bold';
}

.portfolio_blog_section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio_blog_section h2{
    font-family: 'Montserrat-Bold';
    text-align: center;
    color: #013088;
}


.portfolio_blog_section h2 strong{
    color: var(--inteia-orange);
}

.portfolio_blog_cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio_blog_card{
    background-color: #efefef;
    border-radius: 20px;
    padding: 25px 20px;
}

.portfolio_blog_card a{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio_blog_card a h4{
    font-family: 'Montserrat-Bold';
    color: rgba(0, 48, 135, 1);
    font-size: 19px;
    transition: color .3s ease-in-out;
}

.portfolio_blog_card a p{
    font-family: 'Montserrat-Light';
    color: #00000090;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio_blog_card a span{
    background-color: var(--inteia-light-blue);
    color: #ffffff;
    font-size: 16px;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 30px;
    transition: background-color .3s ease-in-out;
}

.portfolio_blog_card_img{
    width: 100%;
    height: 230px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.portfolio_blog_card_img img{
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease-in-out;
    height: 100%;
}

.portfolio_blog_card:hover .portfolio_blog_card_img img{
    transform: scale(1.2);
}

.portfolio_blog_card:hover a h4{
    color: var(--inteia-orange);
}

.portfolio_blog_card:hover a span{
    background-color: var(--inteia-orange);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.portfolio_menu{
    display: flex;
    position: fixed;
    flex-wrap: wrap;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
    background: #00000080;
    backdrop-filter: blur(5px);
    min-height: 85px;
    justify-content: center;
    gap: 40px;
    align-items: center;
    transform: translateY(-100%);
    transition: transform .2s ease-in-out;
}

.portfolio_menu.show{
    transform: translateY(0%);
}


.portfolio_menu a{
    color: white;
    font-family: 'Montserrat-Light';
}

.portfolio_menu a:hover{
    color: var(--inteia-light-blue);
}

#portfolio_subproducts{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.portfolio_subproducts_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    pointer-events: none;
    opacity: 0;
}

.portfolio_subproducts_containers{
    position: absolute;
    width: 65%;
    max-width: 920px;
    top: 0;
    height: 100%;
    overflow-y: auto;
    background: #ffffffe8;
    padding: 35px 30px 30px 30px;
    right: 0;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
}

.portfolio_subproducts_containers.translate_in{
    transform: translateX(0%);
}

.portfolio_subproducts_containers_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio_subproducts_containers_title h3{
    font-size: 40px;
    margin: 0;
}


.portfolio_subproducts_containers_title  .btn_close_subproducts{
    background-image: url('../images/close_black.svg');
    outline: none;
    border: none;
    background-color: transparent;
    width: 35px;
    height: 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#portfolio_subproducts.opened{
    pointer-events: all;
}

.spot_green .portfolio_subproducts_containers_title h3{
    color: var(--inteia-green);
}

.spot_red .portfolio_subproducts_containers_title h3{
    color: var(--inteia-orange);
}

.spot_blue .portfolio_subproducts_containers_title h3{
    color: var(--inteia-blue);
}


.red_text{
    color: var(--inteia-orange);
}

.blue_text{
    color: var(--inteia-blue);
}

.green_text{
    color: var(--inteia-green);
}

.fade_in{
    animation: fade_in .5s ease-in-out forwards;
}

@keyframes fade_in {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}



.subproduct_cards{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.subproduct_card{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    border-radius: 30px;
    background-color: #fff;
}

.subproduct_card--blue{
    background: var(--inteia-blue);
    border: none !important;
}

.subproduct_card_img_bg{
    height: 70px;
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

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




.subproduct_card_img{
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
    position: relative;
}

.subproduct_card_img img{
    height: 100%;
    visibility: hidden;
}

.subproduct_card_img_icon{
    max-height: 50px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: visible !important;
}

.subproduct_card_img_txt{
    max-height: 50px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    color: #ffffff;
    transform: translate(-50%, -50%);
    margin: 0;
}

.subproduct_card_title{
    font-family: var(--inteia-font-bold);
    color: #013088;
    margin: 0;
    font-size: 20px;
}

.subproduct_card_p{
    font-size: 16px;
    font-family: var(--inteia-font-light);
    color: #00000090;
    margin: 0;
}

.spot_red .subproduct_card{
    border: 1px solid var(--inteia-orange);
}

.spot_blue .subproduct_card{
    border: 1px solid var(--inteia-blue);
}

.spot_green .subproduct_card{
    border: 1px solid var(--inteia-green);
}

.subproduct_card_img_bg::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* filter: brightness(0.6);
    opacity: .5; */
}

.spot_green .subproduct_card_img_bg::before{
    content: '';
    /* background-color: var(--inteia-green); */
    background: linear-gradient(180deg, rgba(0, 191, 99, 0.8) 0%, rgba(0, 60, 31, 0.8) 100%);
}

.spot_red .subproduct_card_img_bg::before{
    content: '';
    /* background-color: var(--inteia-orange); */
    background: linear-gradient(180deg, rgba(254, 80, 0, 0.8) 0%, rgba(55, 17, 0, 0.8) 100%);
}

.spot_blue .subproduct_card_img_bg::before{
    content: '';
    /* background-color: var(--inteia-blue); */
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.8) 0%, rgba(0, 48, 135, 0.8) 100%);
}

.subproduct_card--blue .subproduct_card_title{
    color: #ffffff;
    font-size: 30px;
    text-wrap: balance;
    margin-bottom: 10px;
}

.subproduct_card--blue .subproduct_card_title strong{
    color: var(--inteia-orange);
}

.subproduct_card--blue .subproduct_card_p{
    color: #ffffff;
}

.subproduct_card_url{
    display: block;
    padding: 10px 20px;
    background-color: var(--inteia-orange);
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    width: fit-content;
    font-family: 'Montserrat-Light';
}

.subproduct_card--blue  .subproduct_card_url{
    display: block;
    padding: 10px 20px;
    background-color: var(--inteia-orange);
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    width: fit-content;
    font-family: 'Montserrat-Light';
}

.data_section_swiper .swiper-slide {
  width: max-content !important;
}

.spot_mobile{
    display: none;
}

@media only screen and (max-width: 460px){
    .portfolio_blog_cards{
        grid-template-columns: 1fr;
    }

    .territories_section_video{
        display: none;
    }

    .territories_section_container{
        display: flex;
        flex-direction: column;
    }

    .territories_section_brands h2{
        text-align: center;
    }

    .marquee{
        border-radius: 0;
    }

    .territories_section_container{
        border-radius: 20px;
    }

    .challenge_section{
        padding: unset;
        margin-block: 4rem;
    }

    .challenge_section .d-flex{
        flex-direction: column;
    }

    .challenge_section_info{
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .vector_map_title{
        left: 20px;
        top: 30px;
    }

    .vector_map{
        background-size: 130%;
        background-position-x: 60%;
        background-position-y: 170%;
        padding-top: 100px;
    }

    .wrapper-main{
        width: 90% !important;
    }
    
    .portfolio_subproducts_containers{
        width: 100%;
        padding: 40px 20px;
    }

    .subproduct_cards{
        grid-template-columns: 1fr;
    }

    .spot_info::before{
        display: none;
    }

    .spot{
        display: none;
    }

    .spot_mobile{
        display: block;
    }

    .spot_info {
        animation: none;
        width: 96%;
        margin: 0 auto;
        position: relative;
        left: auto;
        right: auto;
    }

    .portfolio_float_btn{
        border: none;
        background-color: transparent;
        padding: 0;
        right: 10px;
        backdrop-filter: unset;
        box-shadow: unset;
    }

    .portfolio_float_btn a p{
        display: none;
    }

    .portfolio_menu{
        gap: 15px;
    }
}

:root{
    --inteia-orange: #FE5000;
    --inteia-blue: #071667;
    --inteia-light-blue: #0099ff;
    --inteia-green: #069F55;
    --inteia-font-bold: 'Montserrat-Bold';
    --inteia-font-light: 'Montserrat-Light';
}