
:root{
    --color-yellow:#FFE032;
    --color-purple:#390E45;
    --color-dark-grey:#707070;
    --color-body-background:#F3F3F4; 
}

body {
	line-height: 1;
    font-family: Gotham, Arial, Helvetica, sans-serif;
    background:  var(--color-body-background);
}
h1, h2, h3, h4{
    text-transform: uppercase;
    font-weight: bold;
}
h1{
    font-size: 8.5vw;
    color: black;
}
h2{
    font-size: 6.7vw;
}
h3{
    font-size: 2vw;
    line-height: 1.375;
}
h4{
    font-size: 1.6vw;
    margin-bottom: 2vw;
}
a{
    text-decoration: none;
    color: black;
    text-transform: uppercase;
}
p{
    line-height: 1.5;
    font-size: 1.4vw;
}
.page-bg-graph{
    position: fixed;
    top: 38vh;
    right: 35.5vw;
    z-index: -1;
    height: 29vw;
    width: 40vw;
}
.page-bg-graph svg{
    height: 6vw;
    width: auto;
}
#circle{
    position: absolute;
    right: 0;
    top: 0;
}
#arrow-2{
    position: absolute;
    bottom: 0;
    left: calc(50% - 5vw);
}
/* = Generic Classes = */
.double-column{
    display: flex;
    justify-content: space-between;
}

/* = Menu styles = */
nav{
    position: fixed;
    bottom: 0;
    right: 0;
    padding:1.82% 4.1vw;
    background-color: transparent;
    color: black;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    width: 30vw;
    transition-property: background-color, width;
    transition-duration: 500ms, 0s;
    transition-delay: 0s, 500ms;
}
nav a{
    color: black;
    font-size: 1.2vw;
    text-transform: uppercase;
    white-space: nowrap;
}
nav .hidden-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition-property: opacity, width;
    transition-duration: 500ms, 0s;
    transition-delay: 0s, 500ms;
}
nav.menu.open{
    width:100vw;
    background-color: var(--color-yellow);
    transition-property: background-color;
    transition-duration: 500ms;
}
nav.menu.open .hidden-menu{
    width:100%;
    opacity: 1;
    transition-property: opacity;
    transition-duration: 500ms;
}
nav hr{
    height: 0.2vw;
    background-color: black;
    width: inherit;
    border-style: none;
    margin: 0 0.8vw;
}
nav a svg{
    height:3.12vw;
    width: auto;
}
nav a svg path, nav a svg rect{
    transition: 0.3s;
}
nav a svg.logo-amarelo path, nav a svg.logo-amarelo g rect{
    fill: #FFE032;
}
nav.menu.open a svg.logo-amarelo path, nav.menu.open a svg.logo-amarelo g rect{
    fill: #313133;
}

.toggle-menu{
    position: absolute;
    top: 1vh;
    right: 1vw;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.toggle-menu img{
    height: 2.5vw;
}
header{
    padding: 1.3vw 0 0 6vw;
    background-color: transparent;
}

/* = Main styles = */
section .section-title{
    display: flex;
    flex-direction: column;
}
section .section-title h2{
    line-height: 1.3;
    text-align: center;
}

/* = Big Links styles = */
.link-container .section-title{
    align-items: center;
    margin-bottom: 10vw;
    margin-top: 5vw;
}
.link-container .section-title h2 {
    max-width: 60%;
    line-height: 1;
}
.link-container .section-title h2 a{
    /*font-size: inherit;*/
    font-size: 4vw;
    white-space: break-spaces;
    text-decoration: underline;
    text-decoration-thickness: 0.14em;
    text-underline-offset: 0.14em;
    line-height: 1;
}
.link-container .section-title h2 a:hover{
    color: var(--color-purple);
    text-decoration-color: var(--color-purple);
}
.link-container .section-title>a{
    color: var(--color-purple);
    font-size: 1.5vw;
    font-weight: bold;
    margin-top: 2em;
}

/* = Footer styles = */
footer{
    background-color: black;
    justify-content: space-between;
    margin-top: 10vw;
    color: white;
    padding-bottom: 8vw;
}
footer>img{
    width: 100%;
}
.talk-to-us-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5vw 5vw;
}
.talk-to-us-container span{
    font-size: 1.4vw;
    margin-right: 2vw;
}
.talk-to-us-container>span{
    font-weight: bold;
}
footer .talk-to-us-container a{
    margin-left: auto;
} 
footer .talk-to-us-container a img{
    width:1.5vw;
}

