body,
html,
textarea {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
}





html,
body,
p,
h1,
h2,
h3,
h4,
h5 {
    border: 0;
    margin: 0;
}

ul {
    border: 0;
    margin: 0;
    padding-top: 0;
    line-height: 125%;
}




a {
    text-decoration: none;
}




body {
    width: 100%;
    height: 100%;
    background: var(--body_backColor);
}

html {
    width: 100%;
    height: 100%;
}

body,
html {
    /*
    line-height: 1;
    */
    line-height: initial;
    font-size: 1.0rem;
}





p {
    line-height: 125%;
}





body>main>section,
body>section {}

body>main>section>div,
body>section>div {
    width: 100%;
    box-sizing: border-box;

    position: relative;
    width: 100%;
    max-width: var(--web_maxWidth);
    margin: 0 auto;
}

@media (min-width: 1551px) {

    body>main>section>div,
    body>section>div {
        padding: 2rem 0;
    }
}

@media (min-width: 1151px) and (max-width: 1550px) {

    body>main>section>div,
    body>section>div {
        padding: 2rem 1rem;
    }
}

@media (min-width: 668px) and (max-width: 1150px) {

    body>main>section>div,
    body>section>div {
        padding: 2rem 1rem;
    }
}

@media (max-width: 667px) {

    body>main>section>div,
    body>section>div {
        padding: 1rem 1rem;
    }
}












body#case-study .content {}

/*
body#case-study .content .col2 {
    margin-top: 5rem;
}
body#case-study .content .col3 {
    margin-top: 5rem;
}
*/


body#case-study .content .columns {
    display: grid;
    grid-template-columns: 4.0fr 2.0fr;
    gap: 5rem;
}

body#case-study .content ul {
    margin-left: -0.5rem;
}


body#case-study .content .col1>div,
body#case-study .content .col2>div {
    padding: 0.5rem 0;
    line-height: 150%;
}



body#case-study .content .subTitle_client {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    align-items: center;
}

body#case-study .content .client {
    font-size: 0.75rem;
    line-height: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    justify-items: center;
}

body#case-study .content .client img {
    border-radius: 100%;
    width: 7rem;
    height: 7rem;
}


body#case-study .content .title {
    font-size: 2.5rem;
    margin: 2rem 0 2rem 0;
    color: var(--firstColor);
}

body#case-study .content .subTitle {
    font-size: 1.55rem;
    margin: 1.0rem 0 0.25rem 0;
    color: var(--secondColor);
}

body#case-study .content .col2 .subTitle {
    margin: 0 0 0.25rem 0;
}

body#case-study .content ul li {
    padding: 0.5rem 0;
}



@media (min-width: 1551px) {}

@media (min-width: 1151px) and (max-width: 1550px) {}

@media (min-width: 668px) and (max-width: 1150px) {
    body#case-study .content .columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 667px) {
    body#case-study .content .columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
















.delegationsImage img {
    width: 100%;
    max-width: 80rem;
}

@media (min-width: 1551px) {}

@media (min-width: 1151px) and (max-width: 1550px) {}

@media (min-width: 668px) and (max-width: 1150px) {}

@media (max-width: 667px) {
    .delegationsImage img {
        margin-left: -1rem;
        width: calc(100% + 2rem);
    }
}









































body:has(.modalContainerOpened) {
    overflow: hidden
}

.modalContainer {
    position: fixed;
    z-index: 99999;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(.2rem);
    -webkit-backdrop-filter: blur(.2rem);

    display: flex;
    align-items: center;
    justify-content: center;
}

.modalContainer.modalContainerOpened {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s ease-in-out;
}

.modalContainer.modalContainerClosed {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

.modalContainer .modalContent {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 30rem;
    height: 90vh;
    background: var(--yellow);
    background: var(--white);
    border-radius: 1rem;
}

.modalIframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 1rem;
}

/*
@media (max-width: 667px) {
    .modalIframe {
        transform: scale(0.9);
    }
}
*/
















/* SOMBRA */
/* offset-x | offset-y | blur-radius | spread-radius | color */
/* box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.20); */
/* drop-shadow(offset-x offset-y blur-radius color) */
/* filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.40)); */

/* box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15); */
/* filter: drop-shadow(0 0 2rem rgba(37, 42, 100, 0.75)); */