/*@import url('fonts/stylesheet.css');*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
:root {
    --color-base: 75;
    --color-green: hsla(var(--color-base), 55%, 52%, 1);
    --color-lightgreen: hsla(calc(var(--color-base) + 2), 61%, 92%);
    --color-main: hsla(0, 0%, 17%, 1);
    --color-bcgr: hsla(0, 0%, 95%, 1);
    --color-orange: hsla(calc(var(--color-base) - 61), 100%, 50%, 1);
    --font-proxinanova: 'Proxima Nova Cn Rg';
    --font-montserrat: 'Montserrat';
}
*, ::after, ::before {
    box-sizing: border-box;
}
/* Mixed styles */
h1, h2 {
    font-weight: 600;
}
.d-block {
    display: block!important;
}
.flex-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row!important;
    flex-direction: row!important;
}
.flex-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}
.text-center {
    text-align: center!important;
}
.bcgr_orange {
    background-color: var(--color-orange)!important;
}
.bcgr_lightgreen {
    background-color: var(--color-lightgreen)!important;
}
.color_green {
    color: var(--color-green)!important;
}
.semibold {
    font-weight: 600!important;
}
/* Grid */
body, html {
    width:100%;
    height:100%;
    min-height:100vh;
    margin:0;
    padding:0;
}
body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: var(--font-montserrat), -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-main);
    text-align: left;
    background-color: #fff;
}
.wrapper {
    width: 100%;;
    max-width:1920px;
    margin:0 auto;
    padding:0 40px;
    display: -ms-flexbox;
    display: flex;  
    -ms-flex-direction: row;
    flex-direction: row;  
}
/* Header */
body > header {
    background-color:#FFFFFF;
}
body > header > .wrapper {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height:73px;
}
.brand {
    display:inline-block;
    text-indent: -10000px;
    background:url(img/brand_upr.svg) center center no-repeat;
    width: 200px;
    height: 40px;
    background-size: contain;
}
body > header > .wrapper > [role=gridcell] {
    display: -ms-flexbox;
    display: flex; 
}
.tel {
    color:var(--color-orange);
    font-weight: 600;
    text-decoration:none;
}
.account {
    margin-left: 40px;
}
/* Main */
body > main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-direction: column!important;
    flex-direction: column!important;     
    background-color: var(--color-bcgr);
}
body > main > section.wrapper figure {
    margin:0;
    padding:40px;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
body > main > section.wrapper figure:nth-of-type(1) {
    margin-top:-60px;
}
body > main > section.wrapper figure:nth-of-type(2) {
    margin-top:8px;
    max-width: 372px;
}
body > main > section.wrapper figure:nth-of-type(1) > figcaption {
    max-width: 372px;
    margin-left: 40px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.number {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
}
body > main > section.wrapper {
    -ms-flex-pack: center!important;
    justify-content: center!important;   
}
body > main > section.wrapper picture {
    display: block;
}
body > main > section.wrapper picture > img {
    max-width:100%;
}
body > main > section.wrapper picture.text-center > img {
    margin-bottom: 20px;
}
h1 {
    background-color: var(--color-green);
    margin:0;
    padding-bottom: 115px;
    padding-top:95px;
}
h1 > span {
    display: block;
    margin:0 auto;
    margin-left: calc(50% - 568px);
    max-width:780px;
    font-size:42px;
    font-weight:600;
    line-height: 1.35;
}
h1 ins {
    display: block;
    color:#FFFFFF;   
    text-decoration:none; 
}
ul.list_custom {
    list-style-type: none;
    margin:0;    
    padding:0;
}
ul.list_custom > li {
    position: relative;
    padding:0 0 .5rem 2rem;
}
ul.list_custom > li::before {
    content:"✓";
    position: absolute;
    top:9;
    left:0;
}
a[role=button],
button[role=button] {
    display: inline-block;
    border: 0 none;
    border-radius: .25rem;
    background-color: var(--color-green);
    color: #FFFFFF;
    font-size:14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 47px;
    font-weight: 600;
    text-decoration:none;
    transition:opacity .5s;
    padding-left:.55rem;
    padding-right: .75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
a[role=button]:hover,
button[role=button]:hover {
    opacity: .8;
}
a[disabled],
button[disabled] {
    opacity:.5;
}
.download::before {
    content:"";
    display: inline-block;
    width:20px;
    height:20px;
    background: url(img/download.svg) 0 0 no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right:.35rem;
}
/* Footer */
body > footer > .wrapper {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    min-height: 155px;
    font-size:12px;
}
body > footer > .wrapper p:not(:first-of-type) {
    margin: 5px 0;
}
body > footer a {
    text-decoration:none;
    color:var(--color-main);
    white-space: nowrap;
}
body > footer a:hover {
    text-decoration:underline;
    color:var(--color-main);
}
.brand_action {
    display:inline-block;
    text-indent: -10000px;
    background:url(img/brand_action.svg) 0 0 no-repeat;
    width: 192px;
    height: 26px;
    background-size: contain;
}
/* Responsive @media (max-width: 575.98px) { */
@media (max-width: 1239.98px) {
    .wrapper {
        padding: 0 15px;
    }
    body > header > .wrapper {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    body > header > .wrapper > [role=gridcell] {
        -ms-flex-pack: justify;
        justify-content: space-between;
        width:100%;
    }
    body > main > section.wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    h1 > span {
        text-align: center;
        margin-left: auto;
    }
    body > main > section.wrapper figure {

    }
    body > main > section.wrapper figure:nth-of-type(2) {
        margin-top: 0px;
        max-width: inherit;
        width: 100%;
        text-align: center;
    }
    .number {
        width:100%;
    }
    body > main > section.wrapper picture > img {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .wrapper {
        padding: 0 15px;
    }
    body > header > .wrapper {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    body > header > .wrapper > [role=gridcell] {
        -ms-flex-pack: justify;
        justify-content: space-between;
        width:100%;
        margin-top: 10px;
    }
    .brand {
        width: 100%;
        margin-bottom: 10px;
    }
    body > main > section.wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    h1 {
        font-size: 28px;
        line-height: 34px;
        padding-top: 10px;
        padding-bottom: 55px;
    }
    h1 > span {
        font-size: 28px;
        line-height: 34px;
    }
    body > main > section.wrapper figure {
        text-align: center;
        padding: 20px 0;
    }
    body > main > section.wrapper figure:nth-of-type(1) > figcaption {
        max-width: inherit;
        margin-left: 0px;
    }
    body > main > section.wrapper figure:nth-of-type(2) {
        padding: 20px 15px;
        position: relative;
        left: -15px;
        width: 100vw;
    }
    
    .number {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    body > main > section.wrapper picture > img {
        max-width: 100%;
    }
    body > main > section.wrapper picture.text-center > img {
        margin: auto;
    }
    ul.list_custom > li::before {
        position: static;
        margin-right:10px;
    }
}
