@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Gloock&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face{
    font-family: "anzeigen";
    src: url('../assets/fonts/anzeigen-grotesk.otf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::selection {
    color: rgba(192, 207, 236, 0.781);
    background-color: rgba(28, 35, 54, 0.781);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    color: #070C3F;
    font-family: 'Poppins';
}

section {
    padding: 30px 150px;
}

/* scrollbar-in */
::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background: white;
}
  
::-webkit-scrollbar-thumb {
    background: #6C95D7;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #03BAD3;
}
/* scrollbar-out */

/* header-in */
header {
    display: flex;
    position: fixed;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 115px;
    padding: 0 150px;
    z-index: 800;
    background-color: white;
    box-shadow: 0 0 15px rgb(255, 255, 255, 0.25);
}

.logo {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo .arquive-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.arquive-logo img {
    width: 50px;
}

.arquive-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arquive-logo .logo-text h1 {
    font-family: 'Poppins';
    font-weight: 300;
    letter-spacing: 2.5px;
    line-height: 16px;
    font-size: 18px;
    color: #070C3F;
    white-space: nowrap;
}

.arquive-logo .logo-text h2 {
    font-family: 'anzeigen';
    font-weight: 200;
    text-transform: uppercase;
    font-size: 26px;
    color: #070C3F;
    white-space: nowrap;
}

.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 33%;
    gap: 20px;
}

.nav a {
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #070C3F;
    white-space: nowrap;
}

.nav a:hover {
    color: #4f7db3;
}

.nav a.active {
    color: #6C95D7;
}

.social-media {
    align-items: center;
    justify-content: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 33%;
}

.social-media a img {
    width: 35px;
    transition: all 0.3s ease;
}

.social-media a:hover img {
    transform: rotate(-6deg);
    transition: all 0.3s ease;
}

.social-media-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background-color: #FFFFFF;
    padding: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0px 25px rgba(0, 0, 0, .20);
}

.social-media-mobile:hover {
    transition: all 0.3s ease;
}

.social-media-mobile img {
    width: 36px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

#sign-closed {
    opacity: 1;
    transform: rotateZ(0);
    transition: all 0.3s ease;
    position: absolute;
}

#sign-open {
    opacity: 0;
    transform: rotateZ(-180deg);
    transition: all 0.3s ease;
    position: absolute;
}

.popup-open #sign-closed {
    opacity: 0;
    transform: rotateZ(-360deg);
    transition: all 0.3s ease;
}

.popup-open #sign-open {
    opacity: 1;
    transform: rotateZ(0);
    transition: all 0.3s ease;
}

.mobile-popup-social { 
    display: none;
    opacity: 0;
    pointer-events: none;
    flex-direction: row;
    background-color: #FFFFFF;
    right: 150px;
    margin-top: 145px;
    gap: 7.5px;
    z-index: 30;
    overflow: hidden;
    position: absolute;
    padding: 12px;
    transform: translate3d(0, -24px, 0px);
    box-shadow: 0 0px 25px rgba(0, 0, 0, .20);
    transform-style: preserve-3d;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.mobile-popup-social:hover {
    transition: all 0.3s ease;
} 

.mobile-popup-social.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition: all 0.3s ease;
}

.mobile-popup-social a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-popup-social a img {
    width: 35px;
    transition: all 0.3s ease;
}

.mobile-popup-social a img:hover {
    transform: rotate(-6deg);
    transition: all 0.3s ease;
}
/* header-out */

/* banner-in */
.banner {
    width: 100%;
    margin-top: 115px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 10 / 3;
    background-color: #070C3F;
}
/* banner-out */

/* about-in */
.about {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.about .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.about .about-text h1 {
    font-size: 30px;
}

.about .about-text h2 {
    font-size: 22px;
    font-weight: 600;
}

.about .about-text .btn-about {
    width: min-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 50px;
    background-color: #9CBFF9;
    color: #070C3F;
    border: none;
    font-size: 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    margin-top: 30px;
}

.about .about-text .btn-about:hover {
    background-color: #070C3F;
    color: white;
}

.about .about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.about .about-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
}
/* about-out */

/* reasons-in */
.reasons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reasons .reasons-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reasons .reasons-text h1 {
    font-size: 30px;
    text-align: center;
}

