/*
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*/

:root{
    --brand-color:#FDBB3D;
    --dark-color:#2F2E41;
    --mid-color:#6290C8;
    --light-color:#F7F7F7;
    
    --text-color:#606060;
}

body {
    padding: 0;
    margin: 0;

    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    background-color: var(--light-color);

    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1, h2, h3, p {
    margin: 0;
}

.lightball {
    position: absolute;

    width: 285px;
    height: 285px;
    transform: rotate(-0.8deg);
    aspect-ratio: 1/1;

    border-radius: 50%;
    background: rgba(183, 131, 56, 0.60);
    filter: blur(150px);

    pointer-events: none;

    z-index: -1;
}

@media screen and (max-width: 500px) {
    .lightball {
        display: none;
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;

    position: relative;

    width: 100%;
    box-sizing: border-box;
    margin: 0 0 90px 0;

    padding: 18px 110px;
    
    border-bottom: 1px solid rgba(228, 202, 153, 1);
}

.navbar img {
    object-fit: contain;
}

.navbar .pc_links {
    display: flex;
    align-items: center;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    gap: 3rem;
}

.navbar .pc_links a {
    color: var(--dark-color);
    text-decoration: none;
}

.navbar .mobile_hamburguer {
    display: none;
    margin-left: 1rem;

    cursor: pointer;
    user-select: none;
}

@media screen and (max-width: 880px) {
    .navbar .mobile_hamburguer {
        display: block;
    }

    .navbar .pc_links {
        display: none;
    }

    .navbar .msg_container {
        margin-left: auto;
    }
}

@media screen and (max-width: 550px) {
    .navbar .logo {
        display: none;
    }

    .navbar .msg_container {
        margin: 0;
    }

    .navbar {
        justify-content: end;
    }
}

.navbar .mobile_hamburguer label {
    display: block;
}

.navbar .mobile_links {
    display: none;
    flex-direction: column;

    position: absolute;
    background-color: var(--brand-color);
    gap: 0.5rem;

    padding: 5px 12px;
    border-radius: 15px;
}

.navbar .mobile_links a {
    color: var(--light-color);
    text-decoration: none;
}

#menu-toggle:checked ~ .navbar .mobile_hamburguer .mobile_links {
    display: flex;
}

.navbar .msg_container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 45px;
    height: 45px;

    border-radius: 100%;

    background-color: var(--brand-color);
}

#home {
    display: flex;
    flex-direction: column;

    margin-left: 120px;
    margin-right: 120px;

    margin-bottom: 6rem;
}

@media screen and (max-width: 850px) {
    #home {
        margin: 0 70px 0 70px;
    }
}

@media screen and (max-width: 600px) {
    #home {
        margin: 0 40px 2rem 40px;
    }
}

@media screen and (max-width: 400px) {
    #home h1 {
        font-size: 2.5em;
    }
}

.home-container{
    display: flex;

    gap: 34px;
}

@media screen and (max-width: 1078px) {
    .home-container .hero_svg {
        display: none;
    }
}

.home-texts {
    display: flex;
    flex-direction: column;

    width: 800px;
}

.title {
    font-size: 3.1rem;
    color: var(--dark-color);

    margin: 0;
    
}

.subtitle {
    font-size: 1.1rem;

    color: var(--text-color);

    margin: 5px 0 60px 0;
}

.highlight {
    color: var(--brand-color);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 210px;
    height: 50px;

    gap: 24px;
    
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;

    color: var(--light-color);
    border-radius: 50px;
    background-color: var(--brand-color);
    box-shadow: 0 0 12px 0 rgba(183, 131, 56, 0.74);
    border:none;
}

.btn-icon {
    width: 28px;
    height: 28px;
}

.hero_svg {
    width: 400px;
}

.minicards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;

    gap: 1rem;

    margin-bottom: 6rem;
}

.minicard {
    width: 220px;
    max-width: 100%;

    padding: 28px;
    border-radius: 30px;
    background-color: #EDEDED;
}

.minicard h2, .minicard p {
    margin: 0.3rem 0;
}

.minicard h2 {
    font-size: 1.3em;
}

.minicard p {
    font-size: 0.9em;
}

#partners {
    text-align: center;
    color: #2F2E41
}

.about {
    border-radius: 35px;

    padding: 40px 220px;
    box-sizing: border-box;

    background-color: #2A2E36;
    color: var(--light-color);

    margin-bottom: 6rem;
}

.about p.desc {
    max-width: 620px;
}

.about .sec {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 3rem;
    
    margin: 2.5rem auto 0 auto;
}

.about .sec .card {
    padding: 24px;
    border-radius: 24px;

    box-sizing: border-box;

    background-color: rgba(237, 237, 237, 0.10);

}

.about .sec .card h2 {
    font-weight: bold;
}

.about .sec .card p {
    margin-top: 0.5rem;
    color: rgba(237, 237, 237, 0.85);
}