/* === Home Page Styles Start === */

/* = Header styles = */
.home header{
    background: no-repeat right 6.5vw;
    background-size: 64% auto;
    height: 50vw;
}
.home header h1{
    max-width: 70%;
}
/* = Cases section = */
.cases-container p{
    padding: 6vw 63vw 3vw 5vw;
}

/* = Carousel basic styles = */

/* - Arrows styles - */
.carousel-container{
    position: relative;
}
.carousel-container .next-arrow img,
.carousel-container .prev-arrow img{
    width:1.3vw;
}
.next-arrow, .prev-arrow{
    position: absolute;
    top: 47%;
    cursor: pointer;
}
.next-arrow{
    right: 1.5vw;
    transform: rotate(180deg);
}
.prev-arrow{
    left: 1.5vw;
}

/* - Dots styles - */
.carousel-container .slick-dots{
    bottom: -37px;
}
.carousel-container .slick-dots li {
    width: 15px;
    height: 15px;
    margin: 0;
}
.carousel-container .slick-dots li button:before {
    font-size: 0.65vw;
    opacity: .50;
}

/* = Cases Carousel content styles = */

.carousel-container .cases-carousel img{
    width: 100%;
}
.cases-carousel .carousel-item, .purple-filter {
    position: relative;
}
.carousel-item .bg-img {
    height: 38vw;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
}
.cases-carousel .carousel-item:after, .purple-filter:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: screen;
    background-color: var(--color-purple);
}

.cases-carousel .carousel-item span{
    width:100%;
    position: absolute;
    top: calc(50% - (4.1vw / 2));
    font-size: 4.1vw;
    font-weight: bold;
    color: var(--color-yellow);
    text-align: center;
    text-transform: uppercase;
}

/* = img-text-Section styles = */
.home .img-text-container img{
    width:45vw;
}

.home .text-container{
    padding: 5vw 20vw 0 5vw;
}

/* = customers-carousel-Section styles = */
.customers-carousel-container .carousel-container .next img,
.customers-carousel-container .carousel-container .prev img{
    filter: grayscale(100%) brightness(10%);
    width:1.3vw;
}
.customers-carousel-container .next,
.customers-carousel-container .prev{
    position: absolute;
    top: 47%;
    cursor: pointer;
}
.customers-carousel-container .next{
    transform: rotate(180deg);
    right: 1vw;
}
.customers-carousel-container .prev{
    left: 1vw;
}


.customers-carousel-container{
    background-color: white;
    padding: 4vw 0 6.5vw;
}
.customers-carousel-container h4{
    margin-left: 7.3vw;
}
.slick-initialized.customers-carousel .carousel-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.customers-carousel-container .customers-carousel img{
    max-width: 14vw;
    max-height: 6vw;
    align-self: center;
    margin: 2.2vw;
    filter: grayscale(100%);
}
/* === Home Page Styles End === */

/* === When call us Page Styles Start === */
.when-call-us header{
    height: 36.6vw;
}
.when-call-us header h1{
    max-width: 50vw;
}
.when-call-us .img-text-container{
    background: transparent no-repeat top left;
    background-size: 56.8vw auto;
}
.when-call-us .img-text-container .section-title{
    padding:24.1vw 11.3vw 0 46vw;
    margin-bottom: 0;
    margin-top: 0;
}
.when-call-us .img-text-container .section-title h2 {
    text-align: left;
    font-size: 3.3vw;
    line-height: 1.16;
    margin-bottom: 7.5vw;
}
.when-call-us .img-text-container .section-title h2:last-child {
    margin-bottom: 5vw;
}
.when-call-us .img-text-container .text-container {
    padding: 0vw 6.6vw 0 59.4vw;
}
.when-call-us .img-text-container .text-container p {
    margin-bottom: 8.8vw;
}
.triple-column-text-container{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 5.5vw 6.3vw;
}
.triple-column-text-container h3{
    margin-bottom: 1.9vw;
}
.triple-column-text-container p{
    font-size: 1.25vw;
}
.text-column{
    width: 30%;
    padding-top: 2.5vw;
    background: transparent url(img/logo-detail.png) no-repeat top left;
    background-size: 1.5vw auto;
}

