@charset "UTF-8";

/*!
 * Home css - 1.1.1
*/

/* General */
h2 {
    font-size: 50px !important;
    font-weight: 700 !important;
}

/* Section home */
#home,
.bg-light-primary {
    background-color: #e4eef9;
}

#home h1,
.bg-light-primary h1 {
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #242D60 !important;
}

#home h1 {
    font-size: 70px !important;
}

#home .hero-image {
    transform: rotate(2deg);
    transform-origin: center;
    padding: 7px;
    background-color: var(--light);
    border-radius: 10px;
}

/* Section key figures */

#key-figures h2 {
    font-size: 50px;
    line-height: 1;
    font-weight: 600;
}

#key-figures p {}

#key-figures .vr {
    height: 70px;
    align-self: center;
}

#key-figures .item .surtitle {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #65CED6;
}

#key-figures .item .title {
    font-size: 50px;
    font-weight: 800;
    color: #242D60;
}

#key-figures .item {
    padding-left: 10px;
    padding-right: 10px;
}

/* Advantages */
#advantages {
    border-top: 1px solid #eeeeee;
}

#advantages h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1 !important;
}

#advantages p {
    font-weight: 300;
}

#advantages img {
    transform: rotate(-1deg);
    transform-origin: center;
    width: 900px;
    padding: 7px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

#advantages .items {
    font-weight: 300;
}

#advantages .items li {
    display: flex;
    gap: 5px;
    justify-content: start;
    margin-bottom: 10px;
}

#advantages .items li i {
    color: #65CED6;
    font-size: 20px;
    margin-top: 5px;
}

/* How it work */
#how {
    background-color: #FAFAFA;
}

#how h2 {
    font-size: 50px;
    font-weight: 700;
}

#how #items .number {
    color: #2a2a2a;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    max-width: 75px !important;
}

#how #items .number::after {
    display: block;
    content: "";
    background: #65CED6;
    width: 100%;
    height: 2px;
}

#how h3 {
    color: #242D60;
}

/* Faq */
.accordion .accordion-item {
    border: none !important;
}

.accordion .accordion-title {
    color: var(--primary) !important;
    font-weight: 600;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #d4d4d4;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--primary) !important;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary);
    border-radius: 30px;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    min-height: 4em;
    max-height: 15em;
    transition: all 200ms linear;
    will-change: opacity, min-height;
}

.accordion .accordion-content {
    opacity: 0;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, min-height 200ms linear;
    will-change: opacity, min-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 1em 0;
}