@font-face {
    font-family: 'Mona Sans';
    src:
        url('./../fonts/Mona-Sans.woff2') format('woff2 supports variations'),
        url('./../fonts/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

body {
    font-family: 'Mona Sans';
    background-color: var(--c-dark);
    zoom: 90%;
}

:root {
    --c-dark: #222323;
    --c-gray: #77828C;
    --c-blueprimary: #10ACE4;
    --c-bluelight: #7CDCFF;
    --c-babyblue: #F1F7FB;
    --c-white: #ffffff;
    --c-bluegradient: linear-gradient(180.03deg, #7CDCFF 0.03%, rgba(124, 220, 255, 0.7) 100%);
    --box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);

}

/* COLORS BG & FONTS */
.bg-lightblue-color {
    background-color: var(--c-babyblue);
}

.bg-none {
    background-color: transparent;
    border-color: transparent;
}

.bg-white-color {
    background-color: var(--c-white);
}

.dark-color {
    color: var(--c-dark);
}

.light-color {
    color: var(--c-white);
}

.lightblue-color {
    color: var(--c-bluelight);
}

.gray-color {
    color: var(--c-gray);
}

.blue-color {
    color: var(--c-blueprimary);
}

.lightblue-color {
    color: var(--c-bluelight);
}

/* TYPOGRAPHY STYLEGUIDE */
h1 {
    font-style: normal;
    font-weight: 800;
    font-stretch: 125%;
    font-size: 120px;
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
    color: var(--c-babyblue);
}

.regular-weight {
    font-weight: 200;
}

h2 {
    font-style: normal;
    font-weight: 600;
    font-stretch: 125%;
    font-size: 64px;
    line-height: 1.1em;
    color: var(--c-white);
}

h3 {
    font-style: normal;
    font-weight: 600;
    font-stretch: 125%;
    font-size: 48px;
    line-height: 1em;
}

h4 {
    font-style: normal;
    font-weight: 500;
    font-stretch: 125%;
    font-size: 36px;
    line-height: 1.1em;
}

h5 {
    font-style: normal;
    font-weight: 600;
    font-stretch: 125%;
    font-size: 24px;
    line-height: 1.2em;

}

h6 {
    font-style: normal;
    font-weight: 600;
    font-stretch: 125%;
    font-size: 32px;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 14px;

}

.paragraph {
    font-style: normal;
    font-weight: 300;
    line-height: 1.6em;
}

.paragraph.large {
    font-size: 20px;
}

.paragraph.medium {
    font-size: 18px;
}

.paragraph-small {
    font-size: 16px;
}

.category-title {
    font-size: 13px;
    font-family: Mona-Sans;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-title {
    font-family: 'Mona-Sans';
    font-style: normal;
    font-stretch: 125%;
    font-weight: 600;
    font-size: 18px;
    color: var(--c-dark);
    margin-bottom: 30px;
}

.counter-title {
    font-size: 14px;
    font-family: Mona-Sans;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--c-gray);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

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

.image-radius img {
    border-radius: 10px;
}

.section-padding-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.section-padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.section-padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    overflow: hidden;
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}

/* NAVBAR */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(34, 35, 35, 0.3) 0%, rgba(34, 35, 35, 0) 100%);
    backdrop-filter: blur(20px);
    z-index: 10;
    position: relative;
}

.navbar.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar-nav .nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    color: var(--c-babyblue);
    display: flex;
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}

.navitem-container {
    padding: 8px 10px;
    background: rgba(34, 35, 35, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 10px;
}

/* BTN */
.btn {
    font-weight: 600;
    font-size: 15px;
    border-radius: 8;
    padding: 14px 28px;
}

.btn-brand {
    color: var(--c-blueprimary);
    background-color: var(--c-white);
}

.btn-brand:hover {
    color: var(--c-white);
    background-color: var(--c-blueprimary);
}

/* ----- HERO ----- */
#hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 94px;
    /* Adjust the top padding to match your layout needs */
}

#heroVideo {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    min-width: 100%;
    z-index: -1;
    mix-blend-mode: screen;
}

.container {
    z-index: 2;
    /* Ensures container content is above the video */
    position: relative;
}

/* Gradient overlay to ensure text is readable */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darken the video slightly to improve text visibility */
    z-index: 1;
}