.about .cta {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 210px;
    height: 50px;

    gap: 24px;
    
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;

    color: var(--light-color);
    border-radius: 50px;
    background-color: var(--brand-color);
    box-shadow: 0 0 12px 0 rgba(183, 131, 56, 0.74);
    border:none;

    margin-left: auto;
    margin-top: 1.5rem;
}

.simple_section {
    padding: 0 80px;

    margin-bottom: 6rem;
}

.simple_section h1 {
    color: #3E4149;
}

.simple_section p {
    color: #606060;
    margin: 0.5rem 0;
}

.simple_section #img {
    display: block;
    margin: -8rem auto 0 auto;
}

@media screen and (max-width: 700px) {
    .simple_section {
        padding: 0 40px;
    }
}

#money_solutions #cards {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: auto;
    margin-top: 4rem;
}

#money_solutions .flex_element {
    display: flex;
    gap: 4rem;

    max-width: 880px;
}

#money_solutions .flex_element > img {
    display: block;
    width: 280px;
    padding: 40px;
}

#money_solutions .flex_element .empty {
    width: 380px;
}

@media screen and (max-width: 1038px) {
    #money_solutions #cards {
        gap: 2rem;
    }

    #money_solutions .flex_element {
        flex-direction: column;
    }

    #money_solutions .flex_element img {
        display: none;
    }

    #money_solutions .flex_element .empty {
        display: none;
    }
}

.midcard {
    width: 380px;
    max-width: 100%;
    padding: 28px;

    border-radius: 24px;
    background-color: rgba(237, 237, 237, 1);
}

@media screen and (max-width: 400px) {
    .minicard, .midcard {
        width: fit-content;
    }
}

.midcard h2, .midcard p {
    margin: 0.3rem 0;
}

.midcard h2 {
    color: rgba(62, 65, 73, 1);
    font-size: 1.3em;
}

.midcard p {
    font-size: 0.9em;
}

.brand_color_section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;

    border-radius: 35px;

    padding: 40px 220px;
    box-sizing: border-box;

    background-color: var(--brand-color);

    margin-bottom: 6rem;
}

@media screen and (max-width: 1100px) {
    .brand_color_section {
        padding: 40px 120px;
    }
}

@media screen and (max-width: 850px) {
    .brand_color_section {
        padding: 40px 60px;
    }
}

@media screen and (max-width: 740px) {
    .brand_color_section {
        width: 100%;

        padding: 40px 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .brand_color_section > div {
        max-width: 80% !important;
    }
}

.brand_color_section > div {
    max-width: 50%;
}

.brand_color_section h1 {
    color: #3E4149;
    font-weight: bold;
}

.brand_color_section p {
    color: #606060;
    margin: 0.5rem 0
}

.brand_color_section .card {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px 0;
    border-radius: 35px;
    background-color: rgba(237, 237, 237, 0.10);
}

#reputation > img {
    display: block;
    margin: auto;

    max-width: 100%;
}

#teach > img {
    display: block;
    margin: auto;

    max-width: 100%;
}

@media screen and (max-width: 1300px) {
    .about {
        padding: 40px 40px;
    }

    .about .cta {
        margin: auto;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 880px) {
    .about .wrap {
        flex-wrap: wrap;
    }

    .about .wrap-reverse {
        flex-wrap: wrap-reverse;
    }
}

.carousel {
    width: 100%;

    margin: -1rem auto 2rem auto;
    overflow: hidden;
    display: flex;
    align-items: center;

    > * {
        flex: 0 0 100%;
    }
}

.carousel .group .carousel_card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 200px;
}

.carousel img {
    display: block;

    object-fit: contain;
}

.group {
    display: flex;
    gap: 20px;

    padding-right: 20px;

    will-change: transform;
    animation: scrolling 30s linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.footer {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;

    gap: 2rem;
    padding: 35px 65px;

    background-color: var(--brand-color);
}

.footer img {
    object-fit: contain;
}

.footer .rows {
    display: flex;
    justify-content: space-between;

    gap: 0.5rem;
}

.footer .rows .text {
    color: rgba(62, 65, 73, 1);
    font-weight: bold;
}

.footer .rows .links {
    display: flex;
    flex-direction: column;
}

.footer .rows .links a {
    color: rgba(96, 96, 96, 1);
    text-decoration: none;

    font-weight: 300;
}

.footer .contact {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 210px;
    height: 50px;

    gap: 24px;
    
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;

    color: var(--light-color);
    border-radius: 50px;
    background-color: rgba(62, 65, 73, 1);
    box-shadow: 0 0 12px 0 rgba(183, 131, 56, 0.74);
    border:none;

    margin-left: auto;
}

@media screen and (max-width: 620px) {
    .footer .contact {
        margin: 0
    }

    .footer {
        justify-content: center;
    }
}

@media screen and (max-width: 377px) {
    .footer {
        padding: 35px 25px;
    }
}