@import url("https://use.typekit.net/xwi6pwb.css");

.wrapper {
    width: 100%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

@media (max-width: 1300px) {
    .wrapper {
        padding: 0 20px;
    }
}

* html .wrapper {
    height: 100%;
}

.workDetail a {
    color: var(--azul);
}

a {
    transition: all 250ms ease-in-out;
}

.boxCenter {
    max-width: 1240px;
    margin: 0 auto;
}

.header {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.header .menu {
    width: 100%;
    background: rgb(255, 186, 0);
    background: linear-gradient(
            91deg,
            rgb(255, 186, 0) 0%,
            rgb(255, 210, 85) 100%
    );
    border-radius: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.header .menu:after {
    content: "";
    z-index: 1;
    position: absolute;
    background: rgb(255, 255, 255);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 50%,
            rgb(181 145 49) 100%
    );
    width: 90px;
    height: 100%;
    right: 0;
    top: 0;
    display: none;
}

@media (max-width: 960px) {
    .header .menu:after {
        display: block;
    }
}

.header .menu .scroll {
    width: 100%;
    display: inline-flex;
    height: 100%;
    padding: 10px 0;
    z-index: 0;
}

@media (max-width: 960px) {
    .header .menu .scroll {
        overflow-x: scroll;
        overflow-y: hidden;
    }
}

/* .header .menu .scroll::-webkit-scrollbar {
    display: none;
} */

.header .menu .link {
    font-family: "ivypresto-text";
    font-size: 16px;
    line-height: 18px;
    color: #262626;
    font-weight: normal;
    padding: 0 20px;
    border-right: solid 2px rgba(38, 38, 38, 0.5);
    text-decoration: none;
    text-align: center;
    max-width: 145px;
    min-width: 135px;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.header .menu .link a {
    color: #262626;
    text-decoration: none;
}

.header .menu ul {
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    padding: 0 15px;
}

.header .menu ul li {
    font-size: 14px;
    line-height: 18px;
    margin: 0 15px;
    white-space: nowrap;
}

.header .menu ul li a {
    color: #262626;
    border: solid 1px transparent;
    border-radius: 8px;
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
}

.header .menu ul li a:hover,
.header .menu ul li a.active {
    border-color: #262626;
}

.main {
    width: 100%;
    flex: 1;
    min-height: 100%;
}

.favPosTop {
    position: absolute !important;
    z-index: 3 !important;
    right: 30px !important;
    top: 0 !important;
    background: url(../../imagens/portfolio/bg_fav.svg) no-repeat 50%;
    width: 25px !important;
    height: 30px !important;
}

.favPosTop:hover,
.favPosTop.active {
    background: url(../../imagens/portfolio/bg_fav_act.svg) no-repeat 50%;
}

.featuredWorks {
    width: 100%;
    display: inline-block;
}

.featuredWorks ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .featuredWorks ul {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.featuredWorks ul .item {
    background-color: #ddd;
    text-align: center;
    position: relative;
}

.featuredWorks ul .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.featuredWorks ul .item .texts {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: left;
    max-width: 300px;
}

.featuredWorks ul .item .texts h3 {
    color: #ffffff;
    font-size: 16px;
    line-height: 19px;
}

.featuredWorks ul .item .texts .agency {
    color: #ffffff;
    font-size: 14px;
    line-height: 19px;
    margin-top: 5px;
}

.featuredWorks ul .item .texts .time {
    color: #ffffff;
    font-size: 12px;
    line-height: 19px;
}

.featuredWorks ul .item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .featuredWorks ul .item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.featuredWorks ul .item:first-child .texts {
    max-width: 700px;
}

.featuredWorks ul .item:first-child .texts h3 {
    font-size: 25px;
    line-height: 26px;
}

.featuredWorks ul .item:first-child .texts .agency {
    font-size: 20px;
    line-height: 26px;
    margin-top: 5px;
}

.featuredWorks ul .item:first-child .texts .time {
    font-size: 12px;
    line-height: 26px;
}

.featuredWorks .moreWorks {
    border: 2px solid #ffbc00;
    border-radius: 18px;
    float: right;
    padding: 0 10px;
    color: #000000;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.featuredAgency {
    background: #f1f6eb;
    width: 100%;
    margin-top: 35px;
    padding: 35px;
}

@media (max-width: 1280px) {
    .featuredAgency {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
}

.featuredAgency h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
}

.featuredAgency ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 35px;
}

@media (max-width: 768px) {
    .featuredAgency ul {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.featuredAgency ul .item {
    aspect-ratio: auto;
    background-color: #ddd;
    text-align: center;
    position: relative;
}

.featuredAgency ul .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.featuredAgency ul .item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .featuredAgency ul .item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.featuredAgency .agency {
    padding: 25px 50px;
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .featuredAgency .agency {
        flex-direction: column;
        padding: 25px 0;
    }
}

.featuredAgency .agency .image {
    width: 240px;
    background: #000000;
    min-height: 135px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 75px;
    position: relative;
}

@media (max-width: 768px) {
    .featuredAgency .agency .image {
        width: 100%;
        margin-right: 0;
    }
}

.featuredAgency .agency .image .link {
    background: #ffbc00;
    border-radius: 18px;
    padding: 0 15px;
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    font-family: "ivypresto-display";
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    position: absolute;
    bottom: -25px;
    z-index: 2;
}

.featuredAgency .agency .image img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: inherit;
    z-index: 1;
    position: relative;
}

.featuredAgency .agency .texts {
    flex: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .featuredAgency .agency .texts {
        margin-top: 40px;
    }
}

.featuredAgency .agency .texts h3 {
    color: #000000;
    font-size: 35px;
    line-height: 40px;
    font-family: "ivypresto-display";
}

.featuredAgency .agency .texts p {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    margin-top: 17px;
}

.featuredAgency .agency .texts .location {
    color: #000000;
    font-size: 18px;
    line-height: 20px;
    margin-top: 5px;
    text-decoration: underline;
    display: inline-block;
}

.linkMoreArrow {
    color: #000000;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.linkMoreArrow:after {
    content: "";
    width: 15px;
    height: 21px;
    background: url(../../imagens/portfolio/arrow_right.svg) no-repeat 50%;
    margin-left: 10px;
}

.agencies {
    width: 100%;
    margin-top: 0px;
    padding: 35px;
}

@media (max-width: 768px) {
    .agencies {
        padding: 35px 0;
    }
}

.agencies .row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.agencies h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
}

@media (max-width: 960px) {
    .agencies h2 {
        padding: 0;
    }
}

.agencies ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 20px;
}

@media (max-width: 960px) {
    .agencies ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .agencies ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .agencies ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.agencies ul .item {
    text-align: left;
    min-height: 190px;
}

.agencies ul .item a {
    width: 100%;
    height: auto;
    text-decoration: none;
}

.agencies ul .item img {
    width: 100%;
    height: 145px;
    -o-object-fit: cover;
    object-fit: cover;
    display: inherit;
}

.agencies ul .item p {
    color: #000000;
    padding: 20px;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}

.boxPortfolio {
    background: #f1f6eb;
    width: 100%;
    padding: 35px;
}

@media (max-width: 1280px) {
    .boxPortfolio {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
}

.boxPortfolio .row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .boxPortfolio .row {
        flex-direction: column;
    }
}

.boxPortfolio h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 40px;
}

.boxPortfolio .link {
    background: #a69dff;
    border-radius: 18px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-family: "ivypresto-display";
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    min-width: 160px;
}

@media (max-width: 768px) {
    .boxPortfolio .link {
        margin-top: 10px;
    }
}

.boxPortfolio .link:hover {
    background: #33aa48;
}

.featuredContent {
    width: 100%;
    margin-top: 0px;
    padding: 35px;
}

@media (max-width: 768px) {
    .featuredContent {
        padding: 35px 0;
    }
}

.featuredContent .row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.featuredContent h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
}

@media (max-width: 960px) {
    .featuredContent h2 {
        padding: 0;
    }
}

.featuredContent ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 15px;
}

