:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #C91429;
    --dev_light: dev_light;
    --dev_reg: dev_reg;
    --dev_med: dev_med;
    --dev_semi_bold: dev_semi_bold;
    --dev_bold: dev_bold;
}

* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    color: initial;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
}

@font-face {
  font-family: 'dev_light';
  font-style: normal;
  font-weight: normal;
  src: url(../../fonts/AnekLatin-Light.ttf) format('truetype');
  font-display: swap;
}

@font-face {
    font-family: 'dev_reg';
    font-style: normal;
    font-weight: normal;
    src: url(../../fonts/AnekLatin-Regular.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_med';
    font-style: normal;
    font-weight: normal;
    src: url(../../fonts/AnekLatin-Medium.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_bold';
    font-style: normal;
    font-weight: normal;
    src: url(../../fonts/AnekLatin-Bold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_semi_bold';
    font-style: normal;
    font-weight: normal;
    src: url(../../fonts/AnekLatin-SemiBold.ttf) format('truetype');
    font-display: swap;
}

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--dev_reg);
    font-size: 15px;
    overflow-x: hidden;
    overflow-y: scroll;
}
