/**
 * @file
 * Ckeditor styles
 * Use Globaly
 */


/**
 * Font Size
 */

.heading-size-xs {
  font-size: var(--heading-size-xs);
}
.heading-size-s {
  font-size: var(--heading-size-s);
}
.heading-size-m {
  font-size: var(--heading-size-m);
}
.heading-size-l {
  font-size: clamp(28px, 4vw, 48px);
  line-height: normal;
}
.size-content {
  font-size: clamp(15px, 1.5vw, 18px);
}
.size--23 {
  font-size: clamp(17px, 2vw, 23px);
}
.size--15 {
  font-size: clamp(13px, 1.2vw, 15px);
}
.size--40 {
  font-size: clamp(24px, 3.5vw, 40px);
}

/**
 * SPAN Tailles font
 */

span.font--content {
  font-size: clamp(15px, 1.5vw, 18px);
}

/**
 * H1 Hero
 */
h1.hero-title {
  color: var(--color-primary--1);
  font-family: var(--font-archivo);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  margin: 0;
}
p.hero-subtitle {
  color: var(--color-neutral--1);
  font-family: Birthstone;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
}

span.font-heading {
  color: var(--color-primary--1);
  font-family: var(--font-poppins);
  font-size: clamp(22px, 3vw, 38px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

/**
 * SPAN Styles
 */

span.underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--color-primary--2);
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

span.font-lexend {
  font-family: var(--font-poppins);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

span.font-bstone {
  font-family: var(--font-bstone);
}


/**
 * COLORS Styles
 */
span.primary {
  color: var(--color-primary--1);
}
span.secondary {
  color: var(--color-primary--2);
}
span.neutral {
  color: #31363D;
}
span.white {
  color: #FFFF;
}


/**
 * CTA
 */
a.cta {
  padding: 16px;
  background-color: var(--color-primary--2);
  border-radius: 40px;
  color: var(--color-neutral--3);
  font-family: var(--font-poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-decoration: none!important;
  transition: all ease 0.5s;
  text-decoration: none;
}
a.cta:hover {
  opacity: 90%;
  text-decoration: none;
}

span.title--bold {
  color: var(--color-primary--1);
  font-size: clamp(16px, 1.8vw, 21px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

a.menu__item {
  color: white;
  text-decoration: none;
  font-weight: 400;
}

span.link__icon {
  position: relative;
}
span.link__icon::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-left: 4px;
  vertical-align: middle;
  background-image: url("../images/link.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.green__frame {
  padding: 16px;
  background-color: var(--color-neutral--5);
  max-width: fit-content;
  border-radius: 5px;
}
.green__frame > a{
  text-decoration: none;
}
.green__frame > a:hover{
  text-decoration: underline;
}
