* {
    margin: 0;
    padding: 0;
    color: #212121;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
}

body {
    overflow-x: hidden;
}

nav {
    height: 4rem;
    width: 100%;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    z-index: 10;
    position: fixed;
    background-color: #fff;
}

/*Styling logo*/

.logo {
    text-align: center;
    padding-left: 10px;
}

.logo img {
    height: 5rem;
    width: 5rem;
}

/*Styling Links*/

.corpo .image img {
    width: 70%;
    height: 500px;
    margin-top: 20%;
    opacity: 43%;
    margin-left: 20%;
}

.qr_img {
    width: 100%;
}

.descri {
    width: 100%;
}

.corpo .image .entrega {
    margin-top: 35%;
}

.corpo .image .delivery {
    height: 600px;
    margin-top: 15%;
}

.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    font-weight: 700;
}

.nav-links li a:hover {
    color: #61DAFB;
}

.nav-links li {
    position: relative;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/

.login-button {
    background-color: transparent;
    border: 1.5px solid #212121;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;
}

.login-button:hover {
    color: #131418;
    background-color: #212121;
    border: 1.5px solid #212121;
    transition: all ease-in-out 350ms;
}

.join-button {
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}

.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/

.hamburger div {
    width: 30px;
    height: 3px;
    background: #212121;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/

@media screen and (max-width: 900px) {
    .login {
        font-size: 15px !important;
    }
    nav {
        position: sticky;
        z-index: 3;
    }
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links {
        position: fixed;
        background: #fff;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li {
        opacity: 0;
    }
    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade {
        opacity: 1;
    }
    nav .logo {
        width: 70px !important;
    }

    .image .delivery{
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .videos{
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/*Animating Hamburger Icon on Click*/

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.whats {
    color: rgb(7, 214, 0);
    font-size: 20px;
    font-weight: 700;
}

.whats i {
    color: rgb(7, 214, 0);
    font-weight: 700;
    font-size: 30px;
}

.login {
    background-color: #fff;
    color: #212121;
    padding: 5px 10px 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #212121;
}

#entregas img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login img {
    margin-left: 70px;
    margin-right: 5px;
}

/* Qr code */

.corpo {
    width: 100%;
    display: flex;
}

.entrega {
    min-height: 400px !important;
}

.corpo {
    width: 100% !important;
}

.corpo div {
    width: 50%;
    min-height: 100%;
}

.corpo .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

#texto1 {
    margin-bottom: 200px;
}

.corpo .text h2 {
    font-weight: 700;
    color: #06b400;
}

mark {
    background-color: #06b400 !important;
}

.corpo .text .texto, mark {
    text-align: left;
    font-weight: 700;
    font-size: 30px;
    margin-top: 50%;
    width: 65%;
}

@media screen and (min-width: 370px) and (max-width: 1100px) {
    .cell {
        padding-top: 200px !important;
    }
    .sec-img {
        padding-top: 200px !important;
    }
}

@media(max-width: 800px) {
    .image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .login {
        display: none;
    }
    .corpo {
        flex-direction: column;
        width: 100%;
    }
    .corpo div {
        width: 100% !important;
    }
    .corpo img {
        width: 80% !important;
    }
    img {
        width: 100% !important;
    }
    .texto {
        align-items: center;
        justify-content: center;
        margin-left: 35px;
    }
    .text {
        height: 500px !important;
        align-items: flex-start !important;
    }
    .corpo .text .texto, mark {
        font-size: 20px !important;
        width: 80% !important;
    }
    .image img {
        margin: 0 !important;
        height: auto;
    }
    .image {
        height: 500px !important;
    }
    .event {
        height: 100px !important;
        margin-bottom: 500px;
    }
    .corpo .text {
        height: auto;
        flex-direction: column;
    }
    .rec {
        padding-top: 300px !important;
    }
    .cell {
        margin-top: 100px !important;
    }
    .entre {
        margin-top: 600px;
    }
    .sec-img {
        margin-top: 700px;
    }
    .imagens {
        flex-direction: column !important;
        width: 60%;
        height: 600px !important;
        height: auto;
        margin-left: 90px;
        margin-bottom: 100px;
    }
    .image7 {
        margin-top: 100px;
    }
    .imagens .img-c {
        margin: 20px 0px;
    }
}

.imagens {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.imagens img {
    width: 22%;
    height: 90% !important;
}

.img-c {
    margin: 0px 50px;
}

.image7 {
    width: 100%;
}

.junte {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.junte div {
    width: 50%;
}

.junte .text-j {
    display: flex;
    align-items: center;
    justify-content: center;
}

.junte .text-j h2 {
    font-weight: 900;
    color: #06b400;
}

.junte .text-j .texto-j, mark {
    font-weight: 900;
    font-size: 30px;
    width: 85%;
    height: 100%;
}

.whatz {
    height: 100%;
}

.contact .back {
    width: 400px;
    background-color: #212121;
    height: 450px !important;
    border-radius: 30px;
    color: #fff;
    display: flex;
}

.back .container {
    height: 100%;
    width: 90%;
    flex-direction: column;
}

.zap a {
    font-size: 2em !important;
    color: #31ad00;
    text-decoration: none;
}

.container div {
    width: 100%;
    height: 18%;
    display: flex;
    align-items: center;
}

.contact input {
    border-top: none;
    border-right: none;
    border-left: none;
    background-color: #212121;
    width: 100%;
    font-size: 25px;
    color: #fff;
    border-bottom: 1px solid #c1c1c1;
}

.container {
    margin: 10px 0px 10px 30px;
}

.back h2 {
    color: #fff;
    font-size: 2em;
}

@media(min-width: 800px) {
    .entre .image img {
        margin-top: 250px;
    }
}

.contact button {
    justify-content: space-between;
    background-color: #fff;
    font-weight: 500;
    padding: 10px 10px 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    width: 95%;
    font-size: 20px;
}

.contact button a {
    font-weight: 500;
}

@media (max-width: 800px) {
    .sec-img {
        margin-top: 450px !important;
    }
    .junte {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .junte .text-j .texto-j, mark {
        font-size: 20px !important;
        width: 100% !important;
    }
    div.text-j {
        width: 100% !important;
    }
    .junte {
        min-height: 400px !important;
        width: 100% !important;
    }
    .missao-text {
        width: 100% !important;
    }
    .missao-text h2 {
        font-size: 40px !important;
    }
    .missao-text p {
        width: 100%;
    }
}

.rg {
    width: 100% !important;
    display: flex;
}

.plataformaRg {
    width: 100% !important;
}

.plataformaRg img {
    width: 100% !important;
}

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

.plataformaRg-1 {
    width: 100%;
    display: flex;
    position: absolute;
    top: 10px;
    text-shadow: 5px 1px 4px #C1C1C1;
    float: right;
}

.plataformaRg h2 {
    width: 50%;
    font-weight: 700;
}

@media(max-width: 450px) {
    .plataformaRg h2 {
        font-size: 60%;
    }
}

@media(max-width: 800px) {
    .whatz {
        display: none;
    }
    .plataformaRg h2 {
        font-size: 100%;
    }
}

@media(max-width: 1000px) {
    .plataformaRg h2 {
        font-size: 100%;
    }
}

@media(min-width: 1000px) {
    .plataformaRg h2 {
        font-size: 30px;
    }
    .plataformaRg-1 {
        text-align: right;
    }
}

.zap .fab {
    color: #06b400;
}

.contact {
    margin: 10% 0% 0% 20%;
}

.contact button i {
    margin-right: 10px;
    color: #00649e;
}

.videos {
    padding-top: 150px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.videos div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .videos {
        flex-direction: column;
    }
    .primeiro {
        padding-top: 100px !important;
    }
    .videos div {
        width: 100%;
        margin: 30px 0px 30px 0px;
    }
}

.missao {
    margin-top: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: #212121;
}

@media (max-width: 1075px) {
    .missao {
        flex-direction: column;
    }
    .missao .missao-text {
        width: 100% !important;
        margin: 0 !important;
        padding-left: 30px;
    }
    .missao .missao-img {
        width: 100% !important;
        margin: 0 !important;
    }
    .missao .missao-img img {
        width: 80% !important;
        padding-left: 30px;
    }
    .missao-text p {
        width: 80% !important;
    }
}

.missao .missao-text {
    width: 60%;
    height: 100%;
    margin: 20px;
}

.missao-text h2 {
    color: #31ad00;
    font-size: 50px;
    padding-bottom: 20px;
}

.missao-text p {
    color: #fff;
    height: 60%;
    font-size: 28px;
    text-align: justify;
}

.missao .missao-img {
    width: 40%;
    margin: 20px;
    display: flex;
    align-items: center;
}

.missao-img img {
    width: 450px;
}

a.svelte-11d2z92 {
    display: none;
}

@media(max-width: 600px) {
    .shake.svelte-h9vrs5 {
        margin-bottom: 50px !important;
    }
}

.shake.svelte-h9vrs5 {
    width: 40px;
    right: 20px !important;
    bottom: 50px !important;
}

.cr {
    width: 100% !important;
}

.plataforma {
    width: 100% !important;
}

.plataforma img {
    width: 100% !important;
}

.plataforma {
    position: relative;
    width: 50%;
}

.plataforma-1 {
    display: flex;
    position: absolute;
    top: 10px;
    text-shadow: 5px 1px 4px #C1C1C1;
    width: 20%;
}

.plataforma h2 {
    font-weight: 700;
    margin-left: 10px;
}

@media(max-width: 450px) {
    .plataforma h2 {
        font-size: 60%;
    }
}

@media(max-width: 800px) {
    .whatz {
        display: none;
    }
    .plataforma h2 {
        font-size: 100%;
    }
    .plataforma-1 {
        width: 40%;
    }
}

@media(max-width: 1000px) {
    .plataforma h2 {
        font-size: 100%;
    }
    .plataforma-1 {
        width: 40%;
    }
}

@media(min-width: 1000px) {
    .plataforma h2 {
        font-size: 30px;
    }
    .plataforma-1 {
        width: 40%;
        text-align: left;
    }
}

.f-class {
    width: 100%;
    display: flex;
    background-color: #2e2e2e;
    align-items: center;
    justify-content: center;
}

.f-class h2 {
    font-size: 50px;
    font-weight: 700;
    color: #5ba73d;
}

.f-class p {
    color: #fff !important;
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0px 20px 0px;
    text-align: justify;
}

.f-class div {
    width: 50%;
    padding-left: 30px;
}

.f-class .img-f {
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-class img {
    width: 70%;
    opacity: 1 !important;
}

@media (max-width: 950px) {
    .f-class {
        flex-direction: column;
    }
    .f-class div {
        width: 100%;
        padding-left: 0px;
    }
    .f-class p, .f-class h2 {
        margin: 20px 10px 20px 10px;
        font-size: 15px;
    }

    
    .f-class img {
        width: 70% !important;
    }
}