﻿:root {
    --color-primary: #1e00a7;
    --color-secondary: #ff8b00;
    --color-text: #292929;
    --color-text-secondary: #c0c0ff;
    --color-accent: #ff8b00;
    --color-success: #62bb4e;
    --color-warning: #be2c2c;
    --background-color: #fff;
    --background-color-secondary: #dfdfff;
    --separator-color: #4444;
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Redond", sans-serif;
    /******************* FONT SIZE ******************/

    --size-biggest: 59px;
    --size-bigger: 50px;
    --size-big: 37px;
    --size-medium: 27px;
    --size-small: 20px;
    --size-smaller: 16px;
    --size-smallest: 13px;
    /****************** FONT WEIGHT *****************/

    --weight-light: 400;
    --weight-strong: 700;
    --weight-stronger: 900;
}
/**********************************************HEADER*/


.header__container {
    background-image: linear-gradient(-60deg, #0041ff 0%, #1e00a7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

/*@media (min-width: 540px) {
    .header-logo-wrapper img {
        height: 60px;
    }
}

.header-mobile-wrapper{
    max-width:1440px;
}
*/
/**********************************************FOOTER*/
footer {
    padding: 30px 20px !important;
    height: auto;
    background: var(--color-primary);
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.footer__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /*width: 1600px;*/
    padding:0;
}

.company__logo img {
    width: 202px;
    height: auto;
    max-width: none;
}

.legal__container {
    flex-grow: 1;
    justify-content: flex-start;
    padding-left: 40px;
}

@media (min-width:1050px){
    .footer__container{
        flex-direction: row;
    }
}