/* === When call us Page Styles End === */

/* === Cases Page Styles Start === */
.cases header{
    height: 40vw;
}
.img-text-container .double-row img {
    width: 100%;
    mix-blend-mode: screen;
}
.img-text-container .double-row .purple-filter{
    display: flex;
}
.purple-filter .bg-img {
    height: 38vw;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
}
.img-text-container .double-row .text-container h2{
    margin-bottom: 1.5vw;
    white-space: nowrap;
    font-size: 3.3vw;
}
.img-text-container .double-row .text-container h4 {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.3vw;
}

.img-text-container .double-row .text-container p {
    font-size: 1.2vw;
}

.img-text-container .double-row .text-container {
    padding: 3vw 50vw 7.8vw 6vw;
}
/* === Cases Page Styles End === */

/* === Who-we-are Page Styles Start === */
.who-we-are header{
    height: 40vw;
}
.who-we-are header h1{
    padding-right: 22vw;
}
.double-column-img-text-container{
    display: flex;
    justify-content: space-between;
}
.double-column-img-text-container .double-row{
    width: 49vw;
    display: flex;
    flex-direction: column;
}
.double-column-img-text-container .double-row .bg-img {
    width: 100%;
    height: 60vw;
}
.double-column-img-text-container .double-row img:hover {
    filter: grayscale(0);
    transition:filter 1s;
}
.double-column-img-text-container .double-row .text-container {
    padding: -0 5vw 0 4.9vw;
    margin-top: -1.8vw;
    z-index: 100;
}
.double-column-img-text-container .double-row .text-container h2 {
    margin-bottom: 2vw;
    text-align: left;
    font-size: 3.7vw;
}
.double-column-img-text-container .double-row .text-container h4 {
    line-height: 1.5;
    text-transform: none;
    font-weight: normal;
}
.who-we-are .img-text-container{
    background: white no-repeat top left;
    background-size: 46.6vw auto;
    margin-top: 6vw;
    height:66.6vw ;
}
.who-we-are .img-text-container .section-title{
    align-items: end;
    margin: 0 5vw 0 0;
}
.who-we-are .img-text-container h2{
    text-align: left;
    max-width: 57vw;
    line-height: 1.13;
    margin-top: 3vw;
}
.who-we-are .img-text-container .text-container {
    padding: 3vw 23vw 0 52vw;
}

/* Smartphones */


