/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@font-face {
    font-family: 'insolesFont';
    src: url('/assets/fonts/Bank\ Gothic\ Light\ Regular.otf') format('truetype');
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


body{
    overflow-x:hidden;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--title-color);
}



/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black:#292929;
  --red:#EB3237;
  --white:#fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.25rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 3.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

/* .container {
    max-width:100%;
    margin-inline: 1.5rem;
  }
   */
  .main {
    overflow-x: hidden;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  .element {
    max-width: 100%; /* Instead of fixed widths */
    width: auto;
}

.fixedLogo{
  /* background-color:gray; */
  position:fixed;
  right:10px;
  bottom:120px;
  width:41px;
}