/* ----- SERVICES SECTION TITLE ----- */
.category {
    margin-bottom: 30px;
    font-family: 'Mona-Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--c-blueprimary);
}


/* ----- ICONBOX ----- */
.iconbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

/* ----- SERVICE CARDS ----- */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex: 1;
    gap: 18px;
}

/* ID'S BACKGROUND */
#quote,
#about {
    background-color: var(--c-babyblue);
    background-position: center;
    background-size: cover;
}

#project {
    background-color: var(--c-white);
    background-position: center;
    background-size: cover;
}

#cofinanced {
    background-color: var(--c-babyblue);
    background-position: center;
    background-size: cover;
}

/* COUNTER */
#counter {
    background-color: var(--c-white);
    background-position: center;
    background-size: cover;
}

/* QUOTE BY CEO */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.quote-sign {
    display: block;
    width: 50px;
    margin-bottom: 20px;
}

.author {
    font-size: 18px;
    font-weight: 500;
    color: var(--c-dark);
}

.author-info {
    font-weight: 300;
    font-size: 15px;
    align-items: center;
    color: var(--c-gray);
}

.author-box {
    padding: 16px 24px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(19.833px);
    border-radius: 300px;
    width: fit-content;
}

.ceo_bg {
    background-image: url(../images/numbers-ceo-bg.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

/* PORTFOLIO */
#portfolio {
    background-color: var(--c-dark);
    background-position: center;
    background-size: cover;
}

.card .img img{
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.wrapper {
    max-width: fit-content;
    width: 100%;
    padding: 60px 0;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 20px;
    overflow: hidden;
}

.carousel .card {
    list-style: none;
    background: transparent;
    border-color: transparent;
    display: flex;
    align-items: start;
    justify-content: start;
}

.card-title {
    font-family: 'Mona-Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: var(--c-bluelight);
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 24px 0 8px 0;
}

.card-tags {
    display: flex;
    gap: 14px;
}

.tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    gap: 4px;
    border: 2px solid rgba(124, 220, 255, 0.5);
    border-radius: 6px;
    flex: none;
    font-size: 14px;
    font-family: 'Mona-Sans';
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    display: flex;
    align-items: center;
    color: var(--c-bluelight);
}

ul {
    padding-left: 0;
}

@media screen and (max-width:1000px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width:700px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }
}

/* NAVIGATION BUTTONS PORTFOLIO */
.navigation-buttons {
    text-align: center;
}

.nav-btn {
    border: 1px solid rgba(241, 247, 251, 0.35);
    background-color: transparent;
    color: rgba(241, 247, 251, 0.35);
    font-size: 20px;
    /* Adjust size as needed */
    line-height: 50px;
    /* Centers the icon vertically */
    width: 50px;
    /* Circular shape */
    height: 50px;
    /* Circular shape */
    border-radius: 50%;
    /* Makes it round */
    margin: 6px;
    cursor: pointer;
    outline: none;
    display: inline-block;
}

.nav-btn:hover {
    border: 1px solid var(--c-babyblue);
    background-color: transparent;
    color: var(--c-babyblue);
}

.nav-btn:focus {
    outline: none;
    /* Removes the focus outline to keep the style clean */
}

/* PARTNERS */
#partners {
    background-color: var(--c-white);
    background-position: center;
    background-size: cover;
}

#partners img {
    display: block;
    /* Ensures that the images are block-level elements to center properly */
    margin: 0 auto;
    /* Center images horizontally */
    width: 150px;
    /* Control the image width or use a percentage if preferable */
}

/* Responsive adjustments for devices with widths up to 768px */
@media (max-width: 768px) {
    #partners .col-sm-6 {
        margin: 20px;
        /* Adds space between rows */
        padding: 0 15px;
        /* Adds padding to the left and right of each column */
    }

    #partners img {
        width: 100%;
        /* Makes images responsive within the container */
        max-width: 150px;
        /* Limits the maximum width to maintain design consistency */
    }
}

