/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

p,
li,
ul,
a,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    display: inline-block;
    max-width: 100%;
}

/* Layout */
.main_section {
    background-color: rgba(239, 238, 253, 1);
}

/* Header */
.header {
    padding: 17px 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo_box {
    display: flex;
    align-items: center;
}

/* Common Components */
.heading2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 31px;
    text-align: left;
    margin-bottom: 32px;
}

.heading2 br {
    /* ? Para que se usa esto? */
    display: none;
}

.pera_box > p > span {
    font-weight: 700;
}

.pera_box > p > i {
    font-weight: 700;
}

.testi_img {
    flex-shrink: 0;
}

.testi_text p span {
    font-weight: 700;
}

/* Footer Styles */
.footer {
    padding: 30px 24px;
    background: #fff;
}

.logo_wrapper_footer {
    text-align: center;
}

.footer_text_wrapper {
    text-align: center;
}

.footer_para {
    color: #6b7280;
    font-size: 12px;
}

.footer_para a {
    color: #6b7280 !important;
    margin-bottom: 6px;
    display: inline-block;
    text-decoration: underline;
}

.disclaimer_text {
    margin-bottom: 15px;
}

.footer_text#footer {
    display: none;
}

/* Responsive */
@media only screen and (max-width: 767px) {
    .footer {
        padding: 30px 0;
    }

    .footer_para {
        font-size: 11px;
    }
}

@media only screen and (max-width: 454px) {
    .header .button_box > a {
        font-size: 9px !important;
    }

    .header .button_box > a > img {
        width: 15px;
        height: 15px;
    }

    .start_btn {
        padding: 14px 45px;
    }

    .header .logo_box {
        display: flex;
        align-items: center;
    }
}

@media only screen and (max-width: 383px) {
    .header {
        margin: 0 -4px;
    }

    .header .logo_box img {
        max-width: 135px;
    }

    .header .button_box > a {
        padding-left: 12px;
        gap: 2px;
    }

    .banner2 {
        margin: 12px auto 40px;
    }

    .start_btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .client_review {
        font-size: 18px;
        line-height: 28px;
    }

    .testi_text p {
        padding-right: 0;
    }
}
