@font-face {
  font-family: 'Open Sans';
  src: url("/fonts/gel/fonts/OpenSans-Regular.ttf");
}

@font-face {
  font-family: 'Open Sans Semibold';
  src: url("/fonts/gel/fonts/OpenSans-SemiBold.ttf");
}

@font-face {
  font-family: 'Open Sans Bold';
  src: url("/fonts/gel/fonts/OpenSans-Bold.ttf");
}

@font-face {
  font-family: 'Open Sans Light';
  src: url("/fonts/gel/fonts/OpenSans-Light.ttf");
}

@font-face {
  font-family: 'Nunito Bold';
  src: url("/fonts/gel/fonts/Nunito-Bold.otf");
}

@font-face {
  font-family: 'Nunito Semibold';
  src: url("/fonts/gel/fonts/Nunito-Semibold.otf");
}

html {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  letter-spacing: 0.0128em;
  height: auto;
  min-height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Nunito Semibold';
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.375rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  font-weight: 400;
  font-family: 'Open Sans Semibold';
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: none;
  &:hover {
    text-decoration: none;
  }
  &:focus {
    outline-offset: 3px;
    outline-width: 2px;
  }
}

.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px
  }
}

@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px
  }
}

@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px
  }
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1300px
  }
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1560px
  }
}