@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
:root {
    --color-violet: #902B82;
    --color-orange: #ED6B06;
    --color-orange-light: #FAB600;
    --color-blue-dark: #213A8F;
    --color-blue-green: #51BCB8;
    --color-blue: #0090DF;
    --color-blue-light: #6AC7F4;
    --color-white: #FFF;
    --color-grey-dark: #21272A;
}
html {
    font-size: 16px;
}
body {
  font-size: 1rem; 
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--color-grey-dark);
}
h1, h2, h3,h4,
.h1, .h2, .h3 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h1, .h1  {
    font-size: 3rem;
    text-transform: uppercase;
}
h2, .h2  {
    font-size: 2.5rem;
    text-transform: uppercase;
}
h3, .h3  {
    font-size: 1.75rem;
}
h4, .h4  {
    font-size: 1.25rem;
}
p.contact {
    padding-left: 40px;
    background: url('../images/picto-mail.svg') no-repeat left top;
}
p.adresse {
    padding-left: 40px;
    background: url('../images/picto-adresse.svg') no-repeat left top;
}
.btn {
    background-color: #902b82;
    border-color: #902b82;
    color: #fff;
    font-family: Ubuntu, sans-serif;
    font-weight: 700;
    padding: .25rem .25rem .25rem 1.25rem;
    border-radius: 2rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    z-index: 1;
}
.btn-secondary {
    background-color: #0090df;
    border-color: #0090df;
}
.block-webform .webform-button--submit:after, .btn:after {
    height: 2rem;
    aspect-ratio: 1 / 1;
    display: block;
    content: "";
    background-color: #fff;
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}