/*MEDIA
1344px--767px--640px--480px
*/
@import url("fonts/roboto/roboto.css");
/*css variables*/
:root {
    /*font and size*/
    --font-think: 300;
    --font-normal: 400;
    --font-bold: 700;
    --fs-32: clamp(1.75em, 2vw, 2em);
    --fs-28: clamp(1.5em, 2vw, 1.75em);
    --fs-24: clamp(1.25em, 2vw, 1.5em);
    --fs-22: clamp(1.1875em, 2vw, 1.375em);
    --fs-20: clamp(1.0625em, 2vw, 1.25em);
    --fs-18: clamp(1em, 2vw, 1.125em);
    --fs-17: 1.0625em;
    --fs-16: 1em;
    --fs-15: 0.9375em;
    --fs-14: 0.875em;
    --fs-13: 0.8125em;
    --fs-12: 0.75em;

    --fs-28-line-height: 1.58;
    --fs-24-line-height: 1.42;
    --fs-22-line-height: 1.45;
    --fs-20-line-height: 1.5;
    --fs-18-line-height: 1.56;
    --fs-16-line-height: 1.62;
    --fs-15-line-height: 1.6;
    --fs-14-line-height: 1.57;
    --fs-13-line-height: 1.54;
    --fs-12-line-height: 1.5;

    /*round*/
    --round-50: 50px;
    --round-16: 16px;
    --round-12: 12px;
    --round-8: 8px;
    --round-6: 6px;
    --round-4: 4px;
    --round-3: 3px;
    --round-2: 2px;
    --round-1: 1px;

    /*H1-H6*/
    --h1-desktop: 2.75rem;
    --h1-mobile: 2rem;
    --h1-line-height: 1.36;
    --h2-desktop: 2.125rem;
    --h2-mobile: 1.75rem;
    --h2-mobile: 1.25rem;
    --h2-line-height: 1.29;
    --h3-desktop: 1.75rem;
    --h3-mobile: 1.5rem; 
    --h3-mobile: 1.125rem;
    --h3-line-height: 1.36;
    --h4-desktop: 1.5rem;
    --h4-mobile: 1.25rem; 
    --h4-mobile: 1rem;
    --h4-line-height: 1.42;
    --h5-desktop: 1.25rem;
    --h5-mobile: 1.125rem; 
    --h5-mobile: 1rem;
    --h5-line-height: 1.5;

    
}

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering:optimizeLegibility;
    font-size: var(--fs-base);
}

body { 
	font-family: var(--font-family);
    font-size: var(--fs-base);
    font-weight: var(--font-normal);
    color: var(--color-text-default);
}
/*Reset*/
.form-control { font-size: 1em;}

img { border: none; }
a { color: var(--color-link);}

.maxwidth { max-width: var(--maxwidth); margin: 0 auto; padding: 0 var(--maxwidth-gap);  }

/*Buttons*/
a.button {text-decoration: none;}
.button {
    padding-top: 0.375em;
    padding-bottom: 0.375em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid var(--dark);
    border-radius: 7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: var(--white);
    transition: 
        color .15s ease-in-out,
        background-color .15s ease-in-out,
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out;
}
/*Button primary*/
.button.button-primary {
    color: var(--white);
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.button.button-primary:hover {
    color: var(--white);
    background-color: #0b5ed7;
    border-color: #0a58ca
}
.button.button-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}
.button.button-outline-primary:hover {
    color: var(--white);
    background-color: #0d6efd;
    border-color: #0d6efd;
}


/* positions */
.pos-absolute { position: absolute; }
.pos-relative { position: relative;}
.pos-fixed { position: fixed; }
.pos-sticky { position: sticky; }

/*flex*/
.flex-row { display: flex; flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-column { display: flex; flex-direction: column; }
.align-items-center { align-items: center; }
.align-self-center { align-self: center; }
.flex-space-between { justify-content: space-between; }

/**/