@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,700,700i,800,800i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');


@font-face {
    font-family: 'Apercu';
    src: local('Apercu'), url('/css/assets/fonts/Apercu_Pro_Regular.otf');
    font-display: swap;
}

@font-face {
    font-family: 'Apercu Bold';
    src: local('Apercu Bold'), url('/css/assets/fonts/Apercu_Pro_Bold.otf');
    font-display: swap;
}

/* UI Colors */
:root {
    --indigo: #460782;
    --green_light: #ecfcf8;
    --pale-gray: #f0f1f2;
    --midnight: #120121;
    --aqua-marine: #36e7b5;
    --silver-two: #c0c6cd;
    --pale-green: #bff7e7;
    --slate-grey: #565f6b;
    --primary-disabled: #88929f;
    --primary: #460782;
    --secondary: #dec0fb;
    --third: #f7f0fe;

}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* UI Paragraph styles */

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

h1 {
    font-size: 80px;
    color: #000;
}

.general-title {
    font-size: 56px;
}

.subpage-title {
    font-size: 48px;
}

h2 {
    font-size: 56px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 32px;
}

p {
    margin: 10px 0;
    font-size: 21px;
}

.large {
    font-size: 24px;
}

.medium {
    font-size: 21px;
}

.small {
    font-size: 18px;
}

