html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
a{
    text-decoration: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    margin: 0 auto;
    width: 100%;;
    max-width: 1024px;
}


/** Text styles **/
@font-face {
    font-family: Quando;
    src: url(Quando-Regular.ttf);
}
@font-face {
    font-family: "Open Sans";
    src: url(OpenSans-VariableFont.ttf);
}
html {
    font-family: "Open Sans";
    --color-1: #feb459;
    /*--color-2: #FF5757;*/
    --color-2: #ff7957;
}
h1 {
    background-color: var(--color-1);
    background-image: url(img/logo.png);
    background-repeat: no-repeat;
    background-position:  top center;
    color: white;
    font-size:1em;
    font-family: Quando;
    text-align: center;
    padding: 250px 25px 1em ;
    line-height: 1.3;
}
h1>em {
    display: block;
    font-size:2.5rem;
}
h2 {
    background-color: var(--color-2);
    color: white;
    font-size:2em;
    font-family: Quando;
    text-transform: uppercase;
    text-align: center;
    padding: .4em;
}
h3 {background-color: var(--color-1);
    color: white;
    text-align: center;
    padding: .2em 0 .7em;
    font-size:1.3em;
    font-family: Quando;
}
strong {
    font-weight: bold;
    color: var(--color-2);
}
.subtitle {
    display: block;
    font-style: italic;
    text-align: center !important;
}

/** blocks **/
/*body>section+section::before {
    content:"";
    display: block;
    width: 100%;
    height: 15px;
    background: linear-gradient(180deg,var(--color-1) 0%, white 80%);
}*/
body>section+section {
    margin-top: 1em;
}
.blocks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 10px;
    margin: 10px 0;
}
.blocks>div {
    position: relative;
    background-color: var(--color-1);
    color: white;
    padding: 15px 8px 35px;
    border-top-right-radius: 15px;
}
@media screen and (min-width: 450px) {
    .blocks {
        flex-direction: row;
    }
    .blocks>div {
        width: 250px;
        }
}
.blocks>div h4 {
    font-family: Quando;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 2em;
}
.blocks>div li {
    list-style-type: disc;
    margin-left:2em;
    margin-bottom:.3em;
}
.blocks>div em {
    display: block;
    text-align: center;
    font-style: italic;
    line-height: 1.2;
    font-size: 1.1em;
}
.blocks>div::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(180deg,var(--color-1) 0%, white 100%);
}
/** Sections styles **/
.infos {
    display: block;;
    background-color: var(--color-1);
    color: white;
    padding: 15px 40px;
    text-align: center;
}
.infos p {
    text-align: left;
    line-height: 1.3;
}
.infos.basic {
    background-color:  var(--color-1);
}

.wide {
    width:100%;
    position: relative;
    border: 5px solid var(--color-1);
    border-left: 0;
    border-right: 0;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wide::after {
    content: "";
    background: var(--color-1) no-repeat url(img/logo.png);
    background-size: contain;
    display: block;
    width: 8vw;
    height: 8vw;
    max-width: 120px;
    max-height: 120px;
    min-width: 70px;
    min-height: 70px;
    border-bottom-right-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.wide>img {
    width: 100%;
    min-width: 800px;
}

/** Buttons **/

a.button {
    display: inline-block;
    margin: 15px auto;
    padding: 10px 25px;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid white;
    background-color: var(--color-2);
    transition: all .2s;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: Quando;
}
a.button:hover {
    background-color: var(--color-1); 
}