html {
    scroll-behavior: smooth;
}
body{
    background: white;
    & .logo-dark{
        display: none;
    }
    & .logo-light{
        display: block;
    }
    & .text-theme{
        color: #153B4F;
    }
    & .black-white{
        color: black;
    }
    & .dp-blue-white{
        color: #00263A;
    }
    & .bg-dp-blue-white{
        background: white;
    }
}
body.dark-mode{
    background: #011F2F;
    & .logo-dark{
        display: block;
    }
    & .logo-light{
        display: none;
    }
    & .text-theme{
        color: #E0F4FF;
    }
    & .black-white{
        color: white;
    }
    & .dp-blue-white{
        color: white;
    }
    & .bg-dp-blue-white{
        background: #011F2F;
    }
}
@media (max-width: 768px) {
    /*BUTTONS*/
    .btn-primary{
        border: none;
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        background: linear-gradient(90deg, #00D700 0%, #00DFFF 100%);
        & a {
            text-decoration: none;
        }
    }
    .btn-secondary{
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        border: 1px solid #00D700;
        background: #00263A;
        & a {
            text-decoration: none;
        }
    }
    .btn-tertiary{
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        background: #00263A;
        & a {
            text-decoration: none;
        }
    }
    .btn-white{
        cursor: pointer;
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 25px;
        background: #FFF;
        & a {
            text-decoration: none;
        }
    }
    .title-principal{
        /* h1 */
        font-family: "Work Sans";
        font-size: 40px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }
    .title-principal-color{
        font-family: "Work Sans";
        font-size: 45px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        background: linear-gradient(90deg, #00D700 0%, #00DFFF 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .title-secondary{
        /* h2 */
        font-family: "Work Sans";
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .text-main{
        /* p */
        font-family: "Work Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .text-buttons{
        /* buttons */
        font-family: "Work Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .text-disclaimer{
        /*small*/
        font-family: "Work Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }
}
@media (min-width: 768px) {
    /*BUTTONS*/
    .btn-primary{
        border: none;
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        background: linear-gradient(90deg, #00D700 0%, #00DFFF 100%);
        & a {
            text-decoration: none;
        }
    }
    .btn-secondary{
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        border: 1px solid #00D700;
        background: #00263A;
        & a {
            text-decoration: none;
        }
    }
    .btn-tertiary{
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        background: #00263A;
        & a {
            text-decoration: none;
        }
    }
    .btn-white{
        cursor: pointer;
        display: inline-flex;
        padding: 10px 25px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 25px;
        background: #FFF;
        & a {
            text-decoration: none;
        }
    }
    .title-principal{
        /* h1 */
        font-family: "Work Sans";
        font-size: 60px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }
    .title-principal-color{
        font-family: "Work Sans";
        font-size: 70px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        background: linear-gradient(90deg, #00D700 0%, #00DFFF 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .title-secondary{
        /* h2 */
        font-family: "Work Sans";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .text-main{
        /* p */
        font-family: "Work Sans";
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .text-buttons{
        /* buttons */
        font-family: "Work Sans";
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .text-disclaimer{
        /*small*/
        font-family: "Work Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }
}
.absolute{
    position: absolute;
}
.relative {
    position: relative;
}
.color-green {
    color: #00D700;
}
.color-deep-blue{
    color: #00263A;
}
.color-white{
    color: #FFFFFF;
}
.color-light-sky{
    color: #B7F6FF;
}
.color-light-green{
    color: #C9FFC9
}
.color-sky-blue{
    color: #00DFFF;
}
.color-dblue{
    color: #153B4F;
}

.decoration-none{
    text-decoration: none;
}

.bg-dark{
    background: linear-gradient(180deg, #00263A 0%, #153B4F 100%);
}
.bg-linear-primary{
    background: linear-gradient(63deg, #00263A -23.62%, #0069A0 113.2%);
}
.bg-linear-secondary{
    background: linear-gradient(63deg, #00D700 -23.62%, #00DFFF 113.2%);
}
.w-full{
    width: 100%;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.justify-evenly{
    justify-content: space-evenly;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.text-center{
    text-align: center;
}
.flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
.flex-row{
    flex-direction: row;
}
.cursor-pointer{
    cursor: pointer;
}


.template-homepage{
    width: fit-content;
    max-width: 1600px;
    margin: 0 auto;
}