/* UI Button styles */
button {
    padding: 16px 30px;
    background: none;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

button:focus {
    outline: none;
}

img[alt="arrow"],
.arrow {
    width: 48px;
    margin-left: 15px;
}

img[alt="arrow-little"],
.arrow-little {
    width: 26px;
    margin-left: 15px;
}

.tiny-btn {
    padding: 16px 60px;
}

.medium-btn {
    padding: 16px 56px;
}

.large-btn {
    padding: 11px 19px 11px 20px;
    border-radius: 4px;
}

.regular {
    background-color: var(--dark_ultramar);
}

.regular:hover {
    transition: 0.2s;
    background-color: var(--light_rose);
    color: var(--dark_ultramar);
}

.regular:focus {
    transition: 0.2s;
    background-color: var(--light_rose);
    color: white;
}

.outline {
    border: 1px solid var(--indigo);
    color: var(--indigo);
}

.outline:hover {
    transition: 0.2s;
    background-color: var(--indigo);
    color: white;
}

.outline:focus {
    transition: 0.2s;
    background-color: var(--indigo);
    color: white;
}

.negative-regular {
    background-color: white;
    color: var(--dark_ultramar);
}

.negative-regular:hover {
    transition: 0.2s;
    background-color: var(--light_rose);
    color: var(--dark_ultramar);
}

.negative-regular:focus {
    transition: 0.2s;
    background-color: var(--light_rose);
    color: white;
}

.negative-outline {
    background: none;
    color: white;
    border: 2px solid white;
}

.negative-outline:hover {
    transition: 0.2s;
    background: none;
    color: var(--light_rose);
    border: 2px solid var(--light_rose);
}

.negative-outline:focus {
    transition: 0.2s;
    background-color: var(--dark_blue_grey);
    color: var(--light_rose);
    border: 2px solid var(--light_rose);
}

.negative-outline .arrow {
    fill: white;
}

.negative-outline:hover .arrow,
.negative-outline:focus .arrow {
    transition: 0.2s;
    fill: var(--light_rose);
}

/* UI Other styles */
a,
a:hover {
    text-decoration: none;
    color: var(--indigo);
}

hr {
    width: 50%;
    border-top: 3px solid var(--aqua-marine);
    margin: 16px 0;
    opacity: 1;
}

input,
textarea {
    padding: 14px 18px;
    margin: 10px 0;
    width: 100%;
    border: none;
    border-bottom: 3px solid black;
    font-size: 21px;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 3px solid var(--dark_ultramar);
}

input:disabled,
textarea:disabled {
    background: none;
    border-bottom: 3px solid #838383;
}

.invalid-input {
    border-color: var(--danger_red);
    margin-bottom: 10px;
}

.invalid-message {
    color: var(--danger_red);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.ipt-disabled {
    color: #838383;
}

.card {
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 4px;
    padding: 6px;
    display: inline-block;
}

.border-card {
    border-left: 2px solid black;
    padding: 0 15px;
}

.bold {
    font-weight: 700;
    font-size: inherit;
}

.link {
    font-weight: 700;
    font-size: inherit;
    color: var(--dark_ultramar);
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
    color: var(--dark_ultramar);
}

.fw-bold {
    font-weight: 500 !important;
}

.circle-text-large.fw-bold {
    font-weight: 700 !important;
}

/* CHECKBOX */
.cb-container {
    display: block;
    position: relative;
    font-size: 20px;
    -webkit-user-select: noe;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hiding default checkbox */
.cb-container .cbox {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.cmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: white;
    border: 2px solid var(--dark_ultramar);
    border-radius: 4px;
}

.cb-container:hover input~.cmark {
    background-color: var(--pale_purple);
}

.cb-container input:checked~.cmark {
    background-color: var(--dark_ultramar);
    border: none;
}

.cmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cb-container input:checked~.cmark:after {
    display: block;
}

.cb-container .cmark:after {
    left: 8px;
    top: 5px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* RADIO BUTTON */
.radio-btn {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 38px;
    height: 38px;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-btn .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
    width: 38px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid var(--dark_ultramar);
}

.radio-btn:hover input~.checkmark {
    background-color: var(--pale_purple);
}

.radio-btn input:checked~.checkmark {
    background-color: var(--pale_purple);
    border-color: var(--dark_ultramar);
}

.radio-btn .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-btn input:checked~.checkmark:after {
    display: block;
    border-color: var(--dark_ultramar);
}

.radio-btn .checkmark:after {
    top: 8px;
    left: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--dark_ultramar);
}

/* HEADER */
header {
    z-index: 10;
    width: 100vw;
    height: 96px;
    position: fixed;
    top: 0;
    background-color: white;
    padding: 12px 36px;
    transition: top 0.4s ease-in-out;
}

.nav-up {
    top: -96px;
}

.navbar-toggler-icon {
    content: none;
}

header .logo {
    width: 150px;
    margin: 24px 0 0;
}

header nav {
    position: relative;
    float: right;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

header nav ul li,
header nav ul a {
    display: inline-block;
    height: fit-content;
}

header nav ul a {
    margin: 0 25px;
    font-size: 18px;
    font-weight: 400;
}

header nav ul .active {
    font-weight: 700;
}

header nav a[href="budget.html"] {
    margin-right: 0;
    border-radius: 2px;
    font-size: 18px;
}

header .lang {
    display: none;
}

/* MAIN */
main {
    padding: 32px 0px !important;
    margin-bottom: 100px;
}

/* FOOTER styles */
footer {
    background-color: var(--midnight);
    color: white;
    height: 280px;
    position: relative;
}

.footer-slogan {
    width: 100%;
    position: absolute;
    top: -102px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.footer-slogan img {
    width: 345px;
}

.footer-slogan h4 {
    text-align: left;
    margin-left: 35%;
    margin-top: 15px;
}

footer .footer-main {
    padding: 90px 80px 30px 100px;
    position: relative;
}

footer .logo {
    width: 250px;
}

footer .lang a {
    display: inline-block;
    font-weight: 700;
    font-size: 21px;
    margin: 15px 15px 0 0;
}

footer .lang a:hover {
    color: var(--light_purple);
}

footer .lang a:focus {
    color: var(--light_rose);
}

footer .lang .active {
    text-decoration: underline;
    color: var(--light_green);
}

footer button {
    color: var(--light_rose);
    font-size: 0.8em;
    position: absolute;
    top: 40px;
    right: 80px;
    padding: 0;
}

footer button img {
    width: 40px;
    margin: 10px auto;
}

footer button label {
    display: block;
    font-weight: 700;
    margin: 0 auto;
    width: 45px;
}

footer h3 span {
    font-weight: 700;
    font-size: inherit;
    color: var(--kiwi_green);
}

footer a {
    color: var(--silver-two);
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

footer .col-container {
    width: 100%;
    box-sizing: border-box;
    margin: 100px 0 20px 0;
}

footer .col {
    display: inline-block;
    margin: 0 10px;
    width: 20%;
    vertical-align: top;
}

footer .col:first-child {
    width: 30%;
}

footer .col:first-child .link {
    display: block;
}

footer .col span {
    font-weight: 700;
}

.cta div {
    margin-top: 45px;
    font-size: 42px;
    font-weight: 700;
}

.cta .link {
    color: var(--light_rose);
}

.services-nav span,
.communication-nav span,
.social-nav span {
    display: block;
    margin-bottom: 20px;
}

.services-nav ul,
.communication-nav ul,
.social-nav div {
    height: 192px;
    border-left: 2px solid white;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.services-nav li,
.communication-nav li {
    padding: 10px 15px;
}

.social-nav a {
    padding: 10px 15px;
    display: block;
    width: 64px;
}

.social-nav a:first-child {
    padding-top: 0;
}

.col a:hover,
.legal-nav a:hover {
    color: var(--light_rose);
}

.social-nav svg:hover {
    fill: var(--light_rose);
}

footer .copy,
footer .legal-nav {
    font-size: 16px;
    display: inline-block;
    margin: 15px 40px;
}

footer .legal-nav {
    float: right;
}

footer .legal-nav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: inline;
    margin: 0 10px;
}

/* COOKIES */
footer div.cookies_alert {
    position: fixed;
    display: none;
    width: 790px;
    height: 300px;
    z-index: 9999;
    background-color: var(--green_light);
    padding: 40px;
    bottom: 0;
    max-width: 100%;
}

footer div.cookies_alert div.cookies_text {
    margin: 20px 30px 0 30px;
}

footer div.cookies_alert div.icon-container {
    width: 400px;
    padding-top: 40px;
    text-align: center;
}

footer div.cookies_alert div.icon-container img {
    width: auto;
}

footer div.cookies_alert div.cookies_text p,
footer div.cookies_alert div.cookies_text a.link {
    color: var(--bs-body-color);
    display: block;
}

footer div.cookies_alert #cookiesAlert {
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    width: 130px;
    margin: 15px 0;
}

footer div.cookies_alert div.cookies_button a {
    width: 40px;
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
}

/* INTRO CLASS */
.intro {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
}

.intro .intro-titles {
    flex: 0 50%;
    padding: 80px 20px 80px 80px;
    margin-bottom: 160px;
}

.intro .intro-titles h4 {
    margin: 20px 0;
}

.intro .intro-image {
    flex: 0 50%;
    padding: 20px;
    position: relative;
}

.intro-image .animation-container {
    width: 550px;
}

/* ANIMATIONS */
.scale-up-center:hover {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

.title-main {
    margin-left: 60px;
    margin-top: -70px;
}

@media(min-width: 300px) and (max-width: 767.98px) {
    h1 {
        font-size: 54px;
    }

    .circle-1,
    .circle-3 {
        transform: translate(0, 0);
    }

    .title-main {
        margin-left: 1px;
        margin-top: 50px;
    }

    .general-title,
    .subpage-title {
        font-size: 30px;
    }


    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 21px;
    }

    p,
    .large,
    button {
        font-size: 16px;
    }

    hr {
        width: 50%;
        margin-bottom: 35px;
    }

    .large-btn {
        padding: 11px 19px 11px 20px;
        width: 178px;
        border-radius: 4px;
    }

    button .arrow {
        width: 40px;
    }

    .invalid-message {
        color: var(--danger_red);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 30px;
        display: block;
    }

    /* HEADER */
    header {
        padding: 0;
    }

    header .logo {
        width: 150px;
        margin: 35px 0 35px 28px;
    }

    header nav {
        position: absolute;
        width: 100%;
        margin: 0;
    }

    header nav button {
        position: absolute;
        right: 20px;
        top: -60px;
    }

    header nav ul {
        list-style-type: none;
        padding: 0;
        overflow: hidden;
        text-align: center;
        background-color: white;
    }

    header .open {
        height: calc(100vh - 86px);
        position: relative;
    }

    header nav ul a {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        color: var(--dark_ultramar);
        margin: 16px 0;
    }

    header nav ul a:focus {
        color: var(--light_rose);
    }

    header nav ul:last-child {
        margin-bottom: 50px;
    }

    header .navbar-toogler {
        padding: 0;
        margin: 0;
    }

    .navbar-toogler span {
        color: var(--dark_ultramar);
        width: 30px;
        padding: 0;
        margin: 0;
    }

    .navbar-toogler img {
        margin: 0;
    }

    header .lang {
        display: block;
        text-align: center;
        position: absolute;
        bottom: 21px;
    }

    header .lang hr {
        border-color: var(--dark_ultramar);
        margin: 32px auto;
    }

    header .lang li {
        display: inline-block;
    }

    header .lang a {
        font-weight: 700;
        font-size: 21px;
        margin: 0 5px;
    }

    header .lang a:focus {
        color: var(--light_rose);
    }

    header .lang .active {
        text-decoration: underline;
        color: var(--light_green);
    }

    /* FOOTER*/
    footer {
        height: 496px;
    }

    .footer-slogan {
        top: -50px;
    }

    .footer-slogan img {
        width: 175px;
    }

    .footer-slogan h4 {
        margin-left: 32%;
        width: 160px;
        margin-top: 15px;
    }

    footer .footer-main {
        padding: 180px 20px 20px 20px;
        position: relative;
    }

    footer .logo {
        width: 220px;
        display: block;
        margin: 0 auto;
    }

    footer .lang {
        position: absolute;
        bottom: 0;
        width: 90%;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    footer .lang a {
        display: inline-block;
        font-size: 24px;
        margin: 0 5px;
    }

    footer .active {
        text-decoration: underline;
        color: var(--pale_green);
    }

    footer button {
        top: 245px;
        right: 45px;
    }

    footer .col {
        display: block;
        margin: 20px 0;
        width: 100%;
    }

    footer .col:nth-child(2) {
        padding-top: 100px;
    }

    .cta div {
        font-size: 24px;
        position: absolute;
        top: -130px;
    }

    .services-nav ul,
    .communication-nav ul,
    .social-nav div {
        height: auto;
    }

    .social-nav div {
        border: none;
        text-align: center;
        margin-bottom: 60px;
        margin-top: 25px;
        display: flex;
    }

    .social-nav a {
        padding: 0 16px;
        display: inline-block;
        width: 90px;
    }

    footer .copy {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    footer .legal {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .legal span {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }

    footer .legal-nav {
        margin: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer .legal-nav li {
        display: block;
        margin: 15px 0;

    }

    /* LANDING CLASS */
    .intro {
        width: 100%;
        height: auto;
        padding: 10px;
        display: block;
    }

    .intro .intro-titles {
        padding: 20px;
        width: auto;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .intro .intro-titles h4 {
        font-weight: 400;
        font-size: 20px;
        margin: 0;
    }

    .intro .intro-image {
        display: block;
        padding: 0;
        margin: 0 auto;
    }
    /* cookies */
    footer div.cookies_alert {
        flex-direction: column;
    }
    footer div.cookies_alert div.icon-container {
        max-width: 100%;
        padding: 0;
    }
    footer div.cookies_alert div.icon-container img {
        width: 120px;
    }
    footer div.cookies_alert div.cookies_text {
    margin: 0;}
}

/* Medium devices(tablets, 768px and up) */
@media(min-width: 768px) and (max-width: 991.98px) {

    .circle-1,
    .circle-3 {
        transform: translate(0, 0);
    }

    .general-title,
    .subpage-title {
        font-size: 30px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 21px;
    }

    p,
    .large,
    button {
        font-size: 16px;
    }

    hr {
        width: 50%;
        margin-bottom: 35px;
    }

    .large-btn {
        padding: 11px 19px 11px 20px;
        border-radius: 4px;
    }

    button .arrow {
        width: 40px;
    }

    /* HEADER */
    header {
        padding: 0;
    }

    header .logo {
        width: 150px;
        margin: 35px 0 35px 28px;
    }

    header nav {
        position: absolute;
        width: 100%;
        margin: 0;
    }

    header nav button {
        position: absolute;
        right: 20px;
        top: -60px;
    }

    header nav ul {
        list-style-type: none;
        padding: 80px 0;
        overflow: hidden;
        text-align: center;
        background-color: white;
    }

    header .open {
        height: 100vh;
    }

    header nav ul a {
        margin: 20px 0;
    }

    header nav ul a:focus {
        color: var(--light_rose);
    }

    header .open {
        height: 100vh;
    }

    header nav ul:last-child {
        margin-bottom: 50px;
    }

    header .navbar-toogler {
        padding: 0;
        margin: 0;
    }

    .navbar-toogler span {
        color: var(--dark_ultramar);
        width: 30px;
        padding: 0;
        margin: 0;
    }

    .navbar-toogler img {
        margin: 0;
    }

    /* FOOTER */
    footer {
        height: 300px;
    }

    .footer-slogan img {
        width: 280px;
    }

    footer .footer-main {
        padding: 120px 50px 30px 50px;
    }

    footer .logo {
        width: 200px;
    }

    footer button {
        top: 80px;
    }

    footer .col-container {
        margin: 60px 0 20px 0;
    }

    footer .col:first-child {
        width: 25%;
        margin: 0;
        padding: 0;
    }

    .cta div {
        margin-top: 60px;
        font-size: 24px;
        min-width: 208px;
    }

    .services-nav ul,
    .communication-nav ul,
    .social-nav div {
        height: 156px;
        border-left: 2px solid white;
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .services-nav li,
    .communication-nav li {
        padding: 4px 10px;
        font-size: 14px;
    }

    .social-nav a {
        padding: 10px 15px;
        width: 40px;
    }

    .social-nav img {
        width: 24px;
    }

    footer .copy {
        margin: 16px 0 16px 16px;
    }

    footer .legal-nav {
        margin: 16px 16px 16px 0;
    }

    footer .legal-nav li {
        margin: 0 4px;
    }

    /* LANDING CLASS */
    .intro {
        height: 500px;
        padding: 60px 80px;
        display: block;
    }

    .intro .intro-titles {
        padding: 20px;
        margin: 0;
        padding: 0;
        width: 500px;
    }

    .intro .intro-titles h4 {
        font-weight: 400;
        font-size: 20px;
        margin: 0;
    }

    .intro .intro-image {
        display: block;
        padding: 0;
        margin: 0 auto;
    }
}

/* Medium-large devices(desktops, 992px and up) */
@media(min-width: 992px) and (max-width: 1199.98px) {
    .large-btn {
        padding: 11px 19px 11px 20px;
        border-radius: 4px;
    }

    button .arrow {
        width: 40px;
    }

    header {
        z-index: 10;
        width: 100vw;
        height: 96px;
        position: fixed;
        top: 0;
        background-color: white;
        padding: 26px 16px;
        transition: top 0.4s ease-in-out;
    }

    header .logo {
        margin: 24px 0 0 8px;
    }

    header nav ul a {
        margin: 0 8px;
    }

    header nav ul li:last-child a {
        margin-right: 0;
    }

    .footer-slogan img {
        width: 280px;
    }

    footer .footer-main {
        padding: 120px 50px 30px 50px;
    }

    footer .logo {
        width: 200px;
    }

    footer button {
        top: 80px;
    }

    footer .col:first-child {
        width: 25%;
        padding: 0;
    }

    .cta div {
        margin-top: 60px;
        font-size: 32px;
    }

    /* LANDING CLASS */
    .intro {
        height: 800px;
        display: block;
    }

    .intro .intro-titles {
        padding: 80px 100px 20px 100px;
        width: 800px;
        margin: 0;
    }

    .intro .intro-image {
        display: block;
        padding: 0;
        margin: 0 auto;
    }

}

/* Modulo Home */
div#covid span {
    font-size: 18px;
}

/* Modulo Codedmile */

/* Backgrounds images */
.bg-img-parallax {
    background-image: url("../images/parallax_square.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 419px;
}

.bg-square-r {
    background-image: url('../images/square-l.svg'), url('../images/square-r.svg');

    background-repeat: no-repeat;
    background-position-x: left, right;
    background-position-y: bottom, top;
}

.bg-square-l {
    background-image: url('../images/square-l.svg');
    background-repeat: no-repeat;
    background-position-x: left;
}

.bg-curve {
    background-image: url('../images/curve-line.svg');
    background-repeat: no-repeat;
    background-position-x: 218px;
    background-position-y: 256px;
}

.bg-curve-h {
    background-image: url('../images/curve-line-h.svg');
    background-repeat: no-repeat;
    background-position-x: 48%;
    background-position-y: 56%;
}

/* Font - Colors font */
.archivo-black {
    font-family: "Archivo Black", sans-serif;
}

.font-aqua-marine {
    color: var(--aqua-marine);
}

.font-gray {
    color: var(--silver-two);
}

.font-slate-grey {
    color: var(--slate-grey);
}

/* Colors background */
.bg-white {
    background-color: white;
}

.bg-green {
    background-color: var(--green_light);
}

.bg-gray {
    background-color: var(--pale-gray);
}

.bg-midnight {
    background-color: var(--midnight);
    color: var(--pale-gray);
}

/* Styles for buttons */
.btn-default {
    outline: none;
    margin: 0px auto;
    border-radius: 4px;
    transition: all 0.2s ease-in 0s;
    box-sizing: border-box;
    padding: 18px 32px;
    cursor: pointer;
    position: relative;
}

.btn-regular {
    background-color: rgb(70, 7, 130);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(70, 7, 130);
}

.btn-regular:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(70, 7, 130);
    border: 1px solid rgb(70, 7, 130);
}

/* Utilities */
.title-lg {
    font-size: 88px;
}

.circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: black;
    margin-left: -24px;
    margin-bottom: -32px;
}

.absolute {
    position: absolute;
}

.display-block {
    display: block;
}

.circle-data {
    width: 216px;
    height: 216px;
    border-radius: 50%;
    background-color: var(--pale-green);
    position: relative;
    border: 1px solid black;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-text-large {
    font-size: 80px;
}

.circle-text-small {
    font-size: 24px;
    color: #333;
}

.container-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.circle-1 {
    transform: translate(0, -60%);
}

.circle-3 {
    transform: translate(0, -40%);
}

.logo-white {
    display: none;
}

/* Estilos formulario registro */
.form-register {
    max-width: 420px;
    padding: 1rem;
}

.register * {
    font-family: 'Apercu', sans-serif;
}

.register .header h3 {
    font-size: 43px;
}

.register .header h5 {
    font-size: 18px;
}

.register .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--slate-grey);
    font-size: 14px;
}

.register .footer .link {
    font-size: 14px;
    color: var(--indigo);
    text-decoration: none;
}

.card * {
    font-family: 'Apercu', sans-serif;
    font-size: 14px;
}

.bg-soft-gray {
    background-color: #f9f9fa;
}

/* Estilo para el label flotante */
.form-floating label {
    font-weight: 100;
    padding: 0.5rem 1rem;
    font-size: .875rem;
    color: var(--slate-grey);
    font-family: 'Apercu', sans-serif;
}

.form-floating input:focus+label {
    color: black !important;
    font-family: 'Apercu bold', sans-serif;
    opacity: 1 !important;
    transform: translateY(-0.5rem) translateX(-0.5rem) !important;
    font-size: .688rem;
}

.form-floating input:not(:placeholder-shown)+label {
    color: black !important;
    opacity: 1 !important;
    transform: translateY(-0.5rem) translateX(-0.5rem) !important;
    font-size: .688rem;
    font-family: 'Apercu bold', sans-serif;
}

.form-floating .form-control {
    padding: 0.5rem 1rem;
    height: calc(2.2rem + 2px);
    font-size: 14px;
    border: 1px solid var(--silver-two);
    border-radius: 6px;
    color: var(--primary-disabled);
    font-family: 'Apercu', sans-serif;
}

.register .form-floating input:focus {
    border: solid 1px var(--primary);
    transition: all ease-out 0.2s;
    box-shadow: none;
}

.register .form-floating input:hover {
    background-color: var(--third);
    transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
    background-color: var(--primary);
    border: 2px solid var(--primary);
}

.form-check-input:hover {
    background-color: var(--secondary);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.form-check-input:focus {
    transition: all ease-out 0.2s;
    box-shadow: none;
}

.form-check-input {
    width: 0.8rem;
    height: 0.8rem;
}

/* Estilo para el checkbox */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkbox-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--silver-two);
    border-radius: 2px;
    margin-right: 12px;
    position: relative;
    background-color: inherit;
    transition: all .3s ease;
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
}

.custom-checkbox .checkbox-icon:hover {
    background-color: var(--secondary);
    border: 2px solid var(--primary);
}

.custom-checkbox input[type="checkbox"]:not(:checked)+.checkbox-icon img.icon-checked {
    display: none;
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-icon {
    background-color: var(--primary);
    border: 2px solid var(--primary);
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-icon:hover {
    background-color: var(--secondary) !important;
}

.custom-checkbox input[type="checkbox"]:checked+.checkbox-icon img.icon-checked {
    display: block;
    margin-top: 2px;
    margin-left: 0.094rem;
}

.form-check {
    padding-left: 1px;
}

/* Estilo para la ventana modal */
.modal-header {
    border-bottom: none;
}

.modal-body h5 {
    font-size: 18px;
    font-family: 'Apercu bold', sans-serif;
}

.modal-body p {
    font-size: 14px;
    font-family: 'Apercu', sans-serif;
    padding: 16px 64px;
    color: var(--slate-grey);
}

.modal-body p span {
    font-family: 'Apercu bold', sans-serif;
    color: var(--indigo);
}

.btn-close {
    font-size: 12px;
}

.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--indigo);
}

input:focus-within+*+button.btn-clear {
    display: block;
}

input:not(:focus):not(:placeholder-shown)+*+button.btn-clear {
    display: block;
}

.btn-clear {
    background-color: transparent;
    border: none;
    padding: 0;
    position: absolute;
    right: 0.3rem;
    top: 8px;
    display: none;
}

/* Estilo para validaciones */
.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: var(--silver-two);
    background: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:valid:focus {
    border-color: var(--silver-two);
    box-shadow: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: none;
}

.invalid-feedback {
    font-size: 11px;
    color: #dc3545;
    margin-top: -6px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 16px;
}

/* Estilo para imagenes */
.circles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.circle-one {
    width: 76px;
    height: 76px;
    margin: 10px -98px 35px 0px;
    background-color: var(--third);
    border-radius: 50%;
}

.circle-two {
    width: 47px;
    height: 47px;
    margin: 19px -40px 0 0;
    background-color: #bff7e7;
    border-radius: 50%;
}

.circle-three {
    width: 30px;
    height: 30px;
    margin: -79px 33px 18px 29px;
    background-color: #ecfcf8;
    border-radius: 50%;
}

.img-email {
    z-index: 2;
    height: 48px;
    rotate: 335deg;
    margin: 20px -86px 42px 43px;
}

.send-email {
    width: 30px;
    height: 24px;
    position: relative;
    margin: 4px -20px 12px -10px;
}

.send-email span {
    display: block;
    position: absolute;
    width: 100%;
    height: 0.094rem;
    background-color: var(--secondary);
}

.send-email span:nth-child(1) {
    top: 0;
}

.send-email span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.send-email span:nth-child(3) {
    bottom: 0;
}


/* Media queries */
@media(max-width: 512px) {
    .logo {
        display: none;
    }

    header .logo-white {
        display: block;
        margin: 35px 0 35px 28px;
    }
}

@media(max-width: 900px) {
    div#covid {
        flex-direction: column;
        font-size: 18px;
        margin: 20px !important;
    }

    div#covid span {
        font-size: 16px;
    }

    div#covid img {
        display: none;
    }

    div#covid #covid_button {
        width: 100% !important;
        margin-top: 20px;

    }

    .circle-1,
    .circle-3 {
        transform: translate(0, 0);
    }
}

@media(max-width: 900px) {
    .bg-curve {
        background-image: none;
    }

    .bg-green.pb-5.pt-1.bg-curve-h {
        background-image: none;
        position: relative;
        overflow: hidden;
    }

    .bg-green.pb-5.pt-1.bg-curve-h:before {
        background-image: url(../images/curve-line-h.svg);
        content: " ";
        position: absolute;
        width: 300%;
        height: 100%;
        left: -100%;
        top: 0px;
        transform: rotate(90deg);
        background-repeat: no-repeat;
        background-position: center;
    }
}