@media (max-width: 960px) {
    .featuredContent ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .featuredContent ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .featuredContent ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.featuredContent ul .item {
    text-align: center;
    min-height: 190px;
    position: relative;
}

.featuredContent ul .item img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    display: inherit;
}

.featuredContent ul .item a {
    width: 100%;
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.featuredContent ul .item .category {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
    background: #00a5e1;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
    padding: 2px 15px;
    min-width: 90px;
}

.featuredContent ul .item .texts {
    text-align: left;
    padding: 20px;
    padding-right: 60px;
}

.featuredContent ul .item .texts .title {
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    margin-top: 0;
}

.featuredContent ul .item .texts .subtitle {
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
}

.featuredContent ul .item .texts p {
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.featuredContent ul .item .texts .agency,
.featuredContent ul .item .texts .time {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    margin-top: 0;
}

.featuredContent ul .item .texts .time {
    margin-top: 5px;
}

.featuredContent ul .item .texts .bottom {
    margin-top: 20px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.featuredContent ul .item .texts .bottom .agency {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
}

.featuredContent ul .item .texts .bottom .date {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    margin-top: 0;
}

.clients {
    width: 100%;
    margin-top: 0px;
    padding: 35px;
}

@media (max-width: 768px) {
    .clients {
        padding: 35px 0;
    }
}

.clients .row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.clients h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
}

@media (max-width: 960px) {
    .clients h2 {
        padding: 0;
    }
}

.clients ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 15px;
}

@media (max-width: 960px) {
    .clients ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.clients ul .item {
    text-align: center;
    min-height: 190px;
    position: relative;
}

.clients ul .item .image {
    width: 100%;
    height: 145px;
    border: solid 1px #e4e4e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clients ul .item .image img {
    width: 90%;
    max-height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    display: inherit;
}

.clients ul .item a {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.clients ul .item .texts {
    text-align: left;
    padding: 20px;
}

.clients ul .item .texts .title {
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}

.clients ul .item .texts .agency {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    margin-top: 0;
}

.professionals {
    width: 100%;
    margin-top: 35px;
    padding: 35px;
    background: #f1f6eb;
}

@media (max-width: 1280px) {
    .professionals {
        margin-left: -20px;
        width: calc(100% + 40px);
    }
}

@media (max-width: 768px) {
    .professionals {
        padding: 35px 0;
    }
}

@media (max-width: 1280px) {
    .professionals .boxCenter {
        padding: 0 20px;
    }
}

.professionals .row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.professionals h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
}

@media (max-width: 960px) {
    .professionals h2 {
        padding: 0;
    }
}

.professionals ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-top: 15px;
}

@media (max-width: 960px) {
    .professionals ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .professionals ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.professionals ul .item {
    text-align: center;
    min-height: 190px;
}

.professionals ul .item img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
    object-fit: cover;
    display: inherit;
}

.professionals ul .item a {
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.professionals ul .item .texts {
    text-align: left;
    padding: 20px;
}

.professionals ul .item .texts .title {
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    margin-top: 0;
}

.professionals ul .item .texts .agency,
.professionals ul .item .texts .department {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    margin-top: 0;
}

.filters {
    width: 100%;
    height: 100%;
    background: #f1f6eb;
    max-width: 405px;
    padding: 50px 15px 50px 50px;
    margin-right: 50px;
    position: relative;
    z-index: 4;
}

.filters .close {
    position: absolute;
    right: -10px;
    top: 50px;
    width: 28px;
    height: 28px;
    border: solid 2px #ffffff;
    background: #f1f6eb url(../../imagens/portfolio/arrow_right.svg) no-repeat 50%;
    background-size: 8px;
    transform: rotate(180deg);
    cursor: pointer;
    border-radius: 25px;
}

.filters h2 {
    color: #000000;
    font-size: 19px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.filters h2:before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../../imagens/portfolio/ico_filter.svg) no-repeat 50%;
    background-size: 20px;
    margin-right: 10px;
}

.filters .line {
    width: 100%;
    height: 2px;
    display: inline-block;
    margin: 20px 0;
    background: #ffffff;
}

.filters .title {
    color: rgba(0, 0, 0, 0.65);
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}

.filters .more {
    color: #000000;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.filters .more:after {
    content: "";
    width: 15px;
    height: 21px;
    background: url(../../imagens/portfolio/arrow_right.svg) no-repeat 50%;
    margin-left: 10px;
    transform: rotate(90deg);
}

.filters .checkbox {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
    position: relative;
    height: 22px;
    margin-top: 10px;
    cursor: pointer;
}

.filters .checkbox input {
    display: none;
}

.filters .checkbox span {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 14px;
}

.filters .checkbox span:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: solid 1px #000000;
    position: absolute;
    left: 0;
    top: 0;
}

