@import "variables.css";

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: 22px;
  font-family: "Montserrat", sans-serif;
}
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;
}
.display-flex {
  display: flex;
}

.flex-33 {
  flex: 33.333333%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.navigation {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

#main {
  padding-top: 60px;
  padding-bottom: 60px;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-links);
}

h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-links);
}

h3 {
  font-size: 18.72px;
}

h4 {
  font-size: 16px;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.flex-50 {
  flex: 50%;
}

.flex-100 {
  flex: 100%;
}

.font-bold {
  font-weight: 500;
}

.font-italic {
  font-style: italic;
}

img,
video {
  width: 100%;
}

.subtitle-element-principal b {
  font-weight: 800;
}

h2.subtitle-element-principal {
  font-size: 2.5rem;
}

.m-l-10 {
  margin-left: 10rem;
}

.font-two-rem {
  font-size: 1.5rem;
  margin-right: 5px;
}

.ms-3-75 {
  margin-left: 3.75rem;
}

@media screen and (max-width: 500px) {
  .ms-3-75 {
    margin-left: 2.05rem;
  }
}

.paragraph-element b {
  font-size: 2.5rem;
  font-weight: 800;
}

.avis-container {
  text-align: center;
  margin-bottom: 20px;
}
.avis-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-links);
}

.text-avis-container {
  margin: 0 0 0 10px;
}

.avis-container svg {
  width: 30px;
  fill: var(--color-links);
}

i {
  font-style: italic;
}

.alert-element {
  color: #f44336;
  font-weight: bold;
}

.logo-homepage {
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  position: absolute;
  flex-direction: column;
}

.diplome-9,
.diplome-10 {
  border: 1px solid var(--color-links);
  background-color: #fff;
}

.ms-1 {
  margin-left: 0.75rem;
}

.align-items-center {
  align-items: center;
}

.btn {
  padding: 15px;
  border: none;
  border-radius: 7px;
  font-size: 16px;
  margin: 10px 0px;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  background-color: var(--color-links);
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.button-primary:hover {
  background-color: var(--color-links-hover);
}

button a {
  color: #fff;
  text-decoration: none;
}

.modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.modal .modal-elements {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 80%;
  transform: translateX(-50%);
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
}

.modal .modal-elements .title-element {
  text-align: center;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  cursor: pointer;
  transition: box-shadow 0.1s ease-in-out;
}

.modal-close svg {
  fill: var(--color-links);
}

.modal-close:hover {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.links {
  color: var(--color-links);
  transition: color 0.2s ease-in-out;
}

.links:hover {
  color: var(--color-links-hover);
}

.tild {
  font-family: auto;
  font-size: 5rem;
  position: absolute;
  bottom: -20px;
  color: var(--color-links);
}

.position-relative {
  position: relative;
}

#headband-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  width: 100%;
  background-color: var(--color-links);
  z-index: 9999;
}

.font-weight {
  font-weight: bold !important;
}

#headband-bottom p {
  color: #fff;
  margin-bottom: 0 !important;
  font-size: 1.2rem;
}

#headband-bottom a {
  color: #fff;
  font-weight: bold;
}

.logo-title {
  font-family: STIX Two Math;
  color: var(--color-links);
}

.information {
  color: var(--color-links);
  font-size: 1.2rem;
}

.information-deplacement {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  font-style: italic;
}

@media screen and (max-width: 900px) {
  .subtitle-element-principal b {
    line-height: normal;
  }
  .logo-homepage {
    position: initial;
    transform: none;
  }
  .m-l-10 {
    margin-left: initial;
    line-height: initial;
  }
}

@media screen and (max-width: 760px) {
  #headband-bottom {
    width: calc(100% - 40px);
  }
  #main {
    overflow-x: hidden;
  }
}

@media screen and (max-width: 500px) {
  h2.subtitle-element-principal {
    font-size: 1.5rem;
  }
  .paragraph-element b,
  .mail-home {
    font-size: 1.5rem !important;
  }
  .btn {
    width: 100%;
  }
  .banner-price {
    justify-content: center;
  }
}