.reasons .reasons-text h2 {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.reasons .reasons-elements {
    display: flex;
    flex-direction: row;
    gap: 100px;
    padding: 75px 0;
    align-items: center;
    justify-content: center;
}

.element {
    display: flex;
    flex-direction: column;
    align-items: center;

    justify-content: center;
}

.element i {
    font-size: 60px;
    color: #03c3d3;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.element:hover i{
    font-size: 65px;
    color: #6C95D7;
    transition: all 0.3s ease;
}

.element h1 {
    font-size: 30px;
    white-space: nowrap;
}

.element h2 {
    font-size: 22px;
    white-space: nowrap;
    margin-top: -6px;
}
/* reasons-out */

/* storys-in */
.storys {
    width: 100%;
    padding: 50px 150px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    color: white;
    background-color: #6C95D7;
    border-top: #03BAD3 20px solid;
    border-bottom: #03BAD3 20px solid;
}

.storys .storys-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.storys .storys-text h1 {
    font-size: 30px;
    text-align: center;
}

.storys .storys-text h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.storys .storys-gallery {
    position: relative;
    margin: 0 auto;
    color: #070C3F;
    max-width: 1500px;
}

.storys-gallery ul li {
    margin-bottom: 50px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.point {
    min-width: 22px;
    height: 22px;
    background-color: white;
    border-radius: 100%;
    z-index: 2;
    position: relative;
    left: 1px;
    transition: all 0.3s ease;
}

.storys-gallery ul li:hover .point {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
    transition: all 0.3s ease;
}

.storys-gallery ul li .content {
    width: 50%;
    padding: 0 20px;
    border-radius: 10px;
}

.storys-gallery ul li:nth-child(odd) .content {
    padding-left: 0;
    border-radius: 10px;
}

.storys-gallery ul li:nth-child(odd) .date {
    padding-right: 0;
}

.storys-gallery ul li:nth-child(even) .content {
    padding-right: 0;
    border-radius: 10px;
}

.storys-gallery li:nth-child(even) .date {
    padding-left: 0;
}

.storys-gallery ul li .date {
    width: 50%;
    padding: 0 20px;
    font-weight: normal;
}

.storys-gallery ul li .date h4 {
    background-color: #b9ceeb;
    font-size: 18px;
    width: max-content;
    text-align: center;
    padding: 5px 25px;
    border-radius: 10px;
}

.storys-gallery ul li .content h3 {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #b9ceeb;
    margin-bottom: 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

.storys-gallery ul li .content p {
    padding: 10px 20px;
    background-color: white;
    margin-top: 0;
    text-align: center;
}

.storys-gallery ul li .content img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    padding: 5px 20px 20px 20px;
    background-color: white;
    margin-top: 0;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.storys-gallery ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.storys-gallery ul li:nth-child(even) .date h4 {
    float: right
}

.storys-gallery::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
}
/* storys-out */

/* contribute-in */
.contribute {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contribute .contribute-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contribute .contribute-text h1 {
    font-size: 30px;
    text-align: center;
}

.contribute .contribute-text h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.contribute-elements- {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 75px 0;
    align-items: center;
    justify-content: center;
}

.contribute-elements-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contribute-elements-desktop .contribute-type {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
    width: min-content;
    background-color: #b9ceeb;
    border-radius: 999px;
}

.contribute-elements-desktop .contribute-type a {
    cursor: pointer;
    padding: 5px 22px;
    font-weight: 500;
    background-color: #b9ceeb;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.contribute-type a.active {
    font-weight: 600;
    padding: 5px 25px;
    background-color: #9CBFF9;
    transition: all 0.15s ease;
}

.by-pix {
    width: 100%;
    height: 350px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 30px 50px;
    gap: 25px;
}

.pix-infos {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-infos h1 {
    font-size: 20px;
}

.pix-code {
    width: 50%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pix-code h1 {
    font-size: 18px;
    text-align: center;
}

.by-bank-transfer {
    width: 100%;
    height: 350px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 50px;
    gap: 25px;
}

.by-bank-transfer h1 {
    text-align: center;
}

.by-visit {
    width: 100%;
    height: 350px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 30px 50px;
    gap: 50px;
}

.by-visit .visit-ssa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.by-visit .visit-sf {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.by-visit .visit-ssa h1 {
    text-align: center;
}

.by-visit .visit-sf h1 {
    text-align: center;
}

.contribute-elements-mobile {
    display: none;
    flex-direction: column;
    gap: 100px;
    padding: 50px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* contribute-out */

/* accountability-in */
.accountability {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.accountability .accountability-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.accountability .accountability-text h1 {
    font-size: 30px;
    text-align: center;
}

.accountability .accountability-text h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.accountability .accountability-finance {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* accountability-out */

/* footer-in */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6C95D7;
    padding: 50px 150px;
    border-top: #03BAD3 20px solid;
    gap: 100px;
    animation: 2s ease border-anim infinite;
}

@keyframes border-anim {
    0% {
        border-top: #03BAD3 20px solid;
    }
    50% {
        border-top: #03c3d3 20px solid;
    }
    100% {
        border-top: #03BAD3 20px solid;
    }
}

footer .infos {
    display: flex;
    flex-direction: column;
}

.infos .footer-logo {
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 50px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo .logo-text h1 {
    font-family: 'Poppins';
    font-weight: 300;
    letter-spacing: 2.5px;
    line-height: 16px;
    font-size: 18px;
    color: white;
    white-space: nowrap;
}

.footer-logo .logo-text h2 {
    font-family: 'anzeigen';
    font-weight: 100;
    text-transform: uppercase;
    font-size: 26px;
    color: white;
}

.infos h3 {
    color: white;
    white-space: nowrap;
    text-align: center;
}

.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-footer a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    white-space: nowrap;
}

.btn-contribute {
    padding: 8px 22px;
    background-color: white;
    color: #070C3F;
    border: none;
    font-size: 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contribute:hover {
    background-color: #070C3F;
    color: white;
}

@media (max-width: 1200px) {
    .arquive-logo img {
        display: none;
    }

    header {
        padding: 0 100px;
    }

    section {
        padding: 30px 100px;
    }

    .storys {
        padding: 50px 100px;
    }

    footer {
        padding: 50px 100px;
    }

    .mobile-popup-social {
        right: 100px;
    }
}

@media (max-width: 1000px) {
    #reasons-nav {
        display: none;
    }

    .about {
        flex-direction: column;
    }

    .about .about-text {
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .about .about-img {
        width: 100%;
    }

    header {
        padding: 0 80px;
    }

    section {
        padding: 30px 80px;
    }

    .storys {
        padding: 50px 80px;
    }

    footer {
        padding: 50px 80px;
    }

    .mobile-popup-social {
        right: 80px;
    }

    .reasons .reasons-elements {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .social-media {
        display: none;
    }

    .mobile-popup-social {
        display: flex;
    }

    .social-media-mobile {
        display: flex;
    }

    header {
        padding: 0 75px;
    }

    section {
        padding: 30px 75px;
    }

    .by-pix {
        padding: 0
    }

    .by-bank-transfer {
        padding: 0
    }

    .by-visit {
        padding: 0
    }

    footer {
        padding: 50px 75px;
        gap: 50px;
    }

    .mobile-popup-social {
        right: 75px;
    }

    .btn-contribute {
        display: none;
    }
}

@media (max-width: 800px) {
    .banner img {
        aspect-ratio: 8 / 3;
    }

    header {
        padding: 0 65px;
    }

    section {
        padding: 30px 65px;
    }

    footer {
        padding: 50px 65px;
    }

    .mobile-popup-social {
        right: 65px;
    }

    .about .about-text h1 {
        font-size: 26px;
    }

    .about .about-text h2 {
        font-size: 18px;
    }

    .about .about-text .btn-about {
        padding: 5px 30px;
        font-size: 16px;
    }

    .reasons .reasons-text h1 {
        font-size: 26px;
    }

    .reasons .reasons-text h2 {
        font-size: 18px;
    }

    .storys .storys-text h1 {
        font-size: 26px;
    }

    .storys .storys-text h2 {
        font-size: 18px;
    }

    .storys-gallery ul li .content h3 {
        font-size: 16px;
    }

    .storys-gallery ul li .content p {
        font-size: 14px;
    } 

    .contribute .contribute-text h1 {
        font-size: 26px;
    }

    .contribute .contribute-text h2 {
        font-size: 18px;
    }

    .accountability .accountability-text h1 {
        font-size: 26px;
    }

    .accountability .accountability-text h2 {
        font-size: 18px;
    }

    .nav-footer a {
        font-size: 17px;
    }

    .reasons .reasons-elements {
        gap: 30px;
    }

    .element h1 {
        font-size: 28px;
    }

    .element h2 {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .reasons .reasons-elements {
        flex-direction: column;
        padding: 25px 0;
        gap: 45px;
    }

    .about {
        gap: 45px;
    }

    .element h1 {
        font-size: 25px;
    }

    .element h2 {
        font-size: 20px;
    }

    .contribute-elements-desktop .contribute-type {
        gap: 15px;
    }

    .contribute-elements-desktop .contribute-type a {
        padding: 5px 15px;
    }
}

@media (max-width: 730px) {
    .logo {
        width: 50%;
    }

    .nav {
        display: none;
    }

    .social-media {
        width: 50%;
    }
}

@media (max-width: 650px) {
    .by-pix {
        flex-direction: column;
        text-align: center;
    }

    .by-bank-transfer {
        flex-direction: column;
        text-align: center;
    }

    .by-visit {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0 50px;
    }

    section {
        padding: 30px 50px;
    }

    footer {
        padding: 50px 50px;
        gap: 40px;
    }

    .mobile-popup-social {
        right: 50px;
    }

    .contribute-elements-desktop {
        display: none;
    }

    .contribute-elements-mobile {
        display: flex;
    }
}

@media (max-width: 550px) {
    .banner img {
        aspect-ratio: 5.5 / 3;
    }

    header {
        padding: 0 30px;
        height: 100px;
    }

    section {
        padding: 30px;
    }

    .storys {
        padding: 50px;
    }

    footer {
        padding: 50px;
        flex-direction: column;
        gap: 25px;
    }

    .nav-footer {
        flex-direction: row;
        gap: 15px;
    }

    #storys-footer {
        display: none;
    }

    .mobile-popup-social {
        right: 30px;
    }

    .banner {
        margin-top: 100px;
    }
}

@media (max-width: 525px) {
    .storys {
        display: none;
    }

    #btn-about-storys {
        display: none;
    }
}

@media (max-width: 400px) {
    .social-media {
        display: none;
    }
}

@media (max-width: 350px) {
    .mobile-popup-social {
        display: none;
    }

    .social-media-mobile {
        display: none;
    }

    header {
        height: 70px;
        align-items: center;
        justify-content: center;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .banner {
        margin-top: 70px;
    }
}