@layer reset, theme, global, layout, components, utilities, overwrites; 

:root {
  --primary_col: #355C7E;
  --secondary_col: #C3861E;
  --tertiary_col: #686868;
  --accent_blue_col: #C6D8E8;
  --accent_gold_col:#E4CFAC;
  --warning_col: orange; 
  --error_col: #F00;
  --success_col:#238636; 
  --text_primary_col: black;
  --text_secondary_col: white;
  --footer_col: rgb(68,68,68);
  --blue:#1976D2; 
  --warning:#F0AD4E;
  --danger:#D9534F; 
  --success: #5CB85C;  
  --info:#5BC0DE; 
}

html {
  color: var(--text_primary_col);
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  list-style-position: inside;
} 

body {
  font-family: 'Ubuntu','Arial','Helvetica', sans-serif;
  padding:0;
  margin:0;
}

* {
box-sizing: border-box;
}

img,
video {
  block-size: auto;
  object-fit: contain;
  object-position: center center;
}

@layer theme {
  
  @font-face {
    font-family: Ubuntu;    
    src: url('../fonts/Ubuntu/Ubuntu-Regular.ttf');
    font-style: normal;
    font-weight: 100;
    font-display: swap;
  }

  @font-face {
    font-family: Gikefta;    
    src: url('../fonts/Gikefta/Gikefta.ttf');
    font-style:normal;
    font-weight: 900;
    font-display: swap;
  }
} /*   theme {ends} */

@layer layout {
  .container {
    max-width: 100%;
    min-height: 70vh;
    margin: 0 auto;
    padding: 0 20px;
    border: 1px solid var(--primary_col);
  }

/* ------[ Footer ]------ */

  footer {
    margin: 0 auto;
      position:static;
      bottom :0;
      left:0;
      width: 100%;
      background-color: rgb(68,68,68);
  }

  footer > picture {
      margin: 0 auto;
  }

  .footer-container {
    margin: 0 auto;
    max-width: 100%; 
    background-color: var(--footer_col);
  }

  .footer-grid {
    padding: 2em;
    display: grid;
    grid-gap: 0;
    place-self: center;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "logo prod store company";
    justify-content: space-around;
    text-align: right;
    color: var(--text_secondary_col);
    max-width: 960px;
  }

  .footer_item:has(p), a {
    text-decoration: none;
    color: var(--text_secondary_col);
    font-size: 0.8rem;
  }

/* ------[ MOBILE SETTINGS ] */

  @media screen and (max-width:800px) {
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas: "logo"
      "prod"
      "store"
      "company" ;
      padding: 2em;
      text-align: center;
      color: var(--text_secondary_col);
    }  
  }

  @media screen and (min-width: 320px) {
    .mentoring-sessions__content {
     flex-wrap: wrap;
    }
  }


} /* layout {ends} */