/* client.css if the file exist it will loaded and applied */

/* Import the client's custom font */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');



/* Define the custom font using a CSS variable - use system-ui, -apple-system to use default system fonts */
:root {
  --font-family: 'Libre Franklin', system-ui, -apple-system, sans-serif; 
}

/* Apply the custom font and background color directly */
body {
  font-family: var(--font-family);
  font-weight: 400;
  background-color: #FFFFFF;
}


/* Apply the same body background color for swiper */
.swiper-slide.testimonial {
  background-color: #ffffff;
}

/* Replace google links + by a space in font names */
.mystyle-1-light {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.mystyle-1-normal {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.mystyle-1-italic {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}
.mystyle-1-gras {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.mystyle-2-normal {
  font-family: "Lobster Two", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.mystyle-2-italic {
  font-family: "Lobster Two", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}
.mystyle-2-gras {
  font-family: "Lobster Two", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}