@media only screen and (max-width: 768px) {
/*************** MOBILE ONLY CSS ***************/
    .mobile-view {
        display: block;
    }
    .desktop-view {
        display: none;
    }
    body{
        font-size: 2vw;
        background: var(--color-body-background);
    }
    .page-bg-graph{
        top: 17vh;
        right: 12.5vw;
        height: 53vw;
        width: 65vw;
    }
    .page-bg-graph svg{
        height: 16vw;
        width: auto;
    }
    nav{
        right: auto;
        width: 100vw;
        flex-direction: column;
        background-color: var(--color-yellow);
        padding: 0;
        align-items: end;
    }
    nav a {
        font-size: 3vw;
        color: var(--color-yellow);
        padding: 1vw;
    }
    nav>a:last-child {
        padding: 4.6vw 5.12vw 5.12vw;
    }
    nav a svg {
        height: 5.38vw;
        width: auto;
    }
    nav .hidden-menu {
        width: 100%;
        overflow: visible;
        opacity: 1;
        padding: 1.5vw;
        background-color: black;
        transition-property: none;
        transition-duration: none;
        transition-delay: none;
    }
    nav a svg.logo-amarelo path, nav a svg.logo-amarelo g rect{
        fill: #313133;;
    }
    .link-container .section-title {
        margin-bottom: 10vw;
        margin-top: 20vw;
    }
    .link-container2 .section-title {
        margin-bottom: 20vw;
    }
    .link-container .section-title h2 {
        max-width: 85vw;
        font-size: 11vw;
    }
    .link-container .section-title h2 a {
        display: block;
        padding: 0 4vw;
        text-decoration: underline;
        text-decoration-thickness: 0.15em;
        text-underline-offset: 0.25em;
        line-height: 1.5;
        font-size: 8vw;
    }
    .link-container .section-title>a{
        color: var(--color-purple);
        white-space: nowrap;
        font-size: 4vw;
        margin-top: 3vw;
    }
    .double-column-img-text-container .double-row .bg-img {
        height: 110vw;
    }
    h4 {
        font-size: 5vw;
        margin-bottom: 7vw;
    }
    p {
        line-height: 1.5;
        font-size: 5vw;
        margin-bottom: 15vw;
    }
    main {
        padding-top: 0;
        display: flex;
        flex-direction: column;
    }
    .home header {
        padding: 21vw 1.5vw 0;
        height: 98vh;
        background-size:unset;
        background: transparent no-repeat center 60vw;
        background-size: 100%;
    }
    .home header h1 {
        font-size: 12.8vw;
        padding: 0;
        line-height: 1.28;
        max-width: unset;
    }
    .home .text-container {
        padding: 5vw 12.5vw 5vw;
    }
    .cases-container p {
        padding: 20vw 10.3vw 17vw;
    }
    .carousel-container .next-arrow img, .carousel-container .prev-arrow img {
        width: 4.1vw;
    }
    .carousel-container .slick-dots li button:before {
        font-size: 1.65vw;
    }
    .carousel-container .slick-dots li {
        margin: 0;
        width: auto;
    }
    .slick-dots li button {
        width: 15px;
        height: 20px;
    }
    .cases-carousel .carousel-item {
        overflow-x: hidden;
    }
    .cases-carousel .carousel-item span {
        font-size: 6vw;
    }
    .cases-carousel .carousel-container .slick-dots {
        bottom: -4vw;
    }
    .cases-carousel .carousel-container  img {
        width: 148%;
        margin-left: -24%;
    }
    .carousel-item .bg-img {
        height: 60vw;
    }
    .customers-carousel-container {
        margin-top: 4vw;
        background-color: transparent;
    }
    .customers-carousel-container .carousel-container{
        background-color: white;
        padding: 5vw 0;
    }
    .customers-carousel-container .carousel-container .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .customers-carousel-container h4 {
        font-size: 3.5vw;
    }
    .slick-initialized.customers-carousel .carousel-item {
        justify-content: space-around;
        flex-direction: column;
        height: 55vw;
    }
    .customers-carousel-container .customers-carousel img {
        max-width: 44vw;
        max-height: 16vw;
    }
    .customers-carousel-container .carousel-container .slick-dots {
        bottom: -9vw;
    }
    .customers-carousel-container .next {
        right: 4vw;
    }
    .customers-carousel-container .carousel-container .next img,
    .customers-carousel-container .carousel-container .prev img {
        width: 4vw;
    }
    footer .talk-to-us-container span {
        font-size: 2.5vw;
        color: black;
        line-height: 1.5;
    }
    .talk-to-us-container {
        position: fixed;
        bottom: 4vw;
        left: 0;
        z-index: 1002;
        width: 56vw;
    }
    footer .talk-to-us-container a img {
        width: 8.5vw;
        filter: invert(1);
    }

    /* = when-call-us Page Styles = */
    .when-call-us, .cases{
        display: flex;
        flex-direction: column;
    }
    .when-call-us header{
        z-index: 1;
        height: 33vh;
        padding: 20vw 4vw 0;
    }
    .when-call-us header h1{
        font-size: 19vw;
        line-height: 1.06;
        max-width: none;
    }
    .when-call-us .img-text-container {
        background: transparent no-repeat;
        background-size: 100%;
    }
    .when-call-us .img-text-container .section-title {
        padding: 11vh 3.3vw 0;
        margin-top: 60.5vh;
    }
    .when-call-us .img-text-container .section-title h2 {
        font-size: 11.9vw;
        line-height: 1;
        margin-bottom: 15.5vw;
    }
    .when-call-us .link-container a, .cases .link-container a, .who-we-are .link-container a{
        white-space: normal;
        color: black;
    }
    .when-call-us .img-text-container .text-container {
        padding: 5vw 8.5vw 5vw;
    }
    .when-call-us .img-text-container .text-container p {
        line-height: 1.5;
        font-size: 5vw;
        margin-bottom: 7vw;
    }
    .triple-column-text-container {
        flex-direction: column;
        background-color: transparent;
        padding: 5.5vw 6.3vw;
    }
    .text-column {
        width: 100%;
        padding-top: 11.5vw;
        background-size: 7.5vw auto;
    }
    .triple-column-text-container h3 {
        font-size: 7vw;
        line-height: 1.4;
    }
    .triple-column-text-container p {
        font-size: 5vw;
    }

    /* = Cases page Styles= */
    .cases header  {
        z-index: 2;
        height: 17vh;
        padding: 22vw 0 0 4vw;
    }
    .cases header h1 {
        font-size: 25vw;
        padding: 0 2vw;
        text-align: center;
    }
    .img-text-container .double-row .purple-filter {
        background-color: var(--color-purple);
        display: flex;
        overflow-x: hidden;
        height: 49.5vh;
    }
    .purple-filter .bg-img {
        height: 100%;
    }
    .img-text-container .double-row img {
        width: 306%;
        margin-left: -64%;
        mix-blend-mode: screen;
    }
    .img-text-container .double-row:first-child .purple-filter {
        background-color: var(--color-purple);
        height: 72vh;
    }
    .img-text-container .double-row:first-child img{
        mix-blend-mode: normal;
    }
    .img-text-container .double-row .text-container {
        padding: 8vw 8.5vw 5vw;
    }
    .img-text-container .double-row .text-container h2 {
        white-space: normal;
        word-break: break-all;
        font-size: 9vw;
    }
    .img-text-container .double-row .text-container h4 {
        margin-bottom: 4vw;
        text-transform: lowercase;
        font-size: 5vw;
    }
    .img-text-container .double-row .text-container p {
        font-size: 4.2vw;
    }


    /* = Who-we-are Page Styles = */
    .who-we-are header {
        height: auto;
        padding: 18vw 4vw;
    }
    .who-we-are header h1 {
        font-size: 23.8vw;
        line-height: 1.2;
        padding-right: 0;

    }
    .double-column-img-text-container {
        flex-direction: column;
    }
    .double-column-img-text-container .double-row {
        width: 100vw;
    }
    .who-we-are .img-text-container h2 {
        max-width: unset;
        font-size: 10.5vw;
    }
    .double-column-img-text-container .double-row .text-container {
        padding: 0 5vw 11vw;
        margin-top: 4vw;
    }
    .double-column-img-text-container .double-row .text-container h2 {
        font-size: 18vw;
        margin-bottom: 6vw;
    }
    .double-column-img-text-container .double-row .text-container h4 {
        margin-bottom: 7vw;
        font-size: 5vw;
    }
    .double-column-img-text-container .double-row .text-container p {
        line-height: 1.5;
        font-size: 5vw;
        margin-bottom: 7vw;
    }
    .who-we-are .img-text-container {
        background: transparent no-repeat top left;
        background-size: 100%;
        margin-top: 6vw;
        height: auto;
    }
    .who-we-are .img-text-container .section-title {
        align-items: end;
        margin: 112.5vw 6.5vw 5vw 7vw;
    }
    .who-we-are .img-text-container .text-container {
        padding: 5vw 8.5vw 10vw;
    }
}
