/* css reset */
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; */
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* end css reset */




:root {
  --color-primary: #78B446;
  --color-secondary: #F1DF5F;
  --color-black: rgb(18, 18, 18);
  --color-white: rgba(255, 255, 255, 0.75);
  --color-text: rgb(18, 18, 18);
  --color-background: rgba(255, 255, 255, 0.75);
}




* {
  position: relative;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
}

a, a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* margin-bottom: 1em; */
  font-weight: bold;
  color: var(--color-secondary);
}

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  /* margin-top: 2em; */
}

h1 {
    font-size: 1.75em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1em;
}
h5 {
    font-size: 0.875em;
}
h6 {
    font-size: 0.75em;
}

p + p {
  /* margin-top: 1em; */
}

* + ul {
  /* margin-top: 1em; */
}
ul {
  /* padding-left: 1.5em; */
}
ul li {
  /* padding-left: 0.5em; */
}







[data-custom_view="container"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;

  padding: 15px;
}

[data-custom_view="container"] > * {
  width: 100%;
}

[data-custom_view="container"] img {
  user-select: none;
  pointer-events: none;
}

@media screen and (min-width: 801px) {
  [data-custom_view="banner"] {
    flex: 10;
  }

  [data-custom_view="footer"] {
    flex: 2;
  }
}

@media screen and (max-width: 800px) {
  [data-custom_view="banner"] {
    flex: 9;
    overflow: hidden;
  }

  [data-custom_view="footer"] {
    flex: 3;
  }
}




[data-custom_view="banner"] {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;
  max-width: 800px;

  margin: 0 auto;
}

[data-custom_view="banner-text"],
[data-custom_view="banner-image"] {
  position: absolute;
}

[data-custom_view="banner-text"] {}

[data-custom_view="banner-text-image"] {
  max-width: 100%;
  max-height: 100%;
}

[data-custom_view="banner-text-buttons"] {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

[data-custom_view="banner-text-buttons"] a {
  overflow: hidden;
  display: block;
  border: solid 2px rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  transition: all 200ms;
}

[data-custom_view="banner-text-buttons"] a:hover {
  border-color: var(--color-primary);
}

[data-custom_view="banner-text-buttons"] a img {
  display: block;
  width: 140px;
  height: auto;
}

[data-custom_view="banner-text-buttons"] a + a {
  margin-left: 10px;
}

[data-custom_view="banner-image-image"] {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 801px) {
  [data-custom_view="banner-text"] {
    left: 0;
    width: 60%;
  }
  
  [data-custom_view="banner-image"] {
    right: 0;
    height: 90%;
  }
}

@media screen and (max-width: 800px) {
  [data-custom_view="banner-text"] {
    width: 100%;
  }
  
  [data-custom_view="banner-image"] {
    height: 100%;
    opacity: 0.5;
  }
}




/* FX : animation : float; */

.fx-animation-float {
	-webkit-animation: fx_animation_float 5s ease-in-out infinite alternate;
	animation: fx_animation_float 5s ease-in-out infinite alternate;
}

@-webkit-keyframes fx_animation_float {
	from {-webkit-transform: translateY(-5%) rotate(15deg);}
	to {-webkit-transform: translateY(5%) rotate(18deg);}
}
@keyframes fx_animation_float {
	from {transform: translateY(-5%) rotate(15deg);}
	to {transform: translateY(5%) rotate(18deg);}
}




[data-custom_view="footer"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

[data-custom_view="footer-items"] {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 801px) {
  [data-custom_view="footer"] {
    flex-direction: column;
  }

  [data-custom_view="footer-items"] + [data-custom_view="footer-items"] {
    margin-top: 20px;
  }

  [data-custom_view="footer-items"] {
    flex-direction: row;
    text-align: center;
  }
  [data-custom_view="footer-items"] > * + * {
    margin-left: 20px;
  }
}

@media screen and (max-width: 800px) {
  [data-custom_view="footer"] {
    flex-direction: column-reverse;
  }

  [data-custom_view="footer-items"] + [data-custom_view="footer-items"] {
    margin-bottom: 20px;
  }

  [data-custom_view="footer-items"] {
    flex-direction: column;
  }
  [data-custom_view="footer-items"] > * + * {
    margin-top: 5px;
  }
}