html {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    font-size: 1.125em;
    color: #444;
}

body {
    max-width:1440px;
    min-height:100vh;
    margin: 0 auto;
}

/* Content */

.content img {
    align-self: center;
    border-radius: 2px;
}

img {
    vertical-align: bottom;
}

.img-caption {
    margin-top: -30px;
    /*background: rgba(0,0,0,0.5);*/
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    color: white;
    height: 30px;
    position: relative;
    padding: 0 5px;
}

.content iframe {
    border-radius: 2px;
    vertical-align: bottom;
}

section {
    padding: 0 30px;
    /*display: inline-block;*/
    width: 100%;
    box-sizing: border-box;
    vertical-align: top;
}

section h2 {
    margin: 0;
}

.content section {
    padding: 15px 30px;
}

.heading {
    padding: 0;
}

.subheading {
    line-height: 2;
}

.subheading h2 {
    /*margin-bottom: 0.5em;*/
}

.subheading {
    /*padding: 0 30px;*/
    margin: 0;
}

.content hr {
    display: none;
}

h3, h4 {
    color: #313131;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.2;
}

h3 {
    padding: 30px 30px 0 30px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

section h3 {
    padding: 30px 0 0 0;
}

/* Lists */

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    position: relative;
    padding-left: 30px;
}

.content ul li::before {
    margin: 0 .5em 0 .5em;
    font-weight: bold;
    /*color: gray;*/
    
    position: absolute;
    left: 0;
    pointer-events: none;
    
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    
    border-right: 4px solid #444;
    border-bottom: 4px solid #444;
    content: "";
    width: 4px;
    height: 9px;
    top: 10px;
}

/* Boxes */

.col-box {
    display: grid;
    grid-template-rows: min-content 1fr;
}

.content .col-box h3, .content .col-box h4 {
    background: #009865;
    color: white;
    font-weight: lighter;
    font-size: 1.125em;
    padding: 0 15px;
    margin-bottom: 0;
    line-height: 2;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    margin-top: 0;
}

.content .col-box ul {
    background: #efefef;
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.content .col-box > img {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    object-fit: cover;
    height: 100%;
}

.content .col-box ul, .content .col-box > img {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* Responsive Iframe with aspect ratio */

.aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 30%;
}

.aspect-ratio iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  border: 0;
}

/* Form alert */

alert {
    /*padding: 7px 11px;*/
    padding: 25px;
    font-size: 1.2em;
    margin: 15px 0;
    display: block;
    background: #009865;
    color: white;
    border-radius: 2px;
    line-height: normal;
    text-align: center;
    
    background: rgb(34,193,195);
    background: radial-gradient(circle, rgba(34,193,195,1) 0%, rgba(0,152,101,1) 100%);
}

/* Avatar */

.content .avatar {
    width: 100%;
    max-width: 200px;
    margin: 30px 0;
    border-radius: 50%;
    border: 10px solid #efefef;
    box-sizing: border-box;
}

/* Hero */

.hero {
    overflow: hidden;
}

.hero a {
    transition: none;
    font-weight: lighter;
}

.hero svg {
    overflow: visible;
    vertical-align: bottom;
}

.hero svg .title {
    /*fill: rgb(128, 128, 128);*/
    fill: rgb(32, 32, 32);
    font-weight: bold;
}

/* Button */

.button {
    border: 1px solid #14855e;
    padding: .4rem 1rem;
    font-size: 1.1rem;
    border-radius: 2px;
    color: #14855e;
    background: white;
    text-align: center;
    font-family: inherit;
    font-weight: normal;
    line-height: normal;
}

.button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-primary {
    background: #14855e;
    color: white;
    /*font-weight: bold;*/
    font-weight: lighter;
}

.button-primary:hover {
    color: white;
}

.content .button-promo {
    display: table-cell;
    vertical-align: middle;
    box-sizing: border-box;
}

/* General content */

img {
    max-width: 100%;
    max-height: 100%;
}

h1 {
    font-size: 64px;
    margin: 0px;
}

h2 {
    color: #313131;
    /*font-weight: lighter;*/
    /*color: #808080;*/
    font-size: 1.5em;
    /*font-weight: 700;*/
    /*letter-spacing: .06em;*/
    line-height: 1.2;
    /* text-align: center; */
}

/* Start */

#switch {
    text-align: center;
    /*padding-bottom: 30px;*/
    margin: 0 30px;
    clear: both;
    display: none;
}

.content-border-bottom + footer {
    border-top: none;
    margin-top: 0;
}

.content-border-bottom  {
    border-bottom: 1px solid #efefef;
}

#trailer {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    float: left;
}

#sprayer {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    float: right;
    border-left: 1px solid #efefef;
}

/* Overlay front page */

#trailer .overlay, #sprayer .overlay {
    bottom: 0;
    width: 0;
    height: 100%;
}

#trailer .overlay {
  left: 100%;
  right: 0;
}

#sprayer .overlay {
  left: 0;
  right: 100%;
}

#trailer:hover .overlay {
  width: 100%;
  left: 0;
  opacity: 1;
}

#sprayer:hover .overlay {
  width: 100%;
  right: 0;
  opacity: 1;
}

/* Thumbnails */

.thumb {
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.thumb img {
    max-height: 320px;
    max-width: 480px;
    width: 100%;
    /*vertical-align:middle;*/
    vertical-align: bottom;
}

.thumb-inactive {
    opacity: 0.2;
}

/* Table */

.content table {
    border: 2px solid #313131;
    width: 100%;
    /*margin-top:1em;*/
    box-sizing: border-box;
    border-radius: 2px;
    border-spacing: 0;
}

.content th, .content td {
    padding: 6px;
    text-align: center;
}

.content th {
    /*background: #eee;*/
}

.t-center {
    text-align: center;
}

/*
.content table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #eee;
}
*/

.content table tbody tr:nth-child(odd) > td, .content table tbody tr:nth-child(odd) > th {
    background: #efefef;
    /*background: #f7f5e7;*/
}

/* Figure */

.content .fig {
    margin-top: 1em;
    display: flex;
    justify-content: space-between;
}

.content figure {
    margin: 0;
}

.content .fig figure img {
    border-radius: 0;
}

.content .fig figure:first-child img {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.content .fig figure:last-child img {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.content figcaption {
    text-align: center;
    font-style: italic;
    font-size: 0.8em;
}

h3 svg, h4 svg {
    vertical-align:bottom;
} 

svg text {
    fill: rgb(255, 255, 255);
}

/* Lightbox */

.gal preview {
    display: none;
}

.gal lightbox [data-lb-target] {
    display: none;
}

/* Grid etc. */

.col-grow {
    flex-grow: 1;
}

.show-large, .show-medium {
    display: none;
}

/* vertical line in background */

.no-vspace {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.no-hspace {
    margin-left: 0;
    margin-right: 0;
}

/* Mobile Menu */

.menustate {
    display:none;
}

.burger {
    display: none;
}

/* French Flag */

.flag-fr {
    background: #fff;
    position: relative;
}

.flag-fr:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    background: #171796;
    width: 33.33%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.flag-fr:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background: #ED2E38;
    width: 33.33%;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Fancy Text */

.fancy {
  position: relative;
  white-space: nowrap;
}

.fancy.gray:after {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%23444444' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.fancy:after {
  --deco-height: 0.3125em;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--deco-height) * -0.625);
  height: var(--deco-height);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2314855E' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: auto 100%;
  background-repeat: round;
  background-position: 0em;
}