.filters .checkbox input:checked + span:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #000000;
    position: absolute;
    left: 5px;
    top: 5px;
}

.lineFilters {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.lineFilters .boxCenter {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.lineFilters .btFilter {
    background: #f1f6eb;
    font-size: 16px;
    line-height: 25px;
    min-width: 145px;
    padding: 5px 10px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    border-radius: 18px;
}

.lineFilters .btFilter::before {
    display: inline-flex;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../../imagens/portfolio/ico_filter.svg) no-repeat 50%;
    margin-right: 10px;
    background-size: 24px;
}

.boxOrder {
    background: #f1f6eb;
    min-width: 145px;
    padding: 5px 10px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 18px;
    position: relative;
    z-index: 5;
}

.boxOrder span {
    font-size: 16px;
    line-height: 25px;
    color: #000000;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.boxOrder span:after {
    display: inline-flex;
    content: "";
    width: 10px;
    height: 10px;
    background: url(../../imagens/portfolio/arrow_down.svg) no-repeat 50%;
    margin-left: 10px;
    background-size: 10px;
}

.boxOrder ul {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    background: #f1f6eb;
    min-width: 145px;
    padding: 5px 15px;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    border-radius: 18px;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
    text-align: left;
}

.boxOrder ul li {
    font-size: 14px;
    line-height: 21px;
}

.boxOrder ul li a {
    color: #000000;
    text-decoration: none;
    padding: 3px 0;
    display: inline-block;
}

.boxOrder ul li a:hover {
    text-decoration: underline;
}

.boxOrder:hover {
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

.boxOrder:hover ul {
    display: inline-flex;
}

.agencyDetail {
    width: 100%;
    height: auto;
}

.agencyDetail .video {
    width: 100%;
    height: 345px;
    background: #000;
    position: relative;
}

@media (max-width: 1280px) {
    .agencyDetail .video {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}

.agencyDetail .video .texts {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agencyDetail .video .texts .boxCenter {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 50px;
}

.agencyDetail .video .texts .share {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agencyDetail .video .texts .share:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../../imagens/portfolio/share.svg) no-repeat 50%;
    display: inline-block;
    margin-left: 10px;
}

.agencyDetail .top {
    width: 100%;
    display: inline-flex;
    background: #f1f6eb;
    padding: 50px 0 10px;
}

@media (max-width: 1280px) {
    .agencyDetail .top {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}

.agencyDetail .top .boxCenter {
    padding: 0 50px;
    position: relative;
}

@media (max-width: 768px) {
    .agencyDetail .top .boxCenter {
        padding: 0 20px;
    }
}

.agencyDetail .top .share {
    position: absolute;
    right: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -35px;
    z-index: 2;
}

.agencyDetail .top .share li a {
    display: inline-block;
    text-indent: -5000em;
    width: 30px;
    height: 30px;
    background: #f00;
    margin-left: 10px;
    cursor: pointer;
}

.agencyDetail .top .share li a.facebook {
    background: url(../../imagens/portfolio/ico_facebook.svg) no-repeat 50%;
}

.agencyDetail .top .share li a.x {
    background: url(../../imagens/portfolio/ico_x.svg) no-repeat 50%;
}

.agencyDetail .top .share li a.instagram {
    background: url(../../imagens/portfolio/ico_instagram.svg) no-repeat 50%;
}

.agencyDetail .top .share li a.youtube {
    background: url(../../imagens/portfolio/ico_youtube.svg) no-repeat 50%;
}

.agencyDetail .top .share li a.linkedin {
    background: url(../../imagens/portfolio/ico_linkedin.svg) no-repeat 50%;
}

.agencyDetail .top .infos {
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.agencyDetail .top.small .infos {
    align-items: center;
}

@media (max-width: 768px) {
    .agencyDetail .top .infos {
        flex-direction: column;
    }
}

.agencyDetail .top .infos .image {
    width: 240px;
    background: #000000;
    min-height: 135px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    position: relative;
}

.agencyDetail .top.small .infos .image {
    width: 180px;
}

@media (max-width: 768px) {
    .agencyDetail .top .infos .image {
        width: 100%;
    }
}

.agencyDetail .top .infos .image img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: inherit;
    z-index: 1;
    position: relative;
}

.agencyDetail .top .infos .texts {
    flex: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .agencyDetail .top .infos .texts {
        margin-top: 20px;
    }
}

.agencyDetail .top .infos .texts h3 {
    color: #000000;
    font-size: 39px;
    line-height: 40px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.agencyDetail .top .infos .texts p {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    margin-top: 17px;
}

.agencyDetail .top .nav {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.agencyDetail .top.small .nav {
    margin-top: 35px;
}

@media (max-width: 768px) {
    .agencyDetail .top .nav {
        margin-top: 25px;
        flex-direction: column;
    }
}

.agencyDetail .top .nav li {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin: 0 15px;
}

@media (max-width: 768px) {
    .agencyDetail .top .nav li {
        margin-top: 15px;
    }
}

.agencyDetail .top .nav li a {
    color: #000000;
    text-decoration: none;
    position: relative;
    padding: 0 4px;
}

.agencyDetail .top .nav li a:after {
    content: "";
    width: 0%;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 250ms ease-in-out;
}

.agencyDetail .top .nav li a.active:after,
.agencyDetail .top .nav li a:hover:after {
    width: 100%;
}

.agencyDetail .content {
    width: 100%;
    padding: 50px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.agencyDetail .content > .boxCenter {
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    align-items: stretch;
    justify-content: space-between;
}

.agencyDetail .content .filters {
    margin-top: -50px;
    height: inherit;
    padding-top: 125px;
}

.agencyDetail .content .right .featuredWorks {
    margin-top: 30px;
}

.agencyDetail .content .right .featuredWorks ul {
    grid-template-columns: repeat(1, 1fr);
}

.agencyDetail .content .right .featuredContent {
    padding: 35px 0;
}

.agencyDetail .content .right .featuredContent ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.agencyDetail .content .right .lineFilters {
    margin-top: 0;
}

.agencyDetail .content .featuredWorks ul {
    grid-template-rows: repeat(2, 1fr);
}

.agencyDetail .content .featuredContent {
    padding-top: 50px;
}

.agencyDetail .content .featuredContent.noTop {
    padding-top: 10px;
}

.agencyDetail .content .featuredContent ul {
    row-gap: 60px;
    margin: 0;
}

.agencyDetail .content .featuredContent ul li .title {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    margin-top: 0;
}

.agencyDetail .content .featuredContent ul li .time {
    color: rgba(0, 0, 0, 0.65);
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    margin-top: 0;
}

.agencyDetail .content .clients ul {
    row-gap: 60px;
    margin: 0;
}

.agencyDetail .content .professionals {
    background: transparent;
    padding-top: 0;
}

.agencyDetail .content .professionals ul {
    row-gap: 60px;
    margin: 0;
}

.agencyDetail .content .professionals ul li .texts {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
    width: 100%;
}

.agencyDetail .content .professionals ul li .texts .text {
    display: inline-flex;
    flex-direction: column;
    flex: 1;
}

.agencyDetail .content .professionals ul li .texts .linkedin {
    width: 27px;
    height: 27px;
    display: inline-flex;
    text-indent: -5000em;
    background: url(../../imagens/portfolio/ico_linkedin.svg) no-repeat 50%;
    background-size: 27px;
}

.agencyDetail .content .awards {
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.agencyDetail .content .awards .boxCenter {
    width: 100%;
    max-width: 780px;
}

.agencyDetail .content .awards h2 {
  font-size: 18px;
  margin-bottom: 21px;
}

.agencyDetail .content .awards h3 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.agencyDetail .content .awards h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 21px;
}

.agencyDetail .content .awards ul {
  margin-bottom: 25px;
}

.agencyDetail .content .awards li {
  list-style: inside;
  margin-left: 15px;
  font-size: 14px;
}

.agencyDetail .content .awards .award {
    width: 100%;
    margin-top: 35px;
}

.agencyDetail .content .awards .award p {
    color: #000000;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 21px;
}

.agencyDetail .content .awards .award p strong {
    font-weight: bold;
}

.agencyDetail .content .about {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agencyDetail .content .about > .boxCenter {
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

@media (max-width: 960px) {
    .agencyDetail .content .about > .boxCenter {
        flex-direction: column;
    }
}

.agencyDetail .content .about .sidebar {
    width: 100%;
    max-width: 415px;
    background: #f1f6eb;
    min-height: 500px;
    margin-right: 15px;
    margin-top: 45px;
    padding: 50px 20px 50px 50px;
}

@media (max-width: 960px) {
    .agencyDetail .content .about .sidebar {
        margin-right: 15px;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.agencyDetail .content .about .sidebar .title {
    color: rgba(0, 0, 0, 0.65);
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    margin-top: 0;
}

.agencyDetail .content .about .sidebar .title span {
    color: rgb(0, 0, 0);
}

.agencyDetail .content .about .sidebar p {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 17px;
    margin-top: 20px;
}

.agencyDetail .content .about .sidebar .line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    display: inline-block;
    margin: 20px 0;
}

.agencyDetail .content .about .sidebar .item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.agencyDetail .content .about .sidebar .item .cont {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.agencyDetail .content .about .sidebar .item strong {
    margin-right: 5px;
}

.agencyDetail .content .about .sidebar .item.first {
    margin-top: 0;
}

.agencyDetail .content .about .sidebar .item a {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
}

.agencyDetail .content .about .sidebar .item .location,
.agencyDetail .content .about .sidebar .item .phone,
.agencyDetail .content .about .sidebar .item .email,
.agencyDetail .content .about .sidebar .item .site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.agencyDetail .content .about .sidebar .item .location::before,
.agencyDetail .content .about .sidebar .item .phone::before,
.agencyDetail .content .about .sidebar .item .email::before,
.agencyDetail .content .about .sidebar .item .site::before {
    content: "";
    width: 15px;
    height: 15px;
    margin-right: 4px;
    display: inline-block;
}

.agencyDetail .content .about .sidebar .item .location {
    float: right;
    text-decoration: underline;
    margin-right: 0;
}

.agencyDetail .content .about .sidebar .item .location::before {
    background: url(../../imagens/portfolio/pin.svg) no-repeat 50%;
    background-size: 10px;
}

.agencyDetail .content .about .sidebar .item .phone::before {
    background: url(../../imagens/portfolio/phone.svg) no-repeat 50%;
    background-size: 15px;
}

.agencyDetail .content .about .sidebar .item .email::before {
    background: url(../../imagens/portfolio/email.svg) no-repeat 50%;
    background-size: 15px;
}

.agencyDetail .content .about .sidebar .item .site::before {
    background: url(../../imagens/portfolio/site.svg) no-repeat 50%;
    background-size: 15px;
}

.agencyDetail .content .about .sidebar .newProfessional {
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.agencyDetail .content .about .sidebar .newProfessional .image {
    background: #000;
    width: 120px;
    height: 120px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agencyDetail .content .about .sidebar .newProfessional .image img {
    max-width: 90%;
    max-height: 90%;
    -o-object-fit: contain;
    object-fit: contain;
    display: inherit;
}

.agencyDetail .content .about .sidebar .newProfessional .texts {
    width: 100%;
    flex: 1;
}

.agencyDetail .content .about .sidebar .newProfessional .texts p {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 17px;
}

.agencyDetail .content .about .sidebar .newProfessional .texts .name {
    font-weight: bold;
}

.agencyDetail .content .about .sidebar .newProfessional .texts a {
    margin-top: 5px;
}

.agencyDetail .content .about .sidebar .newProfessional .texts a.email,
.agencyDetail .content .about .sidebar .newProfessional .texts a.linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    line-height: 17px;
}

.agencyDetail .content .about .sidebar .newProfessional .texts a.email::before,
.agencyDetail
.content
.about
.sidebar
.newProfessional
.texts
a.linkedin::before {
    content: "";
    width: 15px;
    height: 15px;
    margin-right: 4px;
    display: inline-block;
}

.agencyDetail .content .about .sidebar .newProfessional .texts a.email {
    margin-top: 10px;
}

.agencyDetail .content .about .sidebar .newProfessional .texts a.email::before {
    background: url(../../imagens/portfolio/email.svg) no-repeat 50%;
    background-size: 15px;
}

.agencyDetail
.content
.about
.sidebar
.newProfessional
.texts
a.linkedin::before {
    background: url(../../imagens/portfolio/linkedin.svg) no-repeat 50%;
    background-size: 15px;
}

.agencyDetail .content .about .posts {
    width: 100%;
    flex: 1;
}

.agencyDetail .content .about .posts .featuredContent h2 {
    padding: 0;
}

.agencyDetail .content .about .posts .featuredContent.portfolio {
    padding-top: 0;
}

.agencyDetail .content .about .posts .featuredContent ul {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 45px;
    column-gap: 45px;
}

@media (max-width: 768px) {
    .agencyDetail .content .about .posts .featuredContent ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.agencyDetail .content .about .posts .featuredContent ul li .texts p {
    color: rgba(0, 0, 0, 0.65);
    font-size: 15px;
    line-height: 15px;
    font-weight: normal;
    margin-top: 0;
}

.agencyDetail .content .about .posts .featuredContent ul li .texts .title {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.agencyDetail .content .about .posts .featuredContent ul li .texts .time {
    font-size: 12px;
    line-height: 12px;
    margin-top: 5px;
}

.agencyDetail .content .about .posts .clients h2 {
    padding: 0;
}

.agencyDetail .content .about .posts .clients ul {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2px;
    column-gap: 2px;
}

@media (max-width: 768px) {
    .agencyDetail .content .about .posts .clients ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.agencyDetail .content .about .posts .professionals h2 {
    padding: 0;
}

.agencyDetail .content .about .posts .professionals ul {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 45px;
    column-gap: 45px;
}

@media (max-width: 768px) {
    .agencyDetail .content .about .posts .professionals ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.agencyDetail .content .about .posts .professionals ul li .texts {
    flex-direction: column;
}

.agencyDetail .content .about .posts .professionals ul li .texts .department {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #000000;
    width: 100%;
}

.agencyDetail .content .about .posts .professionals ul li .texts .title {
    font-size: 19px;
    line-height: 20px;
    font-weight: bold;
    color: #000000;
    width: 100%;
    margin-top: 10px;
}

.filtersPage {
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
}

.filtersPage > .boxCenter {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.filtersPage .lineFilters {
    margin-top: 0;
}

.filtersPage .lineFilters .btFilters {
    font-size: 15px;
    line-height: 16px;
    color: #000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    display: none;
}

@media (max-width: 1280px) {
    .filtersPage .lineFilters .btFilters {
        display: inline-flex;
    }
}

.filtersPage .lineFilters .btFilters:before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../../imagens/portfolio/ico_filter.svg) no-repeat 50%;
    background-size: 17px;
    margin-right: 10px;
}

.filtersPage .filters {
    margin-top: 65px;
    height: inherit;
}

.filtersPage .filters .close {
    display: none;
}

@media (max-width: 1280px) {
    .filtersPage .filters .close {
        display: block;
    }
}

@media (max-width: 1280px) {
    .filtersPage .filters {
        position: absolute;
        left: -95vw;
        max-width: 95vw;
        transition: all 250ms ease-in-out;
    }

    .filtersPage .filters.active {
        left: 0vw;
    }
}

.filtersPage .right {
    width: 100%;
    flex: 1;
}

.filtersPage .featuredContent {
    padding: 10px 0;
}

.filtersPage .featuredContent ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

@media (max-width: 768px) {
    .filtersPage .featuredContent ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.filtersPage .featuredContent ul li .texts .title {
    font-size: 14px;
    line-height: 21px;
}

.filtersPage .featuredContent ul li .texts .agency {
    font-size: 15px;
    line-height: 16px;
    margin-top: 5px;
}

.filtersPage .featuredContent ul li .texts .time {
    font-size: 12px;
    line-height: 16px;
}

.filtersPage .clients {
    padding: 10px 0;
}

.filtersPage .clients ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
}

@media (max-width: 768px) {
    .filtersPage .clients ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .filtersPage .clients ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.filtersPage .agencies {
    padding: 10px 0;
}

.filtersPage .agencies ul {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 45px;
}

@media (max-width: 768px) {
    .filtersPage .agencies ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .filtersPage .agencies ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.filtersPage .professionals {
    background: transparent;
    padding: 0;
}

.filtersPage .professionals ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin: 0;
}

@media (max-width: 768px) {
    .filtersPage .professionals ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.filtersPage .professionals ul li .texts {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
    width: 100%;
}

.filtersPage .professionals ul li .texts p {
    font-size: 14px;
    line-height: 21px;
}

.filtersPage .professionals ul li .texts .title {
    font-size: 14px;
    line-height: 21px;
}

.filtersPage .professionals ul li .texts .text {
    display: inline-flex;
    flex-direction: column;
    flex: 1;
}

.filtersPage .professionals ul li .texts .linkedin {
    width: 27px;
    height: 27px;
    display: inline-flex;
    text-indent: -5000em;
    background: url(../../imagens/portfolio/ico_linkedin.svg) no-repeat 50%;
    background-size: 27px;
}

.workDetail {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* .workDetail::before {
  content: "";
  width: 100vw;
  height: 295px;
  background: #f1f6eb;
  position: absolute;
  z-index: -1;
  display: inline-block;
  top: -85px;
} */
@media (max-width: 1280px) {
    .workDetail::before {
        left: -20px;
    }
}

.workDetail .boxCenter {
    max-width: 890px;
}

.workDetail .row {
    display: inline-flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
}

.workDetail .agencyDet {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0 0 0;
}

.workDetail .agencyDet img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 25px 0 0;
}

.workDetail .agencyDet .agency {
    font-size: 20.8px;
}

.workDetail .agencyDet .date {
    font-size: 17.6px;
    margin: 0;
}

@media (max-width: 768px) {
    .workDetail .row {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.workDetail h2 {
    color: #000000;
    font-size: 28px;
    line-height: 50px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.workDetail .agency {
    color: #000000;
    font-size: 18px;
    line-height: 20px;
    margin-top: 0;
}

.workDetail .btShare {
    border: solid 2px #ffbc00;
    border-radius: 18px;
    color: #000000;
    font-size: 15px;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 20px;
    height: 36px;
}

@media (max-width: 768px) {
    .workDetail .btShare {
        margin-top: 10px;
    }
}

.workDetail .btShare::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../../imagens/portfolio/share_black.svg) no-repeat 50%;
    background-size: 18px;
    margin-right: 10px;
}

.workDetail .video {
    width: 100%;
    position: relative;
    min-height: 500px;
    background: #000;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .workDetail .video {
        min-height: 230px;
    }
}

.workDetail .video img,
.workDetail .video video {
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: inherit;
    max-width: 100%;
}

.workDetail img {
    margin-top: 40px;
    max-width: 100%;
}

.workDetail p {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    margin-top: 25px;
    max-width: 690px;
}

.workDetail .audio {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    max-width: 690px;
    margin-top: 25px;
}

.workDetail .audio .title {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    margin: 0;
    margin-right: 15px;
}

.workDetail .audio .timeline {
    flex: 1;
    background: #f1f6eb;
    width: 100%;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.workDetail .audio .timeline .play {
    width: 16px;
    height: 16px;
    background: url(../../imagens/portfolio/play.svg) no-repeat 50%;
    background-size: 16px;
    margin: 0 10px;
    cursor: pointer;
}

.workDetail .audio .timeline .line {
    width: 100%;
    height: 1px;
    background: #000;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.workDetail .audio .timeline .line:before {
    content: "";
    width: 1px;
    background: #000000;
    height: 10px;
    position: absolute;
    left: 0;
}

.workDetail .audio .timeline .time {
    color: #000000;
    font-size: 14px;
    line-height: 20px;
    margin: 2px 10px 0;
}

.workDetail .technicalSheet {
    background: #f1f6eb;
    margin: 35px 0;
    padding: 50px 0;
}

@media (max-width: 1280px) {
    .workDetail .technicalSheet {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 50px 20px;
    }
}

.workDetail .technicalSheet .items {
    margin-top: 25px;
    width: 100%;
}

.workDetail .technicalSheet p {
    font-size: 16px;
    line-height: 23px;
    margin-top: 5px;
}

.workDetail .featuredContent {
    padding: 0;
}

.workDetail .featuredContent.background {
    background: #f1f6eb;
    padding: 50px 0;
    margin: 35px 0;
}

@media (max-width: 1280px) {
    .workDetail .featuredContent.background {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 50px 20px;
    }
}

.workDetail .featuredContent h2 {
    padding: 0;
}

.workDetail .featuredContent ul {
    display: inline-block;
    width: 100%;
    padding: 0 40px;
    margin-top: 40px;
}

.workDetail .featuredContent ul .item {
    padding: 0 23px;
}

.workDetail .featuredContent ul .item img {
    margin-top: 0;
}

.workDetail .featuredContent ul .item .texts {
    padding: 20px 0;
}

.workDetail .featuredContent ul .item .texts p {
    font-size: 14px;
    line-height: 16px;
    margin-top: 5px;
}

.workDetail .featuredContent ul .item .texts .agency {
    font-size: 15px;
    line-height: 16px;
}

.workDetail .featuredContent .slick-arrow {
    position: absolute;
    top: calc(50% - 50px);
    width: 30px;
    height: 55px;
    border: 0;
    cursor: pointer;
    text-indent: -50000em;
    padding: 0;
}

.workDetail .featuredContent .slick-prev {
    background: url(../../imagens/portfolio/arrow_left_big.svg) no-repeat 50%;
    left: 0;
}

.workDetail .featuredContent .slick-next {
    background: url(../../imagens/portfolio/arrow_right_big.svg) no-repeat 50%;
    right: 0;
}

.pageContent {
    position: relative;
    width: 100%;
}

.pageContent .banner {
    width: 100%;
    height: auto;
}

.pageContent .banner .boxCenter {
    position: relative;
}

.pageContent .banner ul li {
    position: relative;
}

.pageContent .banner ul li .texts {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    padding: 0 50px;
}

.pageContent .banner ul li .texts .title {
    color: #ffffff;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.pageContent .banner ul li .texts p {
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    margin: 10px 0 0 0;
    max-width: 930px;
}

.pageContent .banner ul li img {
    width: 100%;
    height: 350px;
    background: #000;
    -o-object-fit: cover;
    object-fit: cover;
}

.pageContent .banner .slick-dots {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.pageContent .banner .slick-dots li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    height: 4px;
}

.pageContent .banner .slick-dots li button {
    width: 115px;
    height: 1px;
    background: #fff;
    border: 0;
    text-indent: -50000em;
    display: inline-block;
    cursor: pointer;
}

.pageContent .banner .slick-dots li.slick-active button {
    height: 4px;
}

.pageContent .filters {
    width: 100%;
    display: inline-block;
    max-width: 100%;
    padding: 0;
    background: none;
}

.pageContent .filters h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
    padding: 0 50px;
    margin: 35px 0 0;
    width: 100%;
}

@media (max-width: 1280px) {
    .pageContent .filters h2 {
        padding: 0;
    }
}

.pageContent .filters h2:before {
    display: none;
}

.pageContent .filters .row {
    margin-top: 30px;
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 50px;
}

@media (max-width: 1280px) {
    .pageContent .filters .row {
        flex-direction: column;
        padding: 0;
    }
}

@media (max-width: 1280px) {
    .pageContent .filters .row .search {
        width: 100%;
    }
}

.pageContent .filters .row .search .categories .radio {
    color: #000000;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-right: 20px;
    cursor: pointer;
}

@media (max-width: 960px) {
    .pageContent .filters .row .search .categories .radio {
        margin-bottom: 20px;
        display: inline-block;
    }
}

.pageContent .filters .row .search .categories .radio input {
    display: none;
}

.pageContent
.filters
.row
.search
.categories
.radio
input:checked
+ span:before {
    content: "";
    width: 9px;
    height: 9px;
    background: #000;
    display: inline-block;
    border-radius: 20px;
    position: absolute;
    left: 4px;
    top: 3px;
    border-radius: 20px;
}

.pageContent .filters .row .search .categories .radio span {
    position: relative;
    padding-left: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.pageContent .filters .row .search .categories .radio span:after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 20px;
    border: solid 1px #000;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -1px;
}

.pageContent .filters .row .search .searchField {
    width: 100%;
    margin-top: 20px;
    background: #fff url(../../imagens/portfolio/search.svg) no-repeat calc(100% - 10px) 50%;
    height: 35px;
    border: solid 1px #000;
    font-size: 14px;
    line-height: 21px;
    border-radius: 5px;
    background-size: 18px;
    padding: 5px 40px 5px 10px;
    max-width: 425px;
}

.pageContent .filters .row .orders {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1280px) {
    .pageContent .filters .row .orders {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .pageContent .filters .row .orders {
        flex-direction: column;
        margin-top: 0px;
        width: 100%;
    }
}

.pageContent .filters .row .orders .filter {
    margin-left: 40px;
}

@media (max-width: 1280px) {
    .pageContent .filters .row .orders .filter {
        margin-right: 40px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .pageContent .filters .row .orders .filter {
        margin-right: 0;
        width: 100%;
        margin-top: 30px;
    }
}

.pageContent .filters .row .orders .filter p {
    color: #000000;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}

.pageContent .filters .row .orders .filter .boxOrder {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pageContent .filters .row .orders .filter .boxOrder {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .pageContent .featuredContent {
        padding: 35px 0;
    }
}

@media (max-width: 1280px) {
    .pageContent .featuredContent ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .pageContent .featuredContent ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pageContent .featuredContent ul {
        grid-template-columns: repeat(1, 1fr);
    }
}

.pageContent .featuredContent ul .item .title {
    font-size: 14px;
    line-height: 16px;
}

.pageContent .featuredContent ul .item .subtitle {
    font-size: 14px;
    line-height: 16px;
}

.pageContent .featuredContent ul .item .bottom .agency {
    font-size: 12px;
    line-height: 16px;
}

.pageContent .featuredContent ul .item .bottom .date {
    font-size: 12px;
    line-height: 16px;
}

.pageParticipe {
    position: relative;
    width: 100%;
    background: url(../../imagens/portfolio/bg_participe.png) no-repeat 100% 100%;
}

@media (max-width: 960px) {
    .pageParticipe {
        background: none;
    }
}

.pageParticipe .boxCenter {
    max-width: 850px;
}

.pageParticipe .left {
    display: inline-block;
    max-width: 450px;
    width: 100%;
    margin: 50px 0 80px;
}

@media (max-width: 960px) {
    .pageParticipe .left {
        max-width: 100%;
    }
}

.pageParticipe h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.pageParticipe h3 {
    color: #000000;
    font-size: 18px;
    line-height: 33px;
    font-family: "ivypresto-display";
    font-weight: 600;
    margin-top: 25px;
}

.pageParticipe p {
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    margin-top: 10px;
}

.pageParticipe .title {
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    font-family: "ivypresto-display";
    font-weight: 600;
    margin-top: 40px;
}

.pageParticipe .form {
    width: 100%;
}

.pageParticipe .form .row {
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
}

@media (max-width: 768px) {
    .pageParticipe .form .row {
        display: contents;
    }
}

.pageParticipe .form .row .col {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    padding: 0 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pageParticipe .form .row .col {
        width: 100%;
        padding: 0;
    }
}

.pageParticipe .form .row .col label {
    width: 100%;
    margin-bottom: 10px;
    color: #000000;
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
}

.pageParticipe .form .row .col input,
.pageParticipe .form .row .col textarea {
    width: 100%;
    height: 30px;
    border: solid 2px #000;
    border-radius: 12px;
    border-left-width: 3px;
    border-right-width: 3px;
    padding: 5px 8px;
}

.pageParticipe .form .row .col textarea {
    resize: none;
    height: 70px;
}

.pageParticipe .form .row .col .btSend {
    background: #000000;
    border-radius: 18px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-family: "ivypresto-display";
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    min-width: 160px;
}

.pageParticipe .form .row .col .btSend:hover {
    background: #262626;
}

.pages {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.pages .boxCenter {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.pages ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pages ul li {
    margin: 0 5px;
}

.pages ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 22px;
    font-family: "ivypresto-display";
    font-weight: 600;
    color: #000000;
    border: solid 1px #000000;
    width: 26px;
    height: 26px;
    text-decoration: none;
}

.pages ul li a.active {
    color: #ffffff;
    background: #000000;
}

.pages ul li a.more {
    border: 0;
}

.pages ul li a.next,
.pages ul li a.prev {
    text-indent: -50000em;
    border: 0;
    width: 20px;
}

.pages ul li a.next {
    background: url(../../imagens/portfolio/arrow_right_gray.svg) no-repeat 50%;
}

.pages ul li a.prev {
    background: url(../../imagens/portfolio/arrow_left_gray.svg) no-repeat 50%;
}

.footer {
    width: 100%;
    height: auto;
    background: rgb(255, 186, 0) url(../../imagens/portfolio/bg_newsletter.png) no-repeat 50%;
    background: url(../../imagens/portfolio/bg_newsletter.png) no-repeat 50%,
    linear-gradient(
            91deg,
            #ffbc00 0%,
            #ffbc00 30%,
            #ffdf84 70%,
            #ffdf84 100%
    );
}

@media (max-width: 1280px) {
    .footer {
        width: calc(100% + 40px);
    }
}

.footer .boxCenter {
    min-height: 280px;
    padding: 40px 0;
}

@media (max-width: 1280px) {
    .footer .boxCenter {
        padding: 40px 20px;
    }
}

.footer .texts {
    width: 100%;
    padding: 0 50px;
    max-width: 700px;
}

.footer .texts h2 {
    color: #000000;
    font-size: 28px;
    line-height: 45px;
    font-family: "ivypresto-display";
    font-weight: 600;
}

.footer .texts p {
    color: #000000;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    margin-top: 10px;
}

.footer .form {
    width: 100%;
    flex-direction: row;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
}

@media (max-width: 1280px) {
    .footer .form {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.footer .form .col {
    flex-direction: column;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 40px;
    max-width: 250px;
    width: 100%;
}

.footer .form .col label {
    width: 100%;
    text-align: left;
    color: #000000;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
}

.footer .form .col input {
    width: 100%;
    border: solid 2px #000;
    background: transparent;
    font-size: 12px;
    line-height: 20px;
    border-radius: 8px;
    outline: none;
    height: 30px;
    padding: 2px 10px;
}

.footer .form .submit {
    background: #000000;
    border-radius: 18px;
    padding: 0 15px;
    color: #ffffff;
    font-size: 22px;
    line-height: 22px;
    font-family: "ivypresto-display";
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    min-width: 160px;
    margin-top: 40px;
    cursor: pointer;
}

.footer .form .submit:hover {
    background: #262626;
}

#__footer {
    overflow: hidden !important;
}

#__footer > svg,
#__footer .assine {
    display: none;
}
