/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ðŸ‘† --------- CSS RESET --------- ðŸ‘† */

/* ðŸ‘‡ --------- PAGE CSS ---------- ðŸ‘‡ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*{
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior: smooth;
}

.alignment{
    margin: 0 auto;
    padding: 0 140px;
    box-sizing: border-box;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 35px;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(3px);
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    z-index: 200;
}

.menu-mobile{
    display: none;
}

header nav{
    max-width: 1111px;
    width: 100%;
}

header nav ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav a{
    font-weight: 900;
    font-size: 35px;
    color: #fff;
    text-decoration: none;
}

header nav a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

header nav a:hover::after{
    width: 100%;
}

header img.menu-button{
    position: absolute;
    width: 50px;
    top: 58.5px;
    right: 48.5px;
    z-index: 300;
    filter: grayscale(100%) brightness(100);
    z-index: 300;
}

header img.menu-button.active{
    filter: initial;
}

header img.menu-button:hover{
    filter: brightness(130%);
    cursor: pointer;
}

header .lang-menu{
    position: absolute;
    right: -300px;
    top: 0;
    z-index: 250;
    height: 450px;
    width: 300px;
    background-color: #fff;
    border-radius: 0 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 0 53px 36px;
    box-sizing: border-box;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, .2);
    transition: all .7s cubic-bezier(0.3, 0.73, 0.29, 0.99);
}

header .lang-menu.active{
    right: 0px;
}

header .lang-menu ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
}

header .lang-menu ul li a{
    color: #303030;
    font-size: 32px;
    font-weight: 900;
    text-decoration: none;
}

header .lang-menu ul li a.active{
    color: #336ec6;
}

header .lang-menu ul li a.active:hover{
    cursor: default;
}

header .lang-menu ul li a.active::after{
    width: 100%;
    background-color: #336ec6;
}

header .lang-menu ul li a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background-color: #303030;
    transition: all .5s ease-in-out;
}

header .lang-menu ul li a:hover::after{
    width: 100%;
}

section.main{
    background: url(../images/porto-de-santos.png) no-repeat center;
    background-size: cover;
    height: 947px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 100px;
}

section.main .textbox{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

section.main .textbox h1{
    font-size: 150px;
    font-weight: 900;
    color: #fff;
}

section.main .textbox h4{
    font-size: 25px;
    font-weight: 900;
    color: #fff;
}

section.world{
    background: url(../images/workers.png) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: 350px;
    min-height: 1280px;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: -25px;
    border-radius: 30px 30px 0 0;
}

section.world .setinha-baixo{
    cursor: pointer;
}

section.world h3{
    font-size: 156px;
    font-weight: 700; 
    color: #FFF;
    text-shadow: #336EC6 0px 0 30px;
    margin: 48px 0 68px 0;
}

section.world .boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slick-dots li button:before, .slick-dots li button:after{
    font-size: 10px;
    color: #fff;
}

.slick-dots li.slick-active button:after, .slick-dots li.slick-active button:before{
    opacity: 1;
    color: #fff;
}

section.world .boxes .left img{
    width: 100%;
    max-width: 249px;
}

section.world .boxes .right img{
    width: 100%;
    max-width: 191px;
}

section.world .boxes .left, section.world .boxes .right{
    width: 100% !important;
    max-width: 398px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 69px;
}

section.world .boxes .left{
    align-items: flex-start;
}

section.world .boxes .right{
    align-items: flex-end;
}

.slick-track:before, .slick-track:after{
    content: initial;
}

section.world .boxes .left .textbox, section.world .boxes .right .textbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFF;
    box-sizing: border-box;
    padding: 22px;
    border-radius: 30px;
    min-height: 360px;
    row-gap: 11px;
}

section.world .boxes .textbox h5{
    font-size: 50px;
    font-weight: 700;
    color: #303030;
}

section.world .boxes .textbox p{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #303030;
    line-height: 130%;
}

section.world .join-us-button{
    width: 100%;
    height: 126px;
    max-width: 766px;
    margin: 100px auto 22px auto;
    font-size: 64px;
    border-radius: 30px;
    font-weight: 700;
    background-color: #336EC6;
    transition: all .3s ease-in-out;
}

section.world .join-us-button:hover{
    background-color: #FFF;
}

section.world .join-us-button:hover a{
    color: #336EC6;
}

section.world .join-us-button a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

section.world > p{
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
}

footer{
    width: 100%;
    height: 200px;
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
}

footer img{
    position: absolute;
    left: calc(50% - 130.5px);
    top: 67px;
}

footer p{
    font-size: 20px;
    font-weight: 600;
    color: #303030;
}
.infogls {
    color: #FFFFFF;
    text-shadow: #000 0px 0 30px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

@media(max-width: 1660px){
    header.alignment{
        padding: 0 135px;
    }

    .alignment{
        padding: 0 40px;
    }
}

@media(max-width: 1439px){
    header{
        column-gap: 30px;
    }
    
    header .header-logo img{
        width: 150px;
    }

    footer p{
        font-size: 16px;
    }
}

@media(max-width: 1370px){
    section.world h3{
        font-size: 80px;
        font-weight: 900;
    }
}

@media(max-width: 1270px){
    footer{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        row-gap: 40px;
        height: auto;
    }

    footer.alignment{
        padding: 60px 40px;
    }

    footer img{
        position: initial;
        top: initial;
        left: initial;
    }

    footer p{
        text-align: center;
    }

    .slick-track:before, .slick-track:after{
        content: '';
    }

    section.world .boxes{
        max-width: 478px;
    }

    section.world .boxes .left, section.world .boxes .right{
        align-items: center;
    }
}

@media(max-width: 1245px){
    header .lang-menu{
        width: 200px;
        height: 300px;
        right: -200px;
    }

    header .lang-menu.active{
        right: 0px;
    }

    header .lang-menu ul{
        row-gap: 30px;
    }

    header .lang-menu ul li a{
        font-size: 24px;
    }

    section.main .textbox h1{
        font-size: 64px;
    }

    section.main .textbox h4{
        font-size: 15px;
    }

    section.main{
        justify-content: center;
    }

    section.world h3{
        font-size: 48px;
    }

    section.world .boxes .textbox h5{
        font-size: 32px;
    }

    section.main .textbox{
        align-items: center;
    }

    header{
        height: 111px;
        justify-content: center;
    }

    section.world .boxes .slick-track > div{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header nav{
        display: none;
    }

    header .header-logo img{
        width: 100%;
        max-width: 190px;
    }

    header img.menu-button{
        width: 30px;
        top: 48.5px;
        right: 38.5px;
    }

    .hamburguer-button{
        display: block;
        position: fixed;
        width: 30px;
        height: 20px;
        z-index: 1001;
        left: 45px;
        top: 45px;
        cursor: pointer;
    }

    .hamburguer-button.active .line, .hamburguer-button.active .line::after, .hamburguer-button.active .line::before{
        background-color: #336EC6;
    }

    .hamburguer-button .line, .hamburguer-button .line::before, .hamburguer-button .line::after{
        position: absolute;
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 5px;
        background-color: #fff;
        transition: all .3s ease-in-out;
    }

    .hamburguer-button .line::before{
        top: -20px;
    }

    .hamburguer-button .line{
        top: 20px;
    }

    .hamburguer-button .line::after{
        top: -10px;
    }

    .menu-mobile{
        position: fixed;
        display: block;
        left: -100%;
        top: 0;
        backdrop-filter: blur(4px);
        background-color: rgba(255, 255, 255, 0.8);
        height: 100vh;
        width: 100%;
        max-width: initial;
        z-index: 1000;
        transition: all .7s cubic-bezier(0.3, 0.73, 0.29, 0.99);
    }

    .menu-mobile.active{
        left: 0%;
    }

    .menu-mobile ul{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        row-gap: 30px;
        padding-left: 45px;
        padding-top: 126px;
    }
    
    .menu-mobile a{
        font-weight: 500;
        font-size: 24px;
        color: #336EC6;
        text-decoration: none;
    }
    
    .menu-mobile a::after{
        content: '';
        width: 0px;
        height: 2px;
        display: block;
        background-color: #336EC6;
        transition: all .5s ease-in-out;
    }

    .menu-mobile a:hover::after{
        width: 100%;
    }

    section.world .join-us-button{
        max-width: 300px;
        height: 50px;
    }

    section.world .join-us-button a{
        font-size: 32px;
        font-weight: 700;
    }

    section.world > p{
        font-size: 15px;
        font-weight: 700;
    }
    .infogls{
        font-size: 15px;
    }
}

@media(max-width: 830px){
    section.world h3{
        font-size: 48px;
    }
}

@media(max-width: 500px){
    .boxes .slick-track{
        column-gap: initial;
    }
}
