/*

Title: Atelier S-B/
Author: S-B/
URL: https://www.atelier-sb.net/

*/

/* Colors */ /*

primary: #1e5449
black: #161c2d;
white: #ffffff;

*/

/* Breakpoints */ /*

breakpoint-xs: 0;
breakpoint-sm: 576px;
reakpoint-md: 768px;
breakpoint-lg: 992px;
breakpoint-xl: 1200px;

*/

/* Fonts //////////////////////////// */

@import url('https://fonts.googleapis.com/css?family=Inter');

@font-face {
    font-family: HKGrotesk;
    font-weight: 400;
    src: url(./fonts/HKGrotesk/HKGrotesk-Regular.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Regular.woff) format("woff");
}
@font-face {
    font-family: HKGrotesk;
    font-weight: 600;
    src: url(./fonts/HKGrotesk/HKGrotesk-Medium.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Medium.woff) format("woff");
}
@font-face {
    font-family: HKGrotesk;
    font-weight: bold;
    src: url(./fonts/HKGrotesk/HKGrotesk-Bold.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Bold.woff) format("woff");
}


/* Base //////////////////////////// */

*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #222;
    background-color: #fff;
}

main {
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
}

/* Typographie //////////////////////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: HKGrotesk, serif;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    line-height: 1.8em;
    margin: 1em 0;
}

pre {
    display: inline-block;
    background-color: lightgrey;
}

/* Typpographie Modifiers */

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

/* Links */

a {
    text-decoration: none;
    background-color: transparent;
}

/* Icons */

.icon {
    width: 3em;
    height: 3em;
}

.icon-lg {
    width: 4em;
    height: 4em;
}

.icon-circle-sm {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
}

/* Colors /// */

.color-primary {
    background-color: #1e5449;
    color: #fff;
}

/* HR */

hr {
    margin-top: 1em;
    margin-bottom: 1em;
    border: 0;
    border-top: 1px solid #f1f4f8;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/* Displays */

@media (max-width: 768px) {
    .d-md-block {
        display: block !important;
  }
    .d-none {
        display: none !important;
  }
}

/* Containers */

.container-l {
    width: 95%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .container-l {
      width: 80%;
    }
}

/* Modifiers */

.centered {
    text-align: center;
}
