@font-face {
font-family: 'Futura PT Book';
font-style: normal;
font-weight: normal;
src: local('Futura PT Book'), url('/fonts/futurapt/FuturaPTBook.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Light';
font-style: normal;
font-weight: normal;
src: local('Futura PT Light'), url('/fonts/futurapt//FuturaPTLight.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Medium';
font-style: normal;
font-weight: normal;
src: local('Futura PT Medium'), url('/fonts/futurapt//FuturaPTMedium.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Demi';
font-style: normal;
font-weight: normal;
src: local('Futura PT Demi'), url('/fonts/futurapt//FuturaPTDemi.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Heavy';
font-style: normal;
font-weight: normal;
src: local('Futura PT Heavy'), url('/fonts/futurapt//FuturaPTHeavy.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Bold';
font-style: normal;
font-weight: normal;
src: local('Futura PT Bold'), url('/fonts/futurapt//FuturaPTBold.woff') format('woff');
}


@font-face {
font-family: 'Futura PT Extra Bold';
font-style: normal;
font-weight: normal;
src: local('Futura PT Extra Bold'), url('/fonts/futurapt//FuturaPTExtraBold.woff') format('woff');
}


/* VARIABLES */
:root {
    --c-blue-50: #005483;
    --c-blue-100: #0069a4;
    --c-blue-200: #009edb;
    --c-blue-300: #33b1e2;
    --c-blue-400: #64b7e4;
    --c-blue-700: #9cceed;
    --c-blue-900: #c6e2f4;
    --c-blue-950: #e6f6fc;
    --c-yellow-100: #fcc110;
    --c-yellow-200: #fec620;
    --c-yellow-300: #ffd34f;
    --c-yellow-400: #ffdb6f;
    --c-yellow-700: #ffe493;
    --c-yellow-900: #ffefc0;
    --c-red-100: #db3b14;
    --c-black-100: #000000;
    --c-black-200: #4d4d4d;
    --c-black-300: #808080;
    --c-black-400: #b3b3b3;
    --c-black-900: #eeeeee;
}

/* MAIN STYLES */

html {
    font-size: 16px;
}

body {
    font-family: 'Futura PT Book', Arial, Helvetica, sans-serif, system-ui;
}

section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

*:last-child {
    margin-bottom: 0;
}

hr {
    border-top-width: 3px;
}

.mb-4 {
    margin-bottom: 3rem !important;
}

/* Default: mobile–tablet */
h1, .h1 { font-size: 40px; }
h2, .h2 { font-size: 32px; }
h3, .h3 { font-size: 22px; }
h4, .h4 { font-size: 20px; }
h6, .h6 { font-size: 15px; }

button:focus:not(:focus-visible) {
    box-shadow: none;
    color: unset;
}

@media (min-width: 992px) {
    html {
        font-size: 20px;
    }

    header {
        font-size: 16px;
    }

    h1, .h1 { font-size: 52px; }
    h2, .h2 { font-size: 40px; }
    h3, .h3 { font-size: 28px; }
    h4, .h4 { font-size: 21px; }
    h6, .h6 { font-size: 16px; }
}

@media (min-width: 1400px) {
    header {
        font-size: 16px;
    }

    h1, .h1 { font-size: 64px; }
    h2, .h2 { font-size: 48px; }
    h3, .h3 { font-size: 34px; }
    h4, .h4 { font-size: 22px; }
    h6, .h6 { font-size: 16px; }
}

/* COMPONENTS */
.table-container {
    position: relative;
}

.table-container::before {
    content: '';
    display: block;
    width: 98%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin-inline: .25rem;
    background-color: var(--c-blue-950);
    border-radius: 1rem;
    z-index: -1;
}

.table {
    --bs-table-border-color: var(--c-blue-200);
    --bs-table-bg: transparent;
}

.table>:not(caption)>*>* {
    border-bottom-width: 2px;
    padding: .5rem 1rem .25rem;
}

.table>:not(caption)>*:last-child>td {
    border-bottom-width: 0px;
}
/* Tables */


/* Image width alttext component */
.image-with-alttext[data-alt-position=right] {
    display: grid;
    align-items: center;
    gap: .75rem;
    grid-template-columns: 1fr max(6rem);
}

.image-with-alttext[data-alt-alignment=top] {
    align-items: start;
}

.image-with-alttext[data-size=small] {
    max-width: 400px;
}

@media screen and (min-width: 768px) and (max-width: 992px)  {
    .image-with-alttext[data-alt-position=bottom] {
        order: 3;
    }
}

.image-with-alttext img {
    border-radius: 8px;
    width: 100%;
}

.image-with-alttext .quote__wrapper {
    display: flex;
    background-color: var(--c-blue-100);
    border-radius: 8px;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .image-with-alttext .quote__wrapper {
        flex-wrap: wrap;
    }
}

.image-with-alttext .quote__wrapper img {
    max-width: 320px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 0;
}

@media screen and (max-width: 1200px) {
    .image-with-alttext .quote__wrapper img {
        max-width: 100%;
    }
}

.image-with-alttext .quote__text {
    margin: 2rem;
    color: white;
    position: relative;
}

.image-with-alttext .quote__text span {
    position: relative;
    z-index: 1;
}

.image-with-alttext .quote__text::before,
.image-with-alttext .quote__text::after {
    content: '';
    display: inline-block;
    font-size: 4.5rem;
    color: var(--c-blue-50);
    font-style: normal;
    font-family: 'bootstrap-icons';
    position: absolute;
    width: 0;
    line-height: 0;
    opacity: .75;
    z-index: 0;
}

.image-with-alttext .quote__text::before {
    content: '\F6B0';
    transform: translate(-42px, 18px);
}

.image-with-alttext .quote__text::after {
    content: '\F6B0';
    transform: rotateZ(180deg) translate(-52px, -22px);
}

.image-with-alttext .alt-text {
    font-size: .95em;
    font-style: italic;
    line-height: 1.375;
}

.image-with-alttext[data-alt-position=right] .alt-text {
    max-width: 6rem;
}

.image-with-alttext .alt-text::before {
    content: '';
    display: block;
    font-size: 1.25rem;
    font-style: normal;
    font-family: 'bootstrap-icons';
    color: var(--image-with-alttext-caret-color, #000000);
}

.image-with-alttext[data-alt-position=bottom] .alt-text::before {
    content: '\F235';
}

.image-with-alttext[data-alt-position=right] .alt-text::before {
    content: '\F22D';
}


/* Component - Pillar Highlight */
.pillar-highlight .wrapper {
    max-width: 60ch;
}

.pillar-highlight .quote__text {
    font-size: 2rem;
    position: relative;
    padding-top: 3.125rem;
}

.pillar-highlight .quote__text::before,
.pillar-highlight .quote__text::after {
    content: '';
    display: inline-block;
    font-size: 3.125rem;
    color: var(--c-red-100);
    font-style: normal;
    font-family: 'bootstrap-icons';
    position: absolute;
    width: 0;
    line-height: 0;
    z-index: 0;
}

.pillar-highlight .quote__text::before {
    content: '\F6B0';
    transform: translate(-10px, -30px);
}

.pillar-highlight .quote__text::after {
    content: '\F6B0';
    transform: rotateZ(180deg) translate(-60px, -15px);
}

@media screen and (min-width: 768px) {
    .pillar-highlight-image {
        min-width: 500px;
        max-width: 500px;
    }

    .pillar-highlight .quote__text {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .pillar-highlight-image {
        aspect-ratio: 4 / 3;
        object-position: top;
    }
}

/* Component - Pillar Highlight Secondary */
@media screen and (min-width: 768px) {
    .pillar-highlight-secondary .wrapper {
        max-width: 60ch;
    }
}

@media screen and (min-width: 1200px) {
    .pillar-highlight-secondary .wrapper {
        max-width: 75ch;
    }
}

.pillar-highlight-secondary .quote__text {
    margin: 2rem;
    color: white;
    position: relative;
}

.pillar-highlight-secondary .quote__text span {
    position: relative;
    z-index: 1;
}

.pillar-highlight-secondary .quote__text::before,
.pillar-highlight-secondary .quote__text::after {
    content: '';
    display: inline-block;
    font-size: 4.5rem;
    color: var(--c-blue-50);
    font-style: normal;
    font-family: 'bootstrap-icons';
    position: absolute;
    width: 0;
    line-height: 0;
    opacity: .35;
    z-index: 0;
}

.pillar-highlight-secondary .quote__text::before {
    content: '\F6B0';
    transform: translate(-42px, 18px);
}

.pillar-highlight-secondary .quote__text::after {
    content: '\F6B0';
    transform: rotateZ(180deg) translate(-52px, -22px);
}

/* CLASSES GERAIS */

@media (min-width: 1400px) {
    /*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1720px;
        width: calc(100% - 180px);
    }
    .row {
        width: calc(100% + var(--bs-gutter-x));
    }*/
}
.font-weight-700 {
    font-weight: 700;
}

.pd-padrao {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .pd-padrao {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}


.pt-padrao {
    padding-top: 50px;
}

@media screen and (min-width: 768px) {
    .pt-padrao {
        padding-top: 90px;
    }
}

.pb-padrao {
    padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .pb-padrao {
        padding-bottom: 90px;
    }
}

.quote__text {
    font-weight: 400;
    font-style: normal;
    font-family: 'cherry-blossoms-regular', Arial, Helvetica, sans-serif, system-ui;
    letter-spacing: 1.3px;
    font-size: 2rem;
    line-height: 1;
}

@media (min-width: 1400px) {
    .infos {
        border-left: 5px solid #fff;
        padding-left: 15px;
    }

    .infos-right {
        border-right: 5px solid #fff;
        padding-right: 15px;
    }

    .infos h3 {
        font-size: 23px;
    }
}

/* CORES */

.bg-neutral-950 {
    background-color: var(--c-blue-950) !important;
}

.bg-primary {
    background-color: var(--c-blue-200) !important;
}

.bg-blue-300 {
    background-color: var(--c-blue-300) !important;
}

.bg-blue-950 {
    background-color: var(--c-blue-950) !important;
}

.bg-secundary {
    background-color: #005483 !important;
}

.bg-tertiary {
    background-color: #3568A0 !important;
}

.bg-people {
    background-color: #7771B1 !important;
}

.bg-unosat {
    background-color: #D53216 !important;
}

.bg-agenda {
    background-color: #313D5E !important;
}

.bg-peace {
    background-color: #63C3EF !important;
}

.bg-planet {
    background-color: #219E45 !important;
}

.bg-prosperity {
    background-color: #F09300 !important;
}

.bg-multilateral-diplomacy {
    background-color: #B81371 !important;
}

.bg-ncd {
    background-color: #1F7129 !important;
}

.bg-partnerships {
    background-color: var(--c-blue-200) !important;
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #323E5F;
    opacity: .15;
    z-index: -1;
}

.text-neutral-100 {
    color: var(--c-blue-100) !important;
}

.text-primary {
    color: var(--c-blue-200) !important;
}

.text-blue-300 {
    color: var(--c-blue-300) !important;
}

.text-yellow-300 {
    color: var(--c-yellow-200) !important;
}

.text-secundary {
    color: #005483 !important;
}

.text-tertiary {
    color: #3568A0 !important;
}

.text-people {
    color: #7172B4 !important;
}

.text-unosat {
    color: #DB3B14 !important;
}

.text-agenda {
    color: #2E4161 !important;
}

.text-peace {
    color: #4cc0ef !important;
}

.text-planet {
    color: #28a553 !important;
}

.text-prosperity {
    color: #F39400 !important;
}

.text-multilateral-diplomacy {
    color: #B71079 !important;
}

.text-ncd {
    color: #2d9a47 !important;
}

.text-partnerships {
    color: var(--c-blue-200) !important;
}

.bg-primary .text-light,
.bg-secundary .text-light,
.bg-tertiary .text-light {
    color: #B8DEF6 !important;
}

.border-people {
    border-color: #7172B4 !important;
}

.border-unosat {
    border-color: #DB3B14 !important;
}

.border-agenda {
    border-color: #2E4161 !important;
}

.border-peace {
    border-color: #4cc0ef !important;
}

.border-planet {
    border-color: #28a553 !important;
}

.border-prosperity {
    border-color: #F39400 !important;
}

.border-multilateral-diplomacy {
    border-color: #B71079 !important;
}

.border-ncd {
    border-color: #2d9a47 !important;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}
.tracking-tight {
    letter-spacing: -0.025em;
}
.tracking-normal {
    letter-spacing: 0em;
}
.tracking-wide {
    letter-spacing: 0.025em;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-widest {
    letter-spacing: 0.1em;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: var(--c-yellow-200);
    border-radius: 100px;
    padding: 10px 25px;
    color: #222;
    font-weight: 700;
    border: none;
    transition: background .2s;
}

.btn.transparent {
    background-color: transparent;
}

.btn:hover {
    background-color: #323E5F;
    color: #fff;
}

.text-white .btn:hover {
    background: #fff;
    color: #323E5F !important;
}

.btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: background .2s;
}

.btn i>* {
    fill: #323E5F;
}

.btn-circle-icon {
    padding: 4px 4px 4px 25px;
}

.btn-circle-icon i {
    background-color: #323E5F;
    width: 36px;
    height: 36px;
    border-radius: 100px;
}

.text-white .btn-circle-icon i {
    background-color: #fff;
}

.btn-circle-icon i>* {
    fill: #fff;
}

.text-white .btn-circle-icon i>* {
    fill: var(--c-blue-200);
}

.btn-circle-icon.left {
    padding: 4px 25px 4px 4px;
    order: 0;
    flex-direction: row-reverse;
}

.btn.left i {
    margin-left: 0;
    margin-right: 15px;
}

.btn-secundary {
    background-color: #323E5F;
    color: #fff;
}

.btn-secundary:hover {
    background: var(--c-blue-200);
    color: #fff;
}

.btn-secundary.btn-circle-icon i {
    background-color: var(--c-blue-200);
}

.btn-secundary.btn-circle-icon:hover i {
    background-color: #323E5F;
}

.btn-gotop {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    transform: translateY(0%);
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    padding: 1.2rem;
}

.btn-gotop:hover {
    border: 1px solid var(--c-black-900);
}

.btn-gotop.hide {
    transform: translateY(-50%);
    opacity: 0;
}

.btn-gotop svg {
    transform: scale(2.5);
}


/* NAVBAR */
.navbar,
.navbar-brand {
    padding: 0;
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(69, 65, 61, 0.2);
    transition: transform 0.3s ease-in-out;
}

.header-main.hide {
    transform: translateY(-100%);
}

.header-main .navbar-brand {
    height: 65px;
}

.header-main .navbar-brand img {
    height: 100%;
    width: auto;
}

.navbar-nav a {
    font-size: 16px;
    color: #000;
}

.navbar-nav a:hover {
    color: #3E92CF;
}

.navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    max-width: 320px;
    padding: 30px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    overflow: auto;
    max-height: calc(100vh - 90px);
}

.navbar-toggler-icon {
    display: block;
    position: relative;
    height: 3px;
    background: #3e92cf;
    border-radius: 3px !important;
}

.navbar-toggler {
    padding: 10px 0;
    border: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 100%;
    height: 3px;
    left: 50%;
    border-radius: 3px !important;
    transform: translateX(-50%);
    position: absolute;
    background-color: #3e92cf;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.dropdown-menu {
    padding: 0;
    margin: 0 -30px;
    border-radius: 0;
    background-color: #EBECEC;
}

.dropdown-menu .nav-link {
    padding: 7px 30px;
    transition: all 0.3s ease-in-out;
}

.dropdown-menu .nav-link:hover {
    background-color: #3e92cf;
    color: #fff;
}

.nav-link {
    transition: color 0.3s ease-in-out;
}

@media (max-width: 575px) {
    .header-main>.container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) {
    .header-main .navbar-brand {
        height: 80px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
    }

    .navbar-expand-lg .navbar-collapse>.btn {
        margin-top: 0;
        margin-left: 50px;
    }
}

@media (min-width: 1400px) {
    .navbar .navbar-collapse {
        position: static;
        top: calc(100% + 15px);
        right: 0;
        width: auto;
        max-width: none;
        padding: 0;
        background-color: transparent;
        overflow: visible;
        justify-content: flex-end;
    }

    .navbar-nav>li {
        border-right: 1px solid #ccc;
    }

    .navbar-nav>li>.nav-link {
        padding: 0 15px !important;
    }

    .dropdown-menu {
        padding: 15px 0;
        margin: 0 -30px;
        border-radius: 8px;
        background-color: #fff;
    }
}

/* FOOTER */
.pre-footer {
    background-color: var(--c-blue-200);
}

.pre-footer .btn-2 {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
}

.pre-footer .btn-2 i {
    margin-right: 15px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.pre-footer .btn-2:hover i {
    background-color: #313D5E;
}

.pre-footer .btn-2 i::after {
    content: '';
    display: block;
    border: 4px solid var(--c-blue-200);
    border-top: none;
    border-right: none;
    width: 15px;
    height: 15px;
    transform: rotate(45deg) translate(1px, -1px);
    transition: all 0.3s ease-in-out;
}

.pre-footer .btn-2:hover i::after {
    border-color: #fff
}

.pre-footer .btn.icon {
    color: var(--c-blue-200);
    transition: all 0.3s ease-in-out;
}

.pre-footer .btn.icon:hover {
    background-color: #313D5E;
    color: #fff;
}

.pre-footer .btn.icon i {
    margin-left: 15px;
}

.pre-footer .btn.icon i svg path {
    fill: var(--c-blue-200);
    transition: all 0.3s ease-in-out;
}

.pre-footer .btn.icon:hover i svg path {
    fill: #fff;
}

@media (min-width: 992px) {
    .pre-footer .btn-2 {
        font-size: 22px;
    }
}

@media (min-width: 1600px) {
    .pre-footer .btn-2 i {
        margin-right: 20px;
        width: 50px;
        height: 50px;
    }

    .pre-footer .btn-2 i::after {
        border: 6px solid var(--c-blue-200);
        border-top: none;
        border-right: none;
        width: 20px;
        height: 20px;
    }

    .pre-footer .btn-2 {
        font-size: 32px;
    }

    .pre-footer .btn.icon {
        font-size: 22px;
    }
}

footer .container {
    padding-top: 35px;
    padding-bottom: 35px;
}

footer .navbar-brand {
    max-width: 220px;
    display: block;
}

.nav-social li {
    width: 42px;
    margin: 0 8px;
}

.nav-social li:first-child {
    margin-left: 0;
}

.nav-social li:last-child {
    margin-right: 0;
}

.nav-social li a {
    border-radius: 100px;
    display: block;
    border: 1px solid #fff;
    box-shadow: 0 0 0 0 rgba(58, 141, 222, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

.nav-social li:hover a {
    box-shadow: 0 0 0 5px rgba(58, 141, 222, 0.5);
}

.nav-social li a i {
    display: block;
}

.nav-social li a i svg {
    width: 100%;
    height: auto;
    fill: var(--c-blue-200);
}


/* HOME */

.hero {
    min-height: 100vh;
}

.hero .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: grid;
    place-items: center;
}

.hero .bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .bg img {
    object-fit: cover;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero:not(.hero-full) .bg {
        min-height: 50vh;
        height: auto;
    }

    .hero:not(.hero-full) .bg img {
        min-height: 50vh;
    }
}

@media screen and (min-width: 1200px) {
    .hero:not(.hero-full) .bg img {
        max-width: 1200px;
    }
}

.hero .container {
    padding-top: 130px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .hero:not(.hero-full),
    .hero:not(.hero-full)>.container {
        min-height: 50vh;
    }
}

@media (min-width: 992px) and (orientation: landscape) {
    .hero:not(.hero-full)>.container {
        min-height: 100svh;
        padding-top: 90px;
    }
}

.hero-full .bg {
    display: block;
}

.hero-full .bg img {
    mix-blend-mode: soft-light;
    opacity: 0.85;
    width: 100svw;
    height: 100svh;
}

.hero-small {
    background: var(--c-blue-950);
    position: relative;
}

.hero-small-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 55ch;
    padding-top: 10rem;
    padding-bottom: 3rem;
}


.hero-small .title{
    text-wrap: balance;
}

.hero-small .subtitle {
    font-size: 1.5rem;
    line-height: 1.3;
}

.hero-small .nav .nav-link {
    --bs-nav-link-padding-y: .25rem;
    --bs-nav-link-padding-x: 1.25rem;
    --bs-nav-link-font-size: .95rem;
    --bs-nav-link-color: #fff;
    --bs-nav-link-hover-color: #fff;
    --bs-nav-link-disabled-color: #fff;
    border-radius: 4rem;
    border: 2px solid #fff;
}

.hero-small .nav .nav-link:hover,
.hero-small .nav .nav-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-small .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: -1;
}

.foreword .foto {
    position: relative;
    padding-top: 140%;
    height: 100%;
}

.foreword .foto .image {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
}

.foreword .foto .image .detalhe-bg {
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
}

.foreword .image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.foreword .infos {
    border-width: 0;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .foreword .foto .image .detalhe-bg {
        left: calc(var(--bs-gutter-x) * .5);
        width: 80px;
    }

    .foreword .foto .image {
        left: auto;
        right: 0;
        transform: none;
        width: 50vw;
        height: 100%;
    }
}

@media (min-width: 992px) {
    .foreword .texto .detalhe-bg {
        top: 0;
        right: 0;
        width: 80px;
        height: 100%;
        background-position: calc(100% - 3px);
    }
}

.image-gallery {
    display: grid;
    gap: 3rem;
}

@media screen and (min-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* VIDEO element */

.foreword-video-container .video-controls {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.foreword-video-container:hover .video-controls,
.foreword-video-container:focus .video-controls {
    visibility: visible;
    opacity: 1;
}

.video-controls {
    display: inline-flex;
    flex-direction: column;
    gap: .5rem;
}

.video-controls button {
    appearance: none;
    background-color: rgba(0, 0, 0, 0.45);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1rem;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    height: 42px;
    opacity: .7;
    width: 42px;
}

.video-controls button:hover,
.video-controls button:focus {
    opacity: 1;
}

.video-controls button[data-state=mute] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23fff" stroke="%23fff"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M301.1 34.8C312.6 40 320 51.4 320 64l0 384c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352 64 352c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l67.8 0L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z"/></svg>');
}

.video-controls button[data-state=unmute] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" fill="%23fff" stroke="%23fff"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M533.6 32.5C598.5 85.2 640 165.8 640 256s-41.5 170.7-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64l0 384c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352 64 352c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l67.8 0L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z"/></svg>');
}

.video-controls button[data-state=play] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%23fff" stroke="%23fff"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80L0 432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"/></svg>');
    background-size: .75rem;
}

.video-controls button[data-state=pause] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" fill="%23fff" stroke="%23fff"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M48 64C21.5 64 0 85.5 0 112L0 400c0 26.5 21.5 48 48 48l32 0c26.5 0 48-21.5 48-48l0-288c0-26.5-21.5-48-48-48L48 64zm192 0c-26.5 0-48 21.5-48 48l0 288c0 26.5 21.5 48 48 48l32 0c26.5 0 48-21.5 48-48l0-288c0-26.5-21.5-48-48-48l-32 0z"/></svg>');
    background-size: .75rem;
}

.video-controls button[data-state=restart] {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23fff" stroke="%23fff"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M463.5 224l8.5 0c13.3 0 24-10.7 24-24l0-128c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8l119.5 0z"/></svg>');
}

/* SECTIONS */
#our-story {
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

#global-reach {
    border-top-left-radius: 50% 6rem;
    border-top-right-radius: 50% 6rem;
    border-bottom-left-radius: 50% 6rem;
    border-bottom-right-radius: 50% 6rem;
    background: var(--c-blue-200) linear-gradient(to right, var(--c-blue-100), var(--c-blue-200));
}

#media-engagement {
    z-index: 0;
    margin-top: -6rem;
    padding-top: 6rem;
}

.hl-item {
    margin-bottom: 40px;
    position: relative;
}

.hl-item--decorated::before {
    content: '';
    position: absolute;
    inset: -1.05rem -1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    border-top-left-radius: .325rem;
    border-top-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-left-style: solid;
    border-color: inherit;
    z-index: -1;
}

.hl-item:last-child {
    margin-bottom: 0;
}

.hl-item img {
    width: 130px;
    height: auto;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hl-item {
        display: flex;
        align-items: center;
        align-items: flex-start;
        margin-bottom: 100px;
    }

    .hl-item--decorated::before {
        inset: -1.25rem -1.65rem;
    }

    .hl-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .hl-item img {
        margin-right: 40px;
        margin-bottom: 0;
        margin-top: -20px;
    }

    .hl-item:nth-child(even) img {
        margin-left: 40px;
        margin-right: 0;
    }
}
@media (min-width: 1400px) {
    .hl-item {
        margin-bottom: 120px;
    }

    .hl-item img {
        width: 150px;
    }
}

.financial-info-contributions .col:first-child .title {
    max-width: 20ch;
}

.financial-info-contributions .col:last-child .title {
    max-width: 30ch;
}
