/* Reset default styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* Color scheme */
:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Global styles */
html {
  overflow-x: hidden
}

body {
  line-height: 1.5;
  color: black;
  background-color: whitesmoke;
}

a {
  text-decoration: none;
  color: #007bff;
}

/* Noto Sans Variable Font */
@font-face {
  font-family: 'Noto Sans';
  src: url('/Fonts/Noto_Sans/static/NotoSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable weight from 100 to 900 */
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('/Fonts/Noto_Sans/static/NotoSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable weight from 100 to 900 */
  font-style: italic;
}

/* Ubuntu Fonts */
@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-Italic.ttf') format('truetype');
  font-weight: 400; /* Regular Italic */
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-BoldItalic.ttf') format('truetype');
  font-weight: 700; /* Bold Italic */
  font-style: italic;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-Light.ttf') format('truetype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-LightItalic.ttf') format('truetype');
  font-weight: 300; /* Light */
  font-style: italic;
}


@font-face {
  font-family: 'Ubuntu';
  src: url('/Fonts/Ubuntu/Ubuntu-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

/* Raleway Variable Font */
@font-face {
  font-family: 'Raleway';
  src: url('/Fonts/Raleway/static/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable weight from 100 to 900 */
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('/Fonts/Raleway/static/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable weight from 100 to 900 */
  font-style: italic;
}

/* Apply Fonts */
body, p, i, div, span, a {
  font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
}


/* Logo */
#logo {
  width: 10em;
  position: fixed;
  top: 20px;
  right: 4%;
}

@media (max-width: 1024px) {
  #logo {
    width: 7em;
    top: 15px;
    right: 2%;
    position: absolute;
  }

  #partners {
    display: none !important;
  }
}

@media (max-width: 400px) {
  #logo {
    display: none;
  }
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: white;
  border-top: 1px solid #e9ecef;
  font-size: 14px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  max-height: 60px;
  min-height: 60px;
}

@media (max-height: 500px) {
  #footer {
    display: none;
  }
}

#partners {
  display: flex;
  justify-content: center;
  align-items: center;
}

#partners img {
  width: 100px;
  margin: 0 5px;
  border-radius: 10px;
}