/* FOOTER */
.new_footer_area {
    background: radial-gradient(105.76% 382.12% at -5.76% 13.18%, #0E678F 0%, #36A6D0 42.8%, #338FB0 79.6%, #64808A 100%)
}

.footer-bg {
    background-image: url(../images/footer-bg.svg);
    background-position: left;
    background-repeat: no-repeat;
}

.new_footer_top {
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
    margin-inline: 40px;
    border-radius: 10px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    z-index: 1;
    background-color: var(--c-babyblue);

}

.footer_bottom {
    font-family: 'Mona-Sans';
    font-size: 14px;
    font-weight: 350;
    color: var(--c-white);
    margin: 0px 50px;
}

.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: var(--c-blueprimary);
}

.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid rgba(119, 130, 140, 0.25);
    font-size: 24px;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: rgba(119, 130, 140, 0.5);
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.new_footer_top .f_social_icon a:hover {
    background: var(--c-dark);
    border-color: transparent;
    color: white;
}

.new_footer_top .f_social_icon a+a {
    margin-left: 4px;
}

.new_footer_top .f-title {
    margin-bottom: 30px;
    color: var(--c-dark);
}

.f_600 {
    font-weight: 600;
}

.f_size_18 {
    font-size: 18px;
}

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

/*************footer End*****************/

@media (max-width: 1400px) {
    h2.post__title {
        margin-bottom: 30px;
    }
}

.breadcrumb-light h1.post__title {
    color: var(--heading-color);
}

.breadcrumbs ul li {
    font-weight: 700;
    line-height: 1;
    z-index: 0;
    padding: 0 10px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .breadcrumbs ul li {
        font-size: 18px;
    }
}

.breadcrumbs ul li:first-child {
    padding-left: 0;
}

.breadcrumbs ul li:last-child {
    padding-right: 0;
}

.breadcrumbs ul li:before {
    content: "";
    right: -10px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    background-size: 9px;
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url(../images/blog/backspece.svg);
}

.breadcrumbs ul li:last-child:before {
    content: none;
}

.breadcrumbs ul li a {
    font-weight: 400;
    color: var(--white-color);
}

.breadcrumb-light .breadcrumbs ul li::before {
    background-image: url(../images/blog/backspece2.svg);
}

.breadcrumb-light .breadcrumbs ul li a {
    color: var(--heading-color);
}

.text-display {
    color: #FFF;
    text-align: center;
    font-family: Mona-Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    width: 340px;
    line-height: 160%; /* 28.8px */
}

.image-container {
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.overlay {
    background-color: rgba(34, 35, 35, 0.50);
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(3.5px);
}

.image-container:hover .overlay {
    opacity: 1;
    border-radius: 10px;
}

.image-container:hover img {
    transform: scale(1.05);
}

.binary-scope-bg{
    background-image: url(../images/Soluções_Globais.png);
    background-repeat: no-repeat;
    background-position: left;
    min-height: 36vh;
}

/*---- SINGLE PORTFOLIO ----*/
#portfoliosingle {
    text-align: center;
    background: radial-gradient(105.76% 382.12% at -5.76% 13.18%, #0E678F 0%, #36A6D0 42.8%, #338FB0 79.6%, #5f90a2 100%);
}

.hero_bg {
    background-image: url(../images/singlebgsection.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.description_bg {
    background-image: url(../images/descr-proj.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.secondary-nav {
    border-top: 0.5px solid var(--LIGHT-GRAY, #EBEFF2);
    border-bottom: 0.5px solid var(--LIGHT-GRAY, #EBEFF2);
    box-shadow: 0px 4px 100px 0px rgba(1, 23, 54, 0.05);
}

.secondary-nav-links {
    display: flex;
    border-left: 3px solid #EBEFF2;
    gap: 24px;
}

.secondary-nav-link{
    color: #77828C;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}

/*---- TIMELINE ----*/
ul.timeline {
    list-style-type: none;
    position: relative;
}

ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.timeline > li {
    margin: 20px 0;
    padding-left: 150px;
    padding-bottom: 300px;
}

ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

.timeline-segment {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: #fff;
}

.segment1 {
    background-color: var(--c-dark);
}

.segment2 {
    background-image: url('../images/Timeline.png');
}


.timeline-content {
    padding: 20px;
}

.timeline-box {
    position: relative;
}

.textlink {
    /*font-family: 'Mona-Sans';*/
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    text-decoration-line: underline;
    color: var(--c-bluelight);
}

.textlink:hover {
    text-decoration-line: underline;
    color: var(--c-blueprimary);
}

.timelinetext {
    width: 